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

tailwindcss-theme-customizer

v1.0.4

Published

Tailwindcss plugin to simplify theme creating process

Downloads

5

Readme

TailwindCSS Theme Customizer

This is a simple TailwindCSS plugin that allows you to create custom themes for your TailwindCSS project. In a nutshell, the plugin generates CSS variables based on configuration and allows you to reference them in your TailwindCSS theme.

Why?

TailwindCSS is a great utility-first CSS framework, but it lacks a way to create custom themes. This plugin aims to solve that problem. The way TailwindCSS promotes using CSS Variable is not very flexible in terms of working with colors:

/* For rgb(255 115 179 / <alpha-value>) */
--color-primary: 255 115 179;

/* Using theme() function which returns hex, 
    but it's not possible to use alpha value */
--color-primary: theme('colors.indigo.500');

The plugin automatically generates CSS variables in the format, which supports alpha as in the first example from above, while mantaing the ability to get type hints.

Installation

npm install tailwindcss-theme-customizer

Usage

Add the plugin to your tailwind.config.ts file:


import { ThemeCustomizerPlugin } from 'tailwindcss-theme-customizer';

const defaultTheme: Theme = {
  variables: {
    // Define theme variables as TailwindCSS (supports type hints)
    bgButtonPrimary: {
      blue: 600,
    },
    colorIndigo: 'indigo.500', // Define color as TailwindCSS color (supports type hints)
    colorBlack: '#000', // Define color as hex
  },

  // Add custom variants here to override default variables
  // e.g. below will override bgButtonPrimary for dark mode
  variants: {
    dark: {
      bgButtonPrimary: 'teal.500'
    },
  },
};

export default {
  // ...
  plugins: [ThemeCustomizerPlugin(defaultTheme)],
} satisfies Config;

The above configuration will generate the following CSS variables:

:root {
  --bg-button-primary: 37 99 235;
  --color-black: 0 0 0;
  --color-indigo: 99 102 241;
}

.dark {
  --bg-button-primary: 20 184 166;
}

So, now you can use the variables in your TailwindCSS theme:

// tailwind.config.ts
export default {
  theme: {
    extend: {
      colors: {
        // Use rgb and <alpha-value> to support opacity
        primary: 'rgb(var(--bg-button-primary) / <alpha-value>)',
        black: 'rgb(var(--color-black))',
        indigo: 'rgb(var(--color-indigo))',
      },
    },
  },
} satisfies Config;

License

This project is licensed under the MIT License. See the LICENSE file for details.