forked from anurag-d-ctk/react-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 882 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
43 lines (43 loc) · 882 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#4B40EE",
secondary: "#1A243A",
secondaryDark: "#4B40EE",
tertiary: "#6F7177",
success: "#67BF6B",
error: "#E74C3C",
gray50: "#EFF1F3",
darkGray: "#1f1f1f",
gray100: "#E6E8EB",
gray200: "#BDBEBF",
textLight: "#6F7177",
textDark: "#EFF1F3",
mainBg: {
dark: "#1E1E1E",
light: "#FFFFFF"
},
appbg: {
dark: "#404040",
light: "#EFF1F3"
}
},
fontSize: {
huge: "70px",
normal: "18px",
},
spacing: {
60: "60px",
100: "100px",
}
},
},
plugins: [],
}