Generate UnoCSS color gradation
npm install uno-colorsGenerate UnoCSS color gradation
Install the package
``bash`
pnpm add uno-colors -D
Configure uno.config.ts
`ts
import { unoColors } from 'uno-colors'
import { defineConfig } from 'unocss'
export default defineConfig({
theme: {
colors: unoColors({
primary: '#64cc96'
})
}
})
``