1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 22:05:12 +00:00
ArisuAutoSweeper/webapp/packages/renderer/uno.config.ts
2023-11-01 15:33:35 +08:00

27 lines
623 B
TypeScript

// uno.config.ts
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetUno,
presetWebFonts,
transformerDirectives,
transformerVariantGroup,
} from 'unocss';
// import {primaryColor} from './build/config/themeConfig';
export default defineConfig({
theme: {
colors: {
primary: '#98e8e8',
white: '#ffffff',
neutral: '#C4C4C4',
dark: '#2f3136',
slate: '#020617',
},
},
presets: [presetUno(), presetAttributify(), presetIcons(), presetTypography(), presetWebFonts()],
transformers: [transformerDirectives(), transformerVariantGroup()],
});