@alanaudi/colors
v0.1.1
Published
Yet another color pack.
Downloads
9
Maintainers
Readme
Tailwindcss Colors
Color Sets
- [x] Copic 358 Colors
- [x] name supported
- [x] color system code supported
- [ ] Pantone
- [ ] Morandi
Usage
- Installation
# npm
npm install @alanaudi/colors
# yarn
yarn add @alanaudi/colors
- Configuration
// tailwind.config.js
const copicColors = require('@alanaudi/colors')
module.exports = {
mode: 'jit',
purge: {
enabled: true,
content: ['./src/**/*.{html,css,ts}'],
},
darkMode: class, // or 'media' or 'class'
theme: {
extend: {
colors: {
...copicColors
}
},
},
variants: {
extend: {},
},
plugins: [],
}