-
Notifications
You must be signed in to change notification settings - Fork 15
/
tailwind.config.js
77 lines (74 loc) · 2.15 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const isProduction = process.env.NODE_ENV === "production";
let purge = false;
// We want optimization only in production
if (isProduction) {
purge = ["./content/**/*.njk", "./src/*.js"];
}
module.exports = {
purge,
darkMode: "class",
plugins: [
function ({ addUtilities }) {
const extendUnderline = {
".underline": {
textDecoration: "underline",
"text-decoration-color": "text-indigo-300",
"text-underline-position": "under"
}
};
addUtilities(extendUnderline);
}
],
variants: {
extend: {
backgroundImage: ["dark"],
fill: ["dark"],
fontWeight: ["dark"],
gradientColorStops: ["dark"],
stroke: ["dark"]
}
},
theme: {
extend: {
backgroundColor: (theme) => ({
...theme("colors"),
"dark-nav": "#242424",
"dark-body": "#1B1B1E",
"dark-heading": "#27282B"
}),
backgroundImage: () => ({
"sidebar-dark":
"radial-gradient(circle, #242424 0%, #1d1f27 100%)",
"sidebar-light":
"radial-gradient(circle,rgba(42, 30, 107, 1) 0%,rgba(35, 37, 46, 1) 100%)"
}),
borderWidth: (theme) => ({
...theme("width"),
1: "1px"
}),
gradientColorStops: (theme) => ({
...theme("colors"),
"dark-outer": "#1B1B1E",
"dark-middle": "#242424"
}),
gridTemplateColumns: {
small: "0 auto",
regular: "minmax(auto, 0fr) auto;",
topbar: "auto 18rem"
},
lineHeight: {
pagination: "1.8rem",
12: "3rem"
},
margin: {
15: "3.75rem"
},
maxWidth: {
content: "95rem"
},
textColor: {
"orange-hover": "#d2603a"
}
}
}
};