-
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) · 1.01 KB
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.01 KB
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: {
content: ["./layouts/index.html","./layouts/**/*.html", "./content/**/*.md", "./content/**/*.html"],
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
width: {
'20-1': '19%',
'25-1': '24%',
'98': '24.5rem',
'128': '32rem',
'130': '32.5rem'
},
height: {
'124': '31rem',
'76': '19rem',
'160': '40rem',
},
maxHeight: {
'76' : '19rem',
'124': '31rem',
'160': '40rem',
},
backgroundColor: {
'pygray': '#2C2E34',
}
}
},
variants: {
margin: ['first', 'responsive'],
borderRadius: ['responsive', 'hover', 'focus'],
transform: ['responsive', 'hover', 'focus'],
extend: {
backgroundColor: ['odd', 'even'],
fontWeight: ['responsive', 'hover'],
scale: ['responsive', 'hover', 'focus'],
borderWidth: ['responsive', 'hover'],
borderColor: ['responsive', 'hover']
},
},
plugins: [],
}