npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dxtmisha/styles

v1.0.6

Published

SCSS styles and utilities for DXT UI design system

Downloads

299

Readme

@dxtmisha/styles

🎨 SCSS styles and utilities for DXT UI design system. A comprehensive collection of mixins, variables, and utilities for building consistent user interfaces.

npm version License: MIT Node.js Version

🚀 Installation

npm install @dxtmisha/styles

✨ Features

  • 🎨 Comprehensive color system with utilities and mixins
  • 📐 Flexible dimension and spacing utilities
  • 🔤 Typography system with font utilities
  • 📱 Responsive design with media query helpers
  • 🎯 Flexbox utilities for modern layouts
  • 🔧 SCSS mixins and functions
  • 📦 Modular architecture - import only what you need
  • Tree-shaking support for optimization

📖 Quick Start

Import all styles

@import '@dxtmisha/styles';

Import design system properties

@import '@dxtmisha/styles/properties';

Vue.js example

<template>
  <div class="card">
    <h2 class="title">Hello World</h2>
    <p class="text">Beautiful styled content</p>
  </div>
</template>

<style lang="scss">
@import '@dxtmisha/styles';

.card {
  @include backgroundAsColor;
  @include radius;
  @include padding(md);
}

.title {
  @include font(titleLarge);
  @include color(primary);
}
</style>

📚 Available modules

Main import

@import '@dxtmisha/styles';           // All utilities and styles

Design system properties

@import '@dxtmisha/styles/properties';  // Design system properties

The main import includes all available utilities:

  • Color system and mixins
  • Flexbox utilities
  • Typography system
  • Media query helpers
  • Dimension and spacing utilities
  • Content utilities
  • CSS custom properties
  • And more...

🛠️ Practical examples

Color utilities

@import '@dxtmisha/styles';

.primary-button {
  @include color(primary);
  @include backgroundColor(primary);
  @include backgroundAsColor;
}

.success-text {
  @include color(success);
}

Flexbox utilities

@import '@dxtmisha/styles';

.container {
  @include flex;
  @include flexDirection(column);
  @include justifyContent(center);
  @include alignItems(center);
}

Responsive design

@import '@dxtmisha/styles';

.responsive-grid {
  display: grid;
  grid-template-columns: 1fr;
  
  @include media(md) {
    grid-template-columns: repeat(2, 1fr);
  }
  
  @include media(lg) {
    grid-template-columns: repeat(3, 1fr);
  }
}

Typography system

@import '@dxtmisha/styles';

.heading {
  @include font(displayLarge);
}

.body-text {
  @include font(bodyMedium);
}

.caption {
  @include font(labelSmall);
}

📊 Bundle information

| Import | Size | Description | |--------|------|-------------| | Main bundle | ~45KB | All utilities and styles | | Properties | ~12KB | Design system properties only |

🔧 Requirements

  • Node.js: ≥18.0.0
  • Sass/SCSS: ≥1.50.0
  • Build tool: Vite, Webpack, Parcel

📁 Export structure

@dxtmisha/styles
├── /                 # Main styles bundle (all utilities)
└── /properties      # Design system properties

🤝 Compatibility

| Technology | Support | |------------|---------| | Vite | ✅ Full support | | Webpack | ✅ Full support | | Parcel | ✅ Full support | | Vue.js | ✅ Recommended | | React | ✅ Compatible | | Angular | ✅ Compatible |

🌐 Browser Support

Modern browsers that support:

  • CSS custom properties
  • Flexbox
  • CSS Grid

📄 License

MIT © [email protected]

🔗 Links