-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
75 lines (61 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
/* =================== */
"1536max": { max: "1536px" },
"1536min": { min: "1536px" },
/* =================== */
"1290max": { max: "1290px" },
"1290min": { min: "1290px" },
/* =================== */
"1024max": { max: "1024px" },
"1024min": { min: "1024px" },
/* =================== */
"992max": { max: "992px" },
"992min": { min: "992px" },
/* =================== */
"768max": { max: "768px" },
"768min": { min: "768px" },
/* =================== */
"640max": { max: "640px" },
"640min": { min: "640px" },
/* =================== */
"560max": { max: "560px" },
"560min": { min: "560px" },
/* =================== */
"480max": { max: "480px" },
"480min": { min: "480px" },
/* =================== */
"420max": { max: "420px" },
"420min": { min: "420px" },
/* =================== */
"380max": { max: "380px" },
"380min": { min: "380px" },
/* =================== */
"320max": { max: "320px" },
"320min": { min: "320px" },
},
colors: {
// Light Mode
lightsurface: "#F5F5F5",
lightbackground: "#FFFFFF",
// Dark Mode
darksurface: "#171f38",
darkbackground: "#0e1630",
// Buttons
lightborder: "#718096",
darkborder: "#06ab7f",
// Text Color
lightcolor: "#319795",
darkcolor: "#01d293",
// Paragraph Dark Mode
paragraphdarkcolor: "#808dad",
},
},
plugins: [],
};