uno.config.ts 277 B

123456789101112131415161718
  1. import { defineConfig } from 'unocss';
  2. import presetWind3 from '@unocss/preset-wind3';
  3. export default defineConfig({
  4. // ...UnoCSS options
  5. presets: [presetWind3()],
  6. theme: {
  7. colors: {
  8. primary: '#082653',
  9. },
  10. },
  11. shortcuts: {
  12. },
  13. rules: [
  14. ],
  15. });