@wymjs/uno-preset-antd-colors-theme
v1.0.0
Published
將 @ant-design/colors 轉換成 unocss theme.colors
Downloads
3
Readme
@wymjs/uno-preset-antd-colors-theme
將 @ant-design/colors 顏色寫到 themes 裡,先做最基本的,後續在開參數調整
安裝
# @ant-design/colors 為關聯依賴
$ pnpm add -D @wymjs/uno-preset-antd-colors-theme @ant-design/colors
使用
import { defineConfig } from 'unocss'
import { presetAntdColorsTheme } from '@wymjs/uno-preset-antd-colors-theme'
export default defineConfig({
presets: [
presetAntdColorsTheme(),
/*
變成 theme.colors
blue = @ant-design/colors.blue.primary
blue1 = @ant-design/colors.blue[0]
blue2 = @ant-design/colors.blue[1]
// ... 以此類推
*/
],
})