-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 923 Bytes
/
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
export default {
darkMode: "class",
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
light: {
bg: {
DEFAULT: "#ebeef1",
1: "#f7f7f9",
2: "#FFF",
blue: "#5383E8",
red: "#E84057",
},
text: {
DEFAULT: "#212529",
1: "#CED4DA",
2: "#FFF",
dark: "#333333",
},
},
dark: {
bg: {
DEFAULT: "#212529",
1: "#282830",
2: "#868E96",
3: "#9E9EB1",
input: "#1C1C1F",
btn: "#31313C",
},
text: {
DEFAULT: "#ECECEC",
1: "#282830",
2: "#ACACAC",
3: "#1C1C1F",
input: "#ffffff",
inputP: "#7B7A8E",
},
},
},
},
},
plugins: [],
};