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

@markusantonwolf/tailwind-css-plugin-custom-color-palette

v1.4.0

Published

This Plugin generates a color palette and all utilities based on your custom colors. New utilities like text-yourColor-100 or bg-yourColor-600 will be rendered for your custom colors.

Downloads

465

Readme

Tailwind CSS Custom Color Palette

This Plugin generates a color palette and all utilities based on your custom colors. New utilities like text-yourColor-100 or bg-yourColor-600 will be rendered for your custom colors.

Compatibility: Tailwind CSS ^1.8.3 and ^2.X.

Installation

1. Install the Tailwind CSS Custom Color Palette plugin:

# Install using npm
npm install --save-dev @markusantonwolf/tailwind-css-plugin-custom-color-palette

# Install using yarn
yarn add -D @markusantonwolf/tailwind-css-plugin-custom-color-palette

2. Add it to your tailwind.config.js file:

// tailwind.config.js
module.exports = {
    // ...
    theme: {
        customColorPalette: {
            colors: {
                teal: "#408075", // add more colors to the plugin
            },
        },
    }
    // ...
    plugins: [
        require("@markusantonwolf/tailwind-css-plugin-custom-color-palette"),
    ],
};

3. Use it > 🌮

Usage

The Tailwind CSS Custom Color Palette plugin generates new utilities like .bg-yourColor-400, .text-yourColor-200 or .border-yourColor-700 based on your defined colors. Every color you defined will be used as -500 variante in the palette.

Examples

<h1 class="text-yourColor-600">
    <!-- Content -->
</h1>
<div class="bg-yourColor-200 p-8 border-2 border-yourColor-700 border-dashed">
    <!-- Content -->
</div>
<div class="bg-gradient-to-b from-yourColor-100 to-yourColor-200">
    <!-- Content -->
</div>

You can find a list of all generated utilities based on the default settings here - Custom Color utilities

Configuration

In the following example you can see all available options (default values) for the Custom Color Palette plugin. To add your own configuration add customColorPaletteto themeand variants. Your new settings will be merged with the default settings. To change the plugin behaviour in terms of how it adds the new classes as utilities you can add these options as objects to the default function.

// tailwind.config.js
module.exports = {
    // ...
    theme: {
        // ...
        customColorPalette: {
            colors: {
                teal: "#408075", // add more colors to the plugin
            },
            utilities: {
                textColor: true, // render text color utilities: true (default) | false
                backgroundColor: true, // render background color utilities: true (default) | false
                borderColor: true, // render border color utilities: true (default) | false
                gradientColorStops: true, // render gradient color utilities: true (default) | false
                placeholderColor: true, // render placeholder color utilities: true (default) | false
                divideColor: true, // render divide color utilities: true (default) | false
                ringColor: true, // render ring color utilities: true (default) | false
                ringOffsetColor: true, // render ring offset color utilities: true (default) | false
            },
            steps: 100, // define the steps between each shade: 100 (default) | 50
            calculation: "relative", // change color calculation: relative (default) | linear
        },
        // ...
    },
    variants: {
        // ...
        customColorPalette: ["responsive", "hover", "active", "focus"],
        // ...
    },
    plugins: [
        require("@markusantonwolf/ta-youtube")({
            respectPrefix: true, // respect prefix option in config: true (default) | false 
            respectImportant: true, // respect important option in config: true (default) | false 
        }),
    ],
    // ...
};

You can find all available variants in the Tailwind CSS documentation: Tailwind CSS - Configuring Variants.

Licence

Tailwind CSS Plugin Filter utilities is released under the MIT license & supports modern environments.

Copyright

© 2020 Markus A. Wolf https://www.markusantonwolf.com/en