-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 940 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
49
50
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: {
enabled: false,
content: ['./src/**/*.html'],
},
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1062px',
xl: '1280px',
},
fontFamily: {
display: ['Muli', 'sans-serif'],
body: ['Muli', 'sans-serif'],
},
borderWidth: {
default: '1px',
0: '0',
2: '2px',
4: '4px',
},
extend: {
colors: {
primary: '#575757',
secondary: '#19B5F1',
cyan: '#9cdbff',
},
spacing: {
96: '24rem',
128: '32rem',
},
height: {
'668px': '668px',
},
inset: {
'1/2': '50%',
},
gridTemplateRows: {
'work-with-us': '220px 300px',
},
backgroundImage: (theme) => ({
'hero-pattern': "url('../assets/images/banner-01.png')",
}),
},
},
};