-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 910 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 910 Bytes
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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
borderRadius: {
'3.5xl': '1.75rem'
},
fontFamily: {
'montserrat': ['Montserrat', 'sans-serif'],
'helvetica': ['Helvetica']
},
fontSize: {
'15px': ['15px', '21px'],
'16px': ['16px', '22px'],
'19px': ['19px', '23px'],
'20px': ['20px', '28px'],
'22px': ['22px', '30px'],
'26px': ['26px', '32px'],
},
opacity: {
'55': '.55'
},
textColor: {
'default-color': '#154A4E'
},
width: {
'4.5': '1.125rem',
'75': '18.75rem',
},
maxWidth: {
'110': '27.5rem'
},
height: {
'7.5': '1.875rem',
}
},
},
variants: {
extend: {},
},
plugins: [],
}