mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [presetUno(), presetAttributify(), presetIcons()],
|
|
include: [`${__dirname}/**/*`],
|
|
exclude: [`${__dirname}/node_modules/**/*`],
|
|
theme: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#2563eb',
|
|
deep: '#1d4ed8',
|
|
},
|
|
},
|
|
},
|
|
})
|