UNPKG

@viarotel-org/unocss-preset-shades

Version:

🎨 为 Unocss 生成一组逐渐由浅至深的主题色调预设,通过提供基准颜色。

11 lines (8 loc) 395 B
import { Preset } from 'unocss'; import { ShadesOptions } from './helpers.js'; export { ColorOptions, generateShades, updateShades } from './helpers.js'; interface PresetOptions extends ShadesOptions { primaryKey?: string; } declare function presetShades(colorValue?: string, { primaryKey, ...options }?: PresetOptions): Preset; export { type PresetOptions, ShadesOptions, presetShades };