forked from craftcms/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 765 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 765 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
module.exports = {
purge: {
enabled: process.env.MY_ENV_VAR === "production" ? true : false,
content: ["./docs/.vuepress/theme/**/*.vue", "./docs/**/*.md"]
},
theme: {
extend: {
fontFamily: {
sans: ["GT Eesti", "Futura Std", "Futura", "Helvetica", "sans-serif"]
},
fontSize: {
'2.5xl': '1.5625rem',
},
colors: {
slate: "#2d3748",
soft: "#f1f5fd",
"soft-gray": "#f1f5f8",
softer: "#fafbfe",
blue: "#4a7cf6",
red: "#da5a47",
cinder: "#131119",
green: "#27AB83",
"light-slate": "#718096"
},
width: {
80: "20rem"
},
screens: {
xxl: "1408px"
}
}
},
variants: {},
plugins: []
};