-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
65 lines (65 loc) · 1.43 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
module.exports = {
purge: false,
theme: {
fontFamily: {
sans: "Montserrat, serif",
serif: "'Roboto Slab', serif",
},
colors: {
transparent: "transparent",
current: "currentColor",
white: "#fff",
black: "#000",
"g-1": "#fcfcfc",
"g-2": "#fafafa",
"g-3": "#f5f5f5",
"g-4": "#efefef",
"g-5": "#dbdbdb",
"g-6": "#8a8a8a",
"g-7": "#5d5d5d",
"g-8": "#2d3748",
"g-9": "#1a202c",
beige: "#f4f1ee",
robin: "#99d9f1",
blue: "#4085FF",
gray: "#2D2D2D",
green: "#70A83A",
"blue-darker": "#001181",
"tw-blue": "#99d9f1",
"fb-blue": "#009edb",
red: "#84181d",
yellow: "#ffcb05",
"yellow-darker": "#cda52d",
darkblue: "#22416e",
},
extend: {
boxShadow: {
beige: "0 0 0 3px #f4f1ee80",
},
lineHeight: {
normal: "1.6",
hed: "1.15",
},
margin: {
21: "5.25rem", // for staggered sidebars
},
spacing: {
"16x9": `${(100 * 9) / 16}%`,
"6x4": `${(100 * 4) / 6}%`,
},
screens: {
md: "850px",
lg: "1080px",
},
maxWidth: {
content: "730px",
},
},
},
variants: {
boxShadow: ["responsive", "hover", "focus", "active", "group-hover"],
textColor: ["responsive", "hover", "focus", "group-hover"],
},
plugins: [],
content: ["./hugo_stats.json"],
};