-
Notifications
You must be signed in to change notification settings - Fork 1
/
windi.config.ts
52 lines (51 loc) · 1022 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
42
43
44
45
46
47
48
49
50
51
52
import { resolve } from 'path';
import { defineConfig } from 'windicss/helpers';
export default defineConfig({
darkMode: 'class',
// https://windicss.org/posts/v30.html#attributify-mode
attributify: true,
prefix: 'cx-',
extract: {
include: [resolve(__dirname, 'src/**/*.{vue,html}')],
},
theme: {
extend: {
colors: {
black: {
20: '#1D1D1F',
70: '#7e7e7e',
},
blue: {
10: '#EBF5FF',
20: '#D3E9FF',
30: '#2D9DCF',
},
gray: {
10: '#D9D9D9',
20: '#85929E',
},
green: {
200: '#43AC6A',
},
orange: {
200: '#E8AB31',
},
red: {
10: '#F27F93',
20: '#F27F93',
},
white: {
0: '#FFFFFF',
10: '#F4F6F8',
20: '#E4E9EE',
},
},
fontSize: {
xs: '10px',
sm: '12px',
md: '14px',
lg: '16px',
},
},
},
});