-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (75 loc) · 1.4 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
module.exports = {
purge: ['./src/**/*.tsx'],
theme: {
colors: {
transparent: 'transparent',
black: '#3a3a3a',
white: '#ffffff',
grey: '#E5E5E5',
celeste: '#6FBBB7',
leaf: '#CEE6C1',
leaf2: '#CDE5C0',
brown: '#877272',
lightbrown: '#C4C3C3',
snow: '#EDF7EF',
burg: '#978585',
error: '#cc0000',
link: '#1C847E',
},
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
},
screens: {
xs: '375px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
},
extend: {
margin: {
'36': '9rem',
'1/4': '25%',
},
borderWidth: {
'6': '6px',
},
spacing: {
sm: '8px',
md: '16px',
lg: '24px',
xl: '48px',
},
maxWidth: {
screen: '100vw',
gridt: '717px',
griddw: '1206px',
gridd: '1036px',
full: '100%',
},
inset: {
'1/4': '25%',
},
fontSize: {
'1xl': '1.375rem',
'3xl': '1.625rem',
'3xxl': '1.875rem',
},
fontFamily: {
display: ['Montserrat', 'sans-serif'],
body: ['KoHo', 'sans-serif'],
},
},
},
variants: {},
plugins: [],
};