0.4.0 • Published 4 months ago

@izznatsir/tailwindcss-colors v0.4.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

Tailwind CSS Color Variables

CSS color variables that are compatible with Tailwind CSS color opacity syntax.

Usage

Import CSS variables of the colors that you want. If you are using Vite:

/**
 * file: ./src/main.js
 */

import "@izznatsir/tailwindcss-colors/radix/gray.css";
import "@izznatsir/tailwindcss-colors/tailwind/sky.css";

Update your tailwind.config.js to use the variables:

/**
 * file: ./tailwind.config.js
 */

import { gray } from "@izznatsir/tailwindcss-colors/radix";
import { sky } from "@izznatsir/tailwindcss-colors/tailwind";

export default {
  ...
  theme: {
    colors: {
      gray,
      sky,
      // Semantic aliases.
      bg: gray[1],
      highlight: sky[100]
    }
  }
  ...
}
0.4.0

4 months ago

0.3.0

4 months ago

0.2.0

4 months ago

0.1.5

4 months ago

0.1.4

4 months ago

0.1.3

4 months ago

0.1.2

4 months ago

0.1.1

4 months ago

0.1.0

4 months ago