-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.cjs
158 lines (142 loc) · 4.68 KB
/
tailwind.config.cjs
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
tt: "var(--font-tt)",
space: "var(--font-space)",
},
colors: {
primary: "#2c3e50",
"primary-hover": "#283448",
"primary-active": "#233240",
"primary-dark": "#212f3c",
"primary-dark-hover": "#1a2530",
"primary-dark-active": "#141c24",
"primary-darker": "#0f161c",
"primary-content": "#ffffff",
"primary-light": "#eaecee",
"primary-light-hover": "#dfe2e5",
"primary-light-active": "#bec3c9",
secondary: "#3498db",
"secondary-hover": "#2f89c5",
"secondary-active": "#2a7aaf",
"secondary-dark": "#2772a4",
"secondary-dark-hover": "#1f5b83",
"secondary-dark-active": "#174463",
"secondary-darker": "#12354d",
"secondary-content": "#ffffff",
"secondary-light": "#ebf5fb",
"secondary-light-hover": "#e1f0fa",
"secondary-light-active": "#c0dff4",
accent: "#f1c40f",
"accent-hover": "#d9b00e",
"accent-active": "#c19dDc",
"accent-dark": "#b5930b",
"accent-dark-hover": "#917609",
"accent-dark-active": "#6c5807",
"accent-darker": "#544505",
"accent-content": "#ffffff",
"accent-light": "#fef9e7",
"accent-light-hover": "#fdf6db",
"accent-light-active": "#fbedb5",
neutral: "#bdc3c7",
"neutral-hover": "#aab0b3",
"neutral-active": "#979c9f",
"neutral-dark": "#8e9295",
"neutral-dark-hover": "#717577",
"neutral-dark-active": "#55585a",
"neutral-darker": "#424446",
"neutral-content": "#ffffff",
"neutral-light": "#f8f9f9",
"neutral-light-hover": "#f5f6f7",
"neutral-light-active": "#ebecee",
"base-100": "#181818",
"base-200": "#35363a",
"base-300": "#222222",
"base-content": "#f9fafb",
info: "#1ABC9C",
"info-dark": "#148B74",
"info-light": "#1dd2af",
success: "#27AE60",
"success-dark": "#1C7E45",
"success-light": "#2ECC71",
warning: "#f39c12",
"warning-dark": "#c87f0a",
"warning-light": "#f5b041",
error: "#e74c3c",
"success-dark": "#b53428",
"success-light": "#ea6459",
},
},
daisyui: {
styled: true,
themes: [
{
deanslist: {
primary: "#2c3e50",
"primary-hover": "#283448",
"primary-active": "#233240",
"primary-dark": "#212f3c",
"primary-dark-hover": "#1a2530",
"primary-dark-active": "#141c24",
"primary-darker": "#0f161c",
"primary-content": "#ffffff",
"primary-light": "#eaecee",
"primary-light-hover": "#dfe2e5",
"primary-light-active": "#bec3c9",
secondary: "#3498db",
"secondary-hover": "#2f89c5",
"secondary-active": "#2a7aaf",
"secondary-dark": "#2772a4",
"secondary-dark-hover": "#1f5b83",
"secondary-dark-active": "#174463",
"secondary-darker": "#12354d",
"secondary-content": "#ffffff",
"secondary-light": "#ebf5fb",
"secondary-light-hover": "#e1f0fa",
"secondary-light-active": "#c0dff4",
accent: "#f1c40f",
"accent-hover": "#d9b00e",
"accent-active": "#c19dDc",
"accent-dark": "#b5930b",
"accent-dark-hover": "#917609",
"accent-dark-active": "#6c5807",
"accent-darker": "#544505",
"accent-content": "#ffffff",
"accent-light": "#fef9e7",
"accent-light-hover": "#fdf6db",
"accent-light-active": "#fbedb5",
neutral: "#bdc3c7",
"neutral-hover": "#aab0b3",
"neutral-active": "#979c9f",
"neutral-dark": "#8e9295",
"neutral-dark-hover": "#717577",
"neutral-dark-active": "#55585a",
"neutral-darker": "#424446",
"neutral-content": "#ffffff",
"neutral-light": "#f8f9f9",
"neutral-light-hover": "#f5f6f7",
"neutral-light-active": "#ebecee",
"base-100": "#181818",
"base-200": "#35363a",
"base-300": "#222222",
"base-content": "#f9fafb",
info: "#1ABC9C",
"info-dark": "#148B74",
"info-light": "#1dd2af",
success: "#27AE60",
"success-dark": "#1C7E45",
"success-light": "#2ECC71",
warning: "#f39c12",
"warning-dark": "#c87f0a",
"warning-light": "#f5b041",
error: "#e74c3c",
"success-dark": "#b53428",
"success-light": "#ea6459",
},
},
],
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
};