| 1 | import { defineConfig, presetAttributify, presetIcons, presetWebFonts, presetWind3, transformerDirectives } from 'unocss' |
| 2 | |
| 3 | export default defineConfig({ |
| 4 | presets: [ |
| 5 | presetWind3(), |
| 6 | presetAttributify(), |
| 7 | presetWebFonts({ |
| 8 | fonts: { |
| 9 | mono: ['IBM Plex Mono', 'monospace'], |
| 10 | }, |
| 11 | }), |
| 12 | presetIcons(), |
| 13 | ], |
| 14 | transformers: [ |
| 15 | transformerDirectives(), |
| 16 | ], |
| 17 | shortcuts: { |
| 18 | 'bg-main': 'bg-white dark:bg-[#111]', |
| 19 | }, |
| 20 | theme: { |
| 21 | colors: { |
| 22 | primary: { |
| 23 | DEFAULT: '#3AB9D4', |
| 24 | deep: '#2082A6', |
| 25 | }, |
| 26 | }, |
| 27 | }, |
| 28 | }) |
| 29 |