-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (42 loc) · 929 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
module.exports = {
future: {
purgeLayersByDefault: true,
},
purge: {
enabled: true,
content: [
'./src/**/*.html',
'./src/**/*.ts',
]
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
gray: {
400: '#DCDBDB',
500: '#A7A6A6',
}
},
screens: {
'2xl-max': {'max': '1600px'},
// => @media (max-width: 1600px) { ... }
'xl-max': {'max': '1280px'},
// => @media (max-width: 1280px) { ... }
'lg-max': {'max': '1024px'},
// => @media (max-width: 1024px) { ... }
'md-max': {'max': '768px'},
// => @media (max-width: 768px) { ... }
'sm-max': {'max': '640px'},
// => @media (max-width: 640px) { ... }
}
},
},
future: {
removeDeprecatedGapUtilities: true,
},
variants: {
extend: {},
},
plugins: [],
}