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 🙏

© 2024 – Pkg Stats / Ryan Hefner

microtailwind

v1.8.0

Published

Package to write shorter tailwind css classes without any conflicts with the default ones.

Downloads

78

Readme

MICROTAILWIND

TailwindCSS extension with usefull add-ons.

Includes:

  • Shorter Classnames: 100% compatibility with the default ones.
  • Expanded TailwindCSS Default Theme: pixel based values transformed into rem values automatically as dot notation.
  • Easy Dark Mode Integration: add dark mode support to TailwindCSS utilities, default ones and custom ones.
  • Custom Themes: creating custom themes is a breeze.
  • 100% Compatibility with the rest of TailwindCSS plugins.

Also includes:

  • tailwind.config.example file as an example for the tailwind config setup
  • Abreviations.js file which includes all microtailwind abreviations.

Installation

 npm install -D microtailwind

Configuration

//tailwind.config.js
import { microtailwind, withMicrotailwindExtensions, themeMiddleware } from 'microtailwind'

export default {
   /** rest of the config */
   darkMode: 'class', // IMPORTANT
   theme: {
      extend: withMicrotailwindExtensions({ // extended theme
         /** your custom extended theme (merges, overrides if colision) */
      }),
   },
   plugins: [
      plugin(microtailwind), // shorter classnames
      plugin(themeMiddleware(({ addUtility, addComponents, addVariants  })=>{
         /** Utilities **/
         addUtility('bg', {
            'primary': ['aliceblue', '#161616'], // creates bg-primary utility [light, dark]
            'secondary': '#BA0021', // creates bg-secondary utility
            'slate-300': [, '#1F2933'], //adds dark mode to this class
         })
         /** Components **/
         addComponents({
            '.icon': '@apply w-24. h-24.'
            '.button': '@apply min-w-80. py-12. px-16. br-5.'
            '.button-primary': {
               _apply: '@apply .button',
               backgroundColor: ['fuchsia', 'darkmagenta'],
            }
         })
         /** Component Variants **/
         addVariants<'.button' | '.icon'>({
            '.button': {
               primary: ['@apply bg-sky-600 text-sky-200', '@apply bg-sky-400 text-sky-700']
               secondary: {
                  _apply: ['@apply text-black', '@apply text-white']
                  backgroundColor: ['lime', 'orange'],
               }
            },
            '.icon': {
               primary: {
                  backgroundColor: ['lime', 'orange'],
               }
            }
         })
      }))
      plugin(themeMiddleware('snow',({addComponents})=> {
         /** Components with SNOW THEME **/
         addComponents({
            '.button-primary': {
               backgroundColor: ['ghostwhite', 'cornflowerblue'],
            }
         })

      }))
   ],
}

Typescript Types

import {} from 'microtailwind/types'

Theme and Dark Mode

Add Dark Mode and Theme support to already existing TailwindCSS projects.

Any CSS and @Apply values can be:

  • string: light and dark mode
  • tupple: [light, dark] or [ , dark] or [light, ]

To be able to use it, you need to add the darkmode class and/or theme class to the parent element of your app.

<div class=""> <!-- toggle your dark and theme class -->
      <!-- your app -->
</div>

ThemeMiddleware

Middleware function to add theme and dark mode support to TailwindCSS utilities and components.

//tailwind.config.js
import { themeMiddleware } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

/** To be able to change the default darkmode classname*/
themeMiddleware.darkmodeClassname = 'custom_dark' // default is 'dark'

export default {
   /** Rest of the config */
  plugins: [
      /** without theme */
      plugin(themeMiddleware(({ addUtility, addComponents, addVariants }) => {
         /** Rest of the code */
      }))

      /** with theme */
      plugin(themeMiddleware('my_theme',({ addUtility, addComponents, addVariants }) => {
         /** Rest of the code */
      }))
   ],
}

AddUtility

Used to add dark mode support to TailwindCSS Utilities, default ones or custom ones.

//tailwind.config.js
import { themeMiddleware } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

export default {
   /** Rest of the config */
  plugins: [
      plugin(themeMiddleware('theme',({ addUtility }) => {
         addUtility('bg', {
         /** creates/adds "bg-slate-500" color to #1F2933 in dark mode */
         'slate-500': [, '#1F2933'],
         /** creates/adds "bg-btn-main" with #002D62 color in light mode and #6699CC in dark mode  */
         'btn-main': ['#002D62', '#6699CC'],
         /** creates/adds "bg-btn-secondary" which will have the color #BA0021 in light mode and dark mode */
         'btn-secondary': '#BA0021', // or ['#BA0021']
         })
      }))
   ],
}

AddCustomUtility

Used to add dark mode support to Custom TailwindCSS Utilities, second parameter is the CSS property name.

//tailwind.config.js
import { themeMiddleware } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

export default {
   /** Rest of the config */
  plugins: [
      plugin(themeMiddleware(({ addCustomUtility }) => {
         addCustomUtility('bgcolor', 'background-color', { //or backgroundColor
         /** creates/adds "bgcolor-slate-500" color to #1F2933 in dark mode */
         'slate-500': [, '#1F2933'],
         /** creates/adds "bgcolor-btn-main" with #002D62 color in light mode and #6699CC in dark mode  */
         'btn-main': ['#002D62', '#6699CC'],
         /** creates/adds "bgcolor-btn-secondary" which will have the color #BA0021 in light mode and dark mode */
         'btn-secondary': '#BA0021', // or ['#BA0021']
         })
      }))
   ],
}

AddComponents

Creates TailwidCSS Components with darkmode support.

//tailwind.config.js
import { themeMiddleware } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

export default {
   /** Rest of the config */
  plugins: [
      plugin(themeMiddleware(({ addComponents }) => {
         addComponents({
            '.icon':  '@apply w-24. h-24.',
            '.label': [, '@apply tc-dark dark:tc-white'],
            '.action-icon': {
               _apply: '@apply frcc h-40. w-40. br-6. tc-red-800 dark:tc-red-600',
            },
            '.button': {
               _apply: '@apply h-40. frcc br-8. py-8. px-20. tw-semibold ts-14.', //light and dark
               backgroundColor: ['silver', 'beige'], //[light, dark]
               color: ['black', 'white'], //[light, dark]
            },
            '.button-primary': {
               _apply: [, '@apply ts-16. tw-bold'], //[light, dark]
               backgroundColor: ['blue', 'red'], //[light, dark]
               color: ['cadetblue', 'white'], //[light, dark]
            },
         })
      })),
   ],
}

AddVariants

Creates TailwidCSS ComponentVariants with darkmode support. It accepts T generic to indicate the keys of the components (to prevent typos).

//tailwind.config.js
import { themeMiddleware } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

export default {
   /** Rest of the config */
  plugins: [
      plugin(themeMiddleware(({ addVariants }) => {
         addVariants<T>({
            '.button': {
               primary: {
                  _apply: '@apply .button ts-16. tw-bold', //light and dark, button class added too
                  backgroundColor: ['blue', 'red'], //[light, dark]
                  color: ['cadetblue', 'white'], //[light, dark]
               },
               secondary: {
                  backgroundColor: ['blue', 'red'], //[light, dark]
                  color: ['cadetblue', 'white'], //[light, dark]
               },
               tertiary: {
                  _apply: [, '@apply ts-16. tw-bold'], //[light, dark]
                  backgroundColor: ['blue', 'red'], //[light, dark]
                  color: ['cadetblue', 'white'], //[light, dark]
               },
               default: ["@apply bg-gray-900 text-gray-50 shadow hover:bg-gray-900/90","@apply bg-gray-50 text-gray-900 hover:bg-gray-50/90"]
               destructive: "@apply bg-red-500 text-gray-50 shadow-sm hover:bg-red-500/90 dark:bg-red-900 dark:text-gray-50 dark:hover:bg-red-900/90"
            },
         })
      })),
   ],
}

Expanded TailwindCSS Default Theme

Expands the default TailwindCSS default theme with pixel values transformed into rems and more usefull utilities.

//tailwind.config.js
import { withMicrotailwindExtensions } from 'microtailwind'

export default {
   /** rest of the config */
   theme: {
      extend: withMicrotailwindExtensions({
         /** your theme (merges and overrides if colision) */
      }),
   }
}
//usage example

<div className="m-a w-100% gap-16."></div> 
/** margin: auto, width: 100%, gap: 1rem (16px) */

Includes:

  • Pixel based values transformed into rem values automatically with the dot notation.
    • Example: 2. (2px => 0.125rem)
  • Expanded percentage values for the width, height, padding, margin, etc.
  • Expanded "em" values for the width, height, padding, margin, etc.
  • "min", "max", "fit", "a"(auto) values for the width, height, padding, margin, etc.
  • More opacity values.
  • More z-index values.
  • And many more.

Microtailwind Abreviations

Shorter TailwindCSS utilities fully compatible with the default ones. Custom shorter Flexbox utilities.

//tailwind.config.js
import { microtailwind } from 'microtailwind'
import plugin from 'tailwindcss/plugin'

export default {
   /** rest of the config */
   plugins: [
      plugin(microtailwind),
   ],
}
//usage example
<div
 //tailwindcss
 className="flex flex-col justify-center items-center gap-[4px] p-[4px] text-white border-black rounded-[6px]"
 //microtailwind
 className="fccc g-[4px] p-[4px] tc-white bc-black br-[6px]"
 //microtailwind with expanded theme
 className="fccc g-4. p-4. tc-white bc-black br-6."
 ></div>

All available abreviations are in the file abreviations.js.