mirror of
https://gitee.com/yudaocode/yudao-ui-admin-vben.git
synced 2025-12-30 02:22:25 +00:00
14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
import { defineConfig, presetTypography, presetUno } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetUno(),
|
|
presetTypography(),
|
|
],
|
|
theme: {
|
|
colors: {
|
|
primary: '#0960bd',
|
|
},
|
|
},
|
|
})
|