-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
45 lines (39 loc) · 1.08 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
module.exports = {
mode: "jit",
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: "class",
theme: {
extend: {
colors: {
// For Dark Mode
darkBgColor: "#192428",
darkPrimaryFgColor: "#2299ff",
darkSecondaryFgColor: "#dce0df",
darkElevationColor: "#2d383c",
darkSpecificIconsColor: "#d0d0d0",
darkTextFieldInnerColor: "#313131",
darkPostTextStyleColor: "#e4e6eb",
darkCardColor: "#334247",
darkBorderColor: "#334247",
// For Light Mode
lightBgColor: "#f3f3f3",
lightPrimaryFgColor: "#2299ff",
lightSecondaryFgColor: "#595959",
lightElevationColor: "#ffffff",
lightSpecificIconsColor: "#606060",
lightTextFieldInnerColor: "#DCE0DF",
lightPostTextStyleColor: "#000000",
lightCardColor: "#DDE8EC",
lightBorderColor: "#EODFDC",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "2550px",
},
},
},
plugins: [],
};