-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
123 lines (123 loc) · 2.22 KB
/
tailwind.config.js
File metadata and controls
123 lines (123 loc) · 2.22 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx,mdx}",
"./gatsby-browser.js",
"./gatsby-ssr.js",
],
darkMode: "class",
safelist: [
// Custom classes
"headline",
"secondary-h",
"sub-h",
"article",
"link-default",
"recent-publications",
// Layout classes
"container",
"mx-auto",
"px-4",
"py-6",
"py-16",
"px-6",
"pl-9",
"pr-10",
"grid",
"grid-cols-1",
"md:grid-cols-12",
"col-span-3",
"col-span-9",
"bg-white",
"dark:bg-gray-800",
"shadow-lg",
"border-r",
"dark:border-gray-700",
"pt-12",
"pt-5",
"sticky",
"top-0",
// Typography classes
"text-gray-500",
"dark:text-gray-400",
"text-gray-700",
"dark:text-gray-300",
"text-gray-900",
"dark:text-white",
"text-yellow-600",
"dark:text-yellow-400",
"hover:text-gray-600",
"dark:hover:text-gray-300",
"leading-5",
"leading-8",
"leading-9",
"tracking-tight",
// Spacing classes
"mt-3",
"mt-4",
"mb-3",
"p-6",
// List classes
"list-disc",
"list-decimal",
"ml-6",
// Table classes
"border-separate",
"border-collapse",
"table-fixed",
"border",
"border-yellow-400",
"dark:border-yellow-600",
"border-yellow-300",
"dark:border-yellow-700",
"bg-yellow-100",
"dark:bg-yellow-900",
"text-left",
"px-3",
"py-1.5",
"w-1/2",
// Theme toggle classes
"bg-gray-200",
"dark:bg-gray-700",
"text-gray-800",
"dark:text-gray-200",
"hover:bg-gray-300",
"dark:hover:bg-gray-600",
// Sidebar controls
"fixed",
"inset-0",
"z-40",
"z-50",
"bg-black",
"bg-opacity-50",
"hidden",
"flex",
"items-center",
"justify-between",
"mb-4",
"pb-2",
"border-b",
"border-gray-200",
"dark:border-gray-700",
"transition-all",
"duration-300",
"overflow-y-auto",
"w-6",
"h-6",
"p-3",
"rounded-lg",
"md:hidden",
"md:col-span-1",
"md:col-span-11",
"col-span-1",
"col-span-11",
"justify-center",
"justify-between",
"items-center",
"text-xl",
"font-semibold",
],
theme: {
extend: {},
},
plugins: [],
};