-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
tailwind.config.js
115 lines (114 loc) · 2.9 KB
/
tailwind.config.js
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const path = require('node:path')
module.exports = {
theme: {
extend: {
colors: {
green: {
50: '#ecf8f7',
100: '#d3f7ef',
200: '#a5f2db',
300: '#66e9c2',
400: '#20d99b',
500: '#42B983',
600: '#09ab56',
700: '#0f8c4a',
800: '#126e41',
900: '#115937',
},
purple: {
50: '#f3f3fa',
100: '#ece3fa',
200: '#ddc3f9',
300: '#cea3f9',
400: '#c378f9',
500: '#a44cf6',
600: '#a331f7',
700: '#8128e8',
800: '#6523c4',
900: '#521fa0',
},
gray: {
50: '#fafafa',
100: '#f5f5f5',
200: '#e5e5e5',
300: '#d4d4d4',
400: '#a3a3a3',
500: '#737373',
600: '#525252',
700: '#404040',
800: '#262626',
900: '#171717',
950: '#0a0a0a',
},
bluegray: {
50: '#f3f9fb',
100: '#e4f4f9',
200: '#c5e7f4',
300: '#9cd5f0',
400: '#89a9c9',
500: '#328de3',
600: '#266ad2',
700: '#2653ae',
800: '#224082',
900: '#1d3564',
},
black: '#0b1015',
},
cursor: {
'ew-resize': 'ew-resize',
'ns-resize': 'ns-resize',
},
zIndex: {
60: 60,
70: 70,
80: 80,
90: 90,
100: 100,
},
fontFamily: {
mono: '\'Roboto Mono\', Menlo, Consolas, monospace',
},
fontSize: {
'2xs': '.65rem',
'3xs': '.6rem',
},
spacing: {
0.5: '0.125rem',
72: '18rem',
80: '20rem',
96: '24rem',
},
maxWidth: theme => ({
...theme('width'),
}),
minWidth: theme => ({
...theme('width'),
}),
maxHeight: theme => ({
...theme('width'),
}),
minHeight: theme => ({
...theme('width'),
}),
},
},
variants: {
backgroundColor: ['hover', 'group-hover', 'dark'],
backgroundOpacity: ['hover', 'group-hover', 'dark'],
textColor: ['hover', 'group-hover', 'dark'],
visibility: ['group-hover'],
},
darkMode: 'class',
mode: 'jit',
purge: {
content: [
path.resolve(__dirname, './packages/app-frontend/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/app-backend-core/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/app-backend-vue1/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/app-backend-vue2/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/app-backend-vue3/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/shared-utils/src/**/*.{js,jsx,ts,tsx,vue}'),
path.resolve(__dirname, './packages/shell-host/src/**/*.{js,jsx,ts,tsx,vue}'),
],
},
}