-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (49 loc) · 986 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
module.exports = {
theme: {
extend: {
backgroundColor: {
"background": "#eae2b7",
"primary": "#003049",
"primary-light": "#1a4a63",
"accent-light": "#F77F00",
"accent": "#D62828",
"popup": "rgba(0,0,0,0.33)",
"highlight": "rgba(255, 255, 255, 0.2)"
},
borderColor: {
"background": "#EAE2B7",
"primary": "#003049",
"primary-light": "#1a4a63",
"accent": "#D62828",
"accent-light": "#F77F00"
},
textColor: {
"background": "#EAE2B7",
"primary": "#003049",
"primary-light": "#1a4a63",
"accent": "#D62828",
"accent-light": "#F77F00"
},
height: {
"fit": "fit-content",
"28": "7rem"
},
maxHeight: {
"10": "2.5rem",
},
transitionProperty: {
"height": "height",
}
}
},
variants: {
borderWidth: [ "responsive", "hover", "active" ],
margin: [ "responsive", "last" ],
extend: {
borderRadius: ["first"]
}
},
purge: {
content: [ "./**/*.vue" ],
},
};