npm install --save-dev tailwind-plugin-palette
# or
pnpm add --save-dev tailwind-plugin-palette
# or
bun add --dev tailwind-plugin-palettePlease visit the website to help you visualize the palette configuration.
If you just want use tailwind's colors:
import palette, { getTailwindColors } from 'tailwind-plugin-palette'
export default {
plugins: [
palette({
colors: getTailwindColors(400),
}),
],
}Or provide some new colors:
import palette from 'tailwind-plugin-palette'
export default {
plugins: [
palette({
colors: {
mediumblue: '#1f10b3',
lightcoral: '#f06482',
},
}),
],
}primary: string: Provide a HEX value as primary color, automatically generate a secondary color.harmonize: boolean: Make the palette more harmonious with the primary color (primary required).dark: boolean: Reduce the brightness to adapt to the dark mode.reversed: boolean: Gradually darkens from 50 to 950 by tailwind's default. With the option enabled, it'll be reversed.
This project is MIT licensed, see LICENSE file.