forked from revenkroz/vite-vue-ssr-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindi.config.ts
41 lines (40 loc) · 931 Bytes
/
windi.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { defineConfig } from 'windicss/helpers'
export default defineConfig({
extract: {
include: ['**/*.{vue,js,ts}'],
exclude: ['node_modules', '.git', 'excluded', 'dist', 'windi.config.{ts,js}'],
},
darkMode: 'class',
safelist: 'select-none',
shortcuts: {
'm-pd': 'px-4 md:px-0',
},
theme: {
extend: {
screens: {
'2xl': '1280px',
},
fontFamily: {
body: ['"Roboto"', 'Verdana', 'sans-serif'].join(','),
sans: ['"Roboto"', 'Verdana', 'sans-serif'].join(','),
},
colors: {
primary: {
50: '#f1f3f6',
100: '#ccedff',
200: '#76b9fd',
300: '#5aa7f5',
400: '#4793de',
500: '#438fd5',
600: '#2d6496',
700: '#21486e',
800: '#12395b',
900: '#0f202f',
},
},
},
},
plugins: [
require('windicss/plugin/typography'),
]
})