-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1.06 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
screens: {
'max-sm': {'max': '710px'},
'max-md': {'max': '820px'}
},
extend: {
colors: {
brand: {
300: '#FBD38D',
500: '#F6AD55',
},
elementary: {
300: '#3CB7B4',
500: '#30918F',
},
light: {
100: '#FFF6EA',
300: '#F4EDE4',
500: '#F0E7DB',
700: '#bdb5ac',
800: 'rgba(40, 40, 40, 0.6)'
},
dark: {
100: '#2E2E31',
300: '#202023',
500: '#1D1D20',
},
textLight: {
300: '#f6f6f6',
500: '#EEEEEE',
600: '#C2C2C2'
},
transitionProperty: {
'rotate': 'rotate'
}
},
maxWidth: {
customWidth: '44rem',
imgWidth: '329px',
txtWidth: '413px'
},
fontSize: {
customSize: '1.75rem',
}
},
},
plugins: [],
}