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

tw-shades

v1.3.1

Published

Automatically generate and apply shades for Tailwindcss

Downloads

2,637

Readme

tw-shades

This package provides a simple function to generate shades of a given color, which can be used to extend the color palette in your Tailwind CSS configuration. It allows you to create a consistent and customizable color scheme for your project.

This project is a Fork of tailwind-shades

Features

  • 🌈 Color shade generator [50 to 950]
  • ✨ Include Half Shades [150, 250, 350, etc]
  • ⚡ Zero dependencies
  • ✅ Hex and RGB Output
  • ✅ CSS Variables Setup
  • ✅ Typescript Support

Installation

Use npm to install tw-shades.

npm install tw-shades

Usage

// tailwind.config.js
import { shadesOf } from 'tw-shades';

/* @type {import('tailwindcss').Config} */
module.exports = {
   content: [],
   theme: {
      extend: {
         colors: {
            accent: shadesOf('#913985'),
            /* accent: {
               '50': '#f4ebf3',
               '100': '#e9d7e7',
               '200': '#d3b0ce',
               '300': '#bd88b6',
               '400': '#a7619d',
               '500': '#913985',
               '600': '#742e6a',
               '700': '#572250',
               '800': '#3a1735',
               '900': '#1d0b1b',
               '950': '#0f060d'
          }
       */
         },
      },
   },
   plugins: [],
};

RGB Mode

You can pass a format property

import { shadesOf } from 'tw-shades';

const shades = shadesOf('#913985', { format: 'rgb' });
console.log(shades);
/* {
  '50': '244 235 243',
  '100': '233 215 231',
  '200': '211 176 206',
  '300': '189 136 182',
  '400': '167 97 157',
  '500': '145 57 133',
  '600': '116 46 106',
  '700': '87 34 80',
  '800': '58 23 53',
  '900': '29 11 27',
  '950': '15 6 13'
} */

CSS Variables

You can create or update CSS Variables with the applyShades function

import { shadesOf, applyShades } from 'tw-shades';

const shades = shadesOf('#913985', { format: 'rgb' }); // or hex

applyShades(shades, 'primary');

/*
:root {
    --color-primary-50: '244 235 243'
    --color-primary-100: '233 215 231'
    --color-primary-200: '211 176 206'
    ...
}
*/

Also in you tailwind.config.js

// tailwind.config.js
import { shadesOf } from 'tw-shades';

/* @type {import('tailwindcss').Config} */
module.exports = {
   content: [],
   theme: {
      extend: {
         colors: {
            primary: {
               50: 'rgb(var(--color-primary-50) / <alpha-value>)',
               100: 'rgb(var(--color-primary-100) / <alpha-value>)',
               200: 'rgb(var(--color-primary-200) / <alpha-value>)',
               300: 'rgb(var(--color-primary-300) / <alpha-value>)',
               400: 'rgb(var(--color-primary-400) / <alpha-value>)',
               500: 'rgb(var(--color-primary-500) / <alpha-value>)',
               600: 'rgb(var(--color-primary-600) / <alpha-value>)',
               700: 'rgb(var(--color-primary-700) / <alpha-value>)',
               800: 'rgb(var(--color-primary-800) / <alpha-value>)',
               900: 'rgb(var(--color-primary-900) / <alpha-value>)',
               950: 'rgb(var(--color-primary-950) / <alpha-value>)',
            },
         },
      },
   },
   plugins: [],
};

💡 Tailwind classes are generated in build time. Using CSS variables you can set colors dynamically in run time, just override the CSS custom properties.

Take into account to use the shades format and tailwind config accordely. You don't want a rgb() function for hex colors, right?

See Tailwind Documentation

Config

Both shadesOf and applyShades are customizables by config object

shadesOf

const shadesOf: (hex: Hex, config?: ShadesConfig) => Shades;

type ShadesConfig = {
   format?: 'hex' | 'rgb'; // default to hex
   halfShades?: boolean; // generate halfshades, default to false
   separator?: boolean; // if true, rgb colors will format as '102,6,0'
};

applyShades

const applyShades: (shades: Shades, name: string, config?: { prefix: string }) => void;

type Shades = { [key: number]: string };

/*
    name: The variable name. Required.
    config: {
        prefix: You can change this. Default to 'color'
    }

    --${prefix}-${name}-${shade}: value
    --color-primary-100: '233 215 231'
*/

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (In conventional commit format, you can use 'cz')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please make sure to update tests as appropriate.

License

Distributed under the MIT License. See LICENSE.txt for more information.