-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.07 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
module.exports = {
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
mode: process.env.NODE_ENV ? "jit" : undefined,
darkMode: "class",
content: [],
theme: {
extend: {
boxShadow: {
airbnb: "rgba(0, 0, 0, 0.08) 0px 4px 12px",
},
borderColor: {
dark: {
primary: "#36393e",
secondary: "#2f3136",
},
},
backgroundColor: {
dark: {
primary: "#36393e",
secondary: "#2f3136",
"modifier-hover": "#4f545c29",
"modifier-active": "#4f545c52",
},
light: {
primary: "#f3f4f6",
},
"transparent-black": "rgba(0, 0, 0, 0.4);",
},
textColor: {
dark: {
primary: "#b9bbbe",
"modifier-hover": "#dcddde",
"modifier-active": "#fff",
},
light: {
primary: "#393839",
"modifier-hover": "#fff",
"modifier-active": "#fff",
},
},
colors: {
"sky-blue": "rgb(14 165 233)",
},
},
},
plugins: [],
};