-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
116 lines (116 loc) · 1.98 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
116
// eslint-disable-next-line no-undef
module.exports = {
future: {
purgeLayersByDefault: true,
},
purge: [`src/**/*.css`, `src/**/*.tsx`],
theme: {
fontFamily: {
mont: [
`Montserrat`,
`"Segoe UI"`,
`Roboto`,
`"Helvetica Neue"`,
`Arial`,
`"Noto Sans"`,
`sans-serif`,
],
},
screens: {
xxs: `350px`,
xs: `450px`,
sm: `640px`,
md: `768px`,
lg: `1024px`,
xl: `1280px`,
xxl: `1440px`,
xxxl: `1500px`,
xxxxl: `1610px`,
curEventCard: `1036px`,
},
extend: {
spacing: {},
colors: {
lightBlue: `#008FC3`,
darkBlue: `#242B5F`,
lighterGray: `#a4a8b2`,
lightGray: `#9B9B9B`, // 979797
darkGray: `#4A4A4A`,
backgroundGray: `#F2F2F2`,
backgroundLightGray: `#F3F5F9`,
afpaGreen: `#008560`,
textGreen: `#19AF6A`,
},
height: {
in: `inherit`,
'1/2': `50%`,
'2px': `2px`,
'300': `300px`,
'400': `400px`,
'600': `600px`,
},
maxHeight: {
'200': `200px`,
'335': `335px`,
'500': `500px`,
'3/4': `75vh`,
},
minHeight: {
'65': `65px`,
'150': `150px`,
'200': `200px`,
'250': `250px`,
'400': `400px`,
'500': `500px`,
'700': `700px`,
'24': `6rem`,
},
width: {
'300': `300px`,
'350': `350px`,
'500': `500px`,
'49/100': `49%`,
},
maxWidth: {
'2xs': `12rem`,
'1200': `1200px`,
'400': `400px`,
'425': `425px`,
'500': `500px`,
'650': `650px`,
'700': `700px`,
'1275': `1275px`,
},
minWidth: {
'91': `91px`,
'120': `120px`,
'200': `200px`,
'300': `300px`,
'450': `450px`,
'1275': `1275px`,
'10/12': `83.33vw`,
},
padding: {
72: `18rem`,
},
fontSize: {
'7xl': `4.5rem`,
},
inset: {
'50px': `50px`,
'100': `100px`,
full: `100%`,
'3/4': `75%`,
'1/2': `50%`,
'1/3': `33%`,
'1/4': `25%`,
'1/6': `16%`,
'15': `15%`,
'1/10': `10%`,
'1/20': `5%`,
},
},
},
variants: {},
plugins: [],
}