Package Exports
- @izznatsir/tailwindcss-colors
- @izznatsir/tailwindcss-colors/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@izznatsir/tailwindcss-colors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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]
}
}
...
}