element-plus/docs/unocss.config.ts
sea 213b489c29
chore(vscode): fix unocss highlighting on windows caused by node path diff (#17644)
chore: fix unocss highlighting on windows caused by node path diff
2024-07-23 18:45:44 +08:00

24 lines
529 B
TypeScript

import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
export default defineConfig({
presets: [presetUno(), presetAttributify(), presetIcons()],
include: [`./**/*`],
exclude: [`./node_modules/**/*`, `./.vitepress/cache/**/*`],
theme: {
breakpoints: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1920px',
},
colors: {
primary: {
DEFAULT: '#2563eb',
deep: '#1d4ed8',
},
},
},
})