-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.09 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.09 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
40
41
42
43
44
45
46
module.exports = {
content: ["./src/**/*.{js,jsx,html}"],
theme: {
extend: {
colors: {
"primary-dark": "#0D0D0D",
"primary-light": "#F5F5F5",
sideBarBg: "#f9fafb",
sideBarText: "#4b5563",
sideBarBorder: "#e2e8f0",
Cyan: "#0e7490",
lightGreen: "#d1fae5",
darkGreen: "#047857",
lightYellow: "#fef9c3",
deepYellow: "#ca8a04",
lightRed: "#fecdd3",
deepRed: "#e11d48",
lightSky: "#bae6fd",
deepSky: "#0284c7",
lightSlate: "#e2e8f0",
deepSlate: "#475569",
topBar: "#d1fae5",
link: "#3b82f6",
cardBorder: "#5087af",
cardbg: "#f3f7f8",
disbaledText: "#94a3b8",
lightOrange: "#fb923c",
lightRose: "#fb7185",
lightIndigo: "#818cf8"
},
spacing: {
104: "26rem",
128: "32rem",
160: "40rem",
"150vw": "500rem",
"900": "900px",
},
zIndex: {
60: "60",
70: "70",
},
},
},
plugins: [require("tailwind-scrollbar")],
important: true,
};