-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.52 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
// tailwind.config.js
module.exports = {
purge: {
enabled: false,
content: ['./packages/**/**/*.tsx'],
},
theme: {
themeVariants: ['dark'],
colors: {
transparent: 'transparent',
black: '#16171A',
white: '#FFFFFF',
primary: '#7B16FF',
secondary: '#24292E',
hello: 'red',
purple: {
100: '#F8F6FD',
200: '#E8E5FF',
300: '#DDD9FF',
400: '#5856D6',
600: '#7e3af2',
},
red: {
100: '#ea4335',
200: '#fbd5d5',
300: '#f8b4b4',
500: '#85000C',
},
gray: {
default: '#67717A',
100: '#FAFAFA',
200: '#F6F7F8',
300: '#EBECED',
400: '#DFE7EF',
500: '#a0aec0',
600: '#718096',
700: '#4a5568',
800: '#2d3748',
900: '#1a202c',
},
},
},
variants: {
backgroundColor: [
'hover',
'focus',
'active',
'odd',
'dark',
'dark:hover',
'dark:focus',
'dark:active',
'dark:odd',
],
display: ['responsive', 'dark'],
textColor: [
'focus-within',
'hover',
'active',
'dark',
'dark:focus-within',
'dark:hover',
'dark:active',
],
zIndex: {
'60': '60',
},
placeholderColor: ['focus', 'dark', 'dark:focus'],
borderColor: ['focus', 'hover', 'dark', 'dark:focus', 'dark:hover'],
divideColor: ['dark'],
boxShadow: ['focus', 'dark:focus'],
},
plugins: [require('tailwindcss-multi-theme')],
};