-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./src/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
backgroundDark: "#222429",
headerDark: "#212121",
cardDark: "#303133",
cardHeadDark: "#575757",
tagDark: "#464646",
borderGray: "#E2E2E2",
borderGrayDark: "#818181",
cardHeadLight: "#EFF9FF",
articleDark: "#212121",
textDark: "#4e4e4e",
tagLight: "#818181",
black: {
primary: "#222429",
secondary: "#212121",
tertiary: "#303133"
},
white: {
primary: "#fff"
},
gray: {
primary: "#E2E2E2",
secondary: "#818181",
tertiary: "#575757",
quaternary: "#464646",
quinary: "#4e4e4e"
},
blue: {
primary: "#EFF9FF"
}
},
borderRadius: {
grayLight: {
color: "#E2E2E2",
width: 1,
style: "solid"
},
grayDark: {
color: "#818181",
width: 1,
style: "solid"
}
}
},
},
}