| 123456789101112131415161718 |
- import { defineConfig } from 'unocss';
- import presetWind3 from '@unocss/preset-wind3';
- export default defineConfig({
- // ...UnoCSS options
- presets: [presetWind3()],
- theme: {
- colors: {
- primary: '#082653',
- },
- },
- shortcuts: {
- },
- rules: [
-
- ],
- });
|