-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 923 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontSize: {
gr1: '4.5rem',
gr2: '2.47rem',
gr3: '1.53rem',
gr4: '0.94rem',
gr5: '1.02vw',
},
extend: {
width: {
gr1: '61.8%',
gr2: '38.2%',
gr3: '23.6%',
gr4: '14.6%',
gr5: '9%',
gr6: '5.6%',
gr7: '3.4%',
gr8: '2.1%',
gr9: '1.3%',
},
height: {
gr1: '61.8%',
gr2: '38.2%',
gr3: '23.6%',
gr4: '14.6%',
gr5: '9%',
gr6: '5.6%',
gr7: '3.4%',
gr8: '2.1%',
gr9: '1.3%',
},
colors: {
gold: '#FFD60A',
mikadoYellow: '#CCA000',
yaleBlue: '#003566',
richBlack: '#000814',
oxfordBlue: '#001D3D',
},
},
},
plugins: [],
};