You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
752 B
TypeScript
34 lines
752 B
TypeScript
3 weeks ago
|
import {
|
||
|
defineConfig,
|
||
|
presetAttributify,
|
||
|
presetIcons,
|
||
|
presetTypography,
|
||
|
presetUno,
|
||
|
presetWebFonts,
|
||
|
transformerDirectives,
|
||
|
transformerVariantGroup
|
||
|
} from 'unocss';
|
||
|
|
||
|
export default defineConfig({
|
||
|
shortcuts: {
|
||
|
'panel-title':
|
||
|
'pb-[5px] font-sans leading-[1.1] font-medium text-base text-[#6379bb] border-b border-b-solid border-[var(--el-border-color-light)] mb-5 mt-0'
|
||
|
},
|
||
|
theme: {
|
||
|
colors: {
|
||
|
primary: 'var(--el-color-primary)',
|
||
|
primary_dark: 'var(--el-color-primary-light-5)'
|
||
|
}
|
||
|
},
|
||
|
presets: [
|
||
|
presetUno(),
|
||
|
presetAttributify(),
|
||
|
presetIcons(),
|
||
|
presetTypography(),
|
||
|
presetWebFonts({
|
||
|
fonts: {}
|
||
|
})
|
||
|
],
|
||
|
transformers: [transformerDirectives(), transformerVariantGroup()]
|
||
|
});
|