-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
65 lines (64 loc) · 1.65 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
/** @type {import("tailwindcss").Config} */
module.exports = {
content: ["./public/**/*.{html,ejs,js,ts}"],
theme: {
extend: {
colors: {
farther: {
dark: "#09090b",
light: "#d4d4d8",
b: {
dark: "#18181b",
light: "#71717a",
},
h: {
dark: "#18181b",
light: "#a1a1aa",
}
},
far: {
dark: "#18181b",
light: "#e4e4e7",
b: {
dark: "#27272a",
light: "#a1a1aa",
},
h: {
dark: "#27272a",
light: "#d4d4d8",
}
},
close: {
dark: "#27272a",
light: "#f4f4f5",
b: {
dark: "#3f3f46",
light: "#d4d4d8",
},
h: {
dark: "#3f3f46",
light: "#e4e4e7",
}
},
closer: {
dark: "#3f3f46",
light: "#fafafa",
b: {
dark: "#52525b",
light: "#e4e4e7",
},
h: {
dark: "#52525b",
light: "#f4f4f5",
}
},
theme: "#ef4444",
//icons are colored depending on who can see them and how important they are
public: "#3b82f6",
private: "#ef4444",
tools: "#eab308",
},
},
},
plugins: [],
};