windi.config.ts 322 B

123456789101112131415161718
  1. import { defineConfig } from 'vite-plugin-windicss'
  2. export default defineConfig({
  3. extract: {
  4. include: ['index.html', 'src/**/*.{vue,jsx,tsx,html}']
  5. },
  6. theme: {
  7. extend: {
  8. colors: {
  9. dark: '#303030',
  10. light: '#ebebeb',
  11. blue: {
  12. b: '#0059DD'
  13. }
  14. }
  15. }
  16. }
  17. })