-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (38 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
40 lines (38 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/**/*.{html,js}"],
darkMode: "class",
theme: {
extend: {
colors: {
"neutral-light": {
100: "#FEFEFE",
200: "#F5F6F8",
300: "#E1E0E5",
400: "#666666",
500: "#C8C7CB",
600: "#AFAEB2",
700: "#7D7D7F",
800: "#646466",
900: "#323233"
},
"base": {
100: "#2C7EF8",
200: "#075CD9"
},
"status": {
0: "#E63946",
1: "#90F677"
}
},
fontFamily: {
"YekanBakhSemibold": "YekanBakh Semibold",
"YekanBakhBold": "YekanBakh Bold",
"YekanBakhMedium": "YekanBakh Medium",
"YekanBakhRegular": "YekanBakh Regular",
"AbarBold": "Abar Bold"
}
},
},
plugins: [],
}