This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwindi.config.ts
71 lines (70 loc) · 1.54 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import colors from 'tailwindcss/colors';
import { defineConfig } from 'windicss/helpers';
export default defineConfig({
darkMode: 'class',
theme: {
extend: {
borderRadius: {
xl: '10px'
},
colors: {
...colors,
card: {
DEFAULT: '#fff',
dark: '#1D2939'
},
primary: {
DEFAULT: '#016D77',
50: '#32ECFD',
100: '#1EEAFD',
200: '#02DCF0',
300: '#02B7C8',
400: '#01929F',
500: '#016D77',
600: '#013A3F',
700: '#000708',
800: '#000000',
900: '#000000'
},
secondary: {
DEFAULT: '#C2C8D0'
},
gray: {
DEFAULT: '#667085',
50: '#CBCFD7',
100: '#C0C4CE',
200: '#A9AFBD',
300: '#929AAB',
400: '#7A8499',
500: '#667085',
600: '#4E5565',
700: '#353B45',
800: '#1D2026',
900: '#050506'
},
ebony: {
DEFAULT: '#101828',
50: '#4467AB',
100: '#3F5E9D',
200: '#334C7F',
300: '#273B62',
400: '#1E293B',
500: '#101828',
600: '#000000',
700: '#000000',
800: '#000000',
900: '#000000'
},
discord: '#5865F2',
github: {
DEFAULT: '#333333',
light: '#fafafa'
}
}
}
},
extract: {
include: ['**/*.{jsx,tsx,css}'],
exclude: ['node_modules', '.git', '.next']
}
});