daisyui 2.0.9 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -12
- package/dist/full.css +1 -1
- package/dist/styled.css +1 -1
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +1 -1
- package/dist/unstyled.css +1 -1
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/dist/utilities.js +1 -1
- package/package.json +1 -2
- package/src/colors/functions.js +307 -0
- package/src/colors/themes.js +89 -615
- package/src/index.js +4 -139
- package/src/colors/windi.js +0 -12
package/src/colors/themes.js
CHANGED
|
@@ -1,68 +1,25 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"[data-theme=aqua]": {
|
|
3
|
-
primary: "#
|
|
4
|
-
"primary-focus": "#0fdbff",
|
|
5
|
-
"primary-content": "#000000",
|
|
3
|
+
primary: "#09ecf3",
|
|
6
4
|
secondary: "#966fb3",
|
|
7
|
-
"secondary-focus": "#7d539d",
|
|
8
|
-
"secondary-content": "#ffffff",
|
|
9
5
|
accent: "#ffe999",
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"base-200": "#132795",
|
|
17
|
-
"base-300": "#18277c",
|
|
18
|
-
"base-content": "#ffffff",
|
|
19
|
-
info: "#e0f2fe",
|
|
20
|
-
"info-content": "#2563eb",
|
|
21
|
-
success: "#dcfce7",
|
|
22
|
-
"success-content": "#16a34a",
|
|
23
|
-
warning: "#fef3c7",
|
|
24
|
-
"warning-content": "#d97706",
|
|
25
|
-
error: "#fee2e2",
|
|
26
|
-
"error-content": "#dc2626",
|
|
27
|
-
"--border-color": "var(--b3)",
|
|
28
|
-
"--rounded-box": "1rem",
|
|
29
|
-
"--rounded-btn": "0.5rem",
|
|
30
|
-
"--rounded-badge": "1.9rem",
|
|
31
|
-
"--animation-btn": "0.25s",
|
|
32
|
-
"--animation-input": ".2s",
|
|
33
|
-
"--btn-text-case": "uppercase",
|
|
34
|
-
"--btn-focus-scale": "0.95",
|
|
35
|
-
"--navbar-padding": ".5rem",
|
|
36
|
-
"--border-btn": "1px",
|
|
37
|
-
"--tab-border": "1px",
|
|
38
|
-
"--tab-radius": "0.5rem",
|
|
6
|
+
neutral: "#3b8ac4",
|
|
7
|
+
"base-100": "#345da7",
|
|
8
|
+
"info": "#2563eb",
|
|
9
|
+
"success": "#16a34a",
|
|
10
|
+
"warning": "#d97706",
|
|
11
|
+
"error": "#dc2626",
|
|
39
12
|
},
|
|
40
13
|
"[data-theme=black]": {
|
|
41
|
-
primary: "#
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
secondary: "#ffffff",
|
|
45
|
-
"secondary-focus": "#ffffff",
|
|
46
|
-
"secondary-content": "#000000",
|
|
47
|
-
accent: "#ffffff",
|
|
48
|
-
"accent-focus": "#ffffff",
|
|
49
|
-
"accent-content": "#000000",
|
|
14
|
+
primary: "#333333",
|
|
15
|
+
secondary: "#333333",
|
|
16
|
+
accent: "#333333",
|
|
50
17
|
"base-100": "#000000",
|
|
51
|
-
"base-200": "#333333",
|
|
52
|
-
"base-300": "#4d4d4d",
|
|
53
|
-
"base-content": "#ffffff",
|
|
54
18
|
neutral: "#333333",
|
|
55
|
-
"neutral-focus": "#4d4d4d",
|
|
56
|
-
"neutral-content": "#ffffff",
|
|
57
19
|
info: "#0000ff",
|
|
58
|
-
"info-content": "#ffffff",
|
|
59
20
|
success: "#008000",
|
|
60
|
-
"success-content": "#000000",
|
|
61
21
|
warning: "#ffff00",
|
|
62
|
-
"warning-content": "#000000",
|
|
63
22
|
error: "#ff0000",
|
|
64
|
-
"error-content": "#ffffff",
|
|
65
|
-
"--border-color": "var(--b3)",
|
|
66
23
|
"--rounded-box": "0",
|
|
67
24
|
"--rounded-btn": "0",
|
|
68
25
|
"--rounded-badge": "0",
|
|
@@ -70,710 +27,240 @@ module.exports = {
|
|
|
70
27
|
"--animation-input": "0",
|
|
71
28
|
"--btn-text-case": "lowercase",
|
|
72
29
|
"--btn-focus-scale": "1",
|
|
73
|
-
"--navbar-padding": ".5rem",
|
|
74
|
-
"--border-btn": "1px",
|
|
75
|
-
"--tab-border": "1px",
|
|
76
30
|
"--tab-radius": "0",
|
|
77
31
|
},
|
|
78
32
|
"[data-theme=bumblebee]": {
|
|
79
|
-
primary: "#
|
|
80
|
-
"primary-focus": "#edc707",
|
|
33
|
+
primary: "#e0a82e",
|
|
81
34
|
"primary-content": "#181830",
|
|
82
|
-
secondary: "#
|
|
83
|
-
"secondary-
|
|
84
|
-
"secondary-content": "#ffffff",
|
|
35
|
+
secondary: "#f9d72f",
|
|
36
|
+
"secondary-content": "#181830",
|
|
85
37
|
accent: "#181830",
|
|
86
|
-
"accent-focus": "#111122",
|
|
87
|
-
"accent-content": "#ffffff",
|
|
88
38
|
neutral: "#181830",
|
|
89
|
-
"neutral-focus": "#111122",
|
|
90
|
-
"neutral-content": "#ffffff",
|
|
91
39
|
"base-100": "#ffffff",
|
|
92
|
-
"base-200": "#f5f5f5",
|
|
93
|
-
"base-300": "#e3e3e3",
|
|
94
|
-
"base-content": "#000000",
|
|
95
|
-
info: "#e0f2fe",
|
|
96
|
-
"info-content": "#2563eb",
|
|
97
|
-
success: "#dcfce7",
|
|
98
|
-
"success-content": "#16a34a",
|
|
99
|
-
warning: "#fef3c7",
|
|
100
|
-
"warning-content": "#d97706",
|
|
101
|
-
error: "#fee2e2",
|
|
102
|
-
"error-content": "#dc2626",
|
|
103
|
-
"--border-color": "var(--b3)",
|
|
104
|
-
"--rounded-box": "1rem",
|
|
105
|
-
"--rounded-btn": "0.5rem",
|
|
106
|
-
"--rounded-badge": "1.9rem",
|
|
107
|
-
"--animation-btn": "0.25s",
|
|
108
|
-
"--animation-input": ".2s",
|
|
109
|
-
"--btn-text-case": "uppercase",
|
|
110
|
-
"--btn-focus-scale": "0.95",
|
|
111
|
-
"--navbar-padding": ".5rem",
|
|
112
|
-
"--border-btn": "1px",
|
|
113
|
-
"--tab-border": "1px",
|
|
114
|
-
"--tab-radius": "0.5rem",
|
|
115
40
|
},
|
|
116
41
|
"[data-theme=cmyk]": {
|
|
117
42
|
primary: "#45AEEE",
|
|
118
|
-
"primary-focus": "#3d9bd6",
|
|
119
|
-
"primary-content": "#000000",
|
|
120
43
|
secondary: "#E8488A",
|
|
121
|
-
"secondary-focus": "#ce407b",
|
|
122
|
-
"secondary-content": "#000000",
|
|
123
44
|
accent: "#FFF232",
|
|
124
|
-
"accent-focus": "#ddd12c",
|
|
125
|
-
"accent-content": "#000000",
|
|
126
45
|
neutral: "#1a1a1a",
|
|
127
|
-
"neutral-focus": "#000000",
|
|
128
|
-
"neutral-content": "#ffffff",
|
|
129
46
|
"base-100": "#ffffff",
|
|
130
|
-
"base-200": "#f5f5f5",
|
|
131
|
-
"base-300": "#ebebeb",
|
|
132
|
-
"base-content": "#000000",
|
|
133
47
|
info: "#4AA8C0",
|
|
134
|
-
"info-content": "#ffffff",
|
|
135
48
|
success: "#823290",
|
|
136
|
-
"success-content": "#ffffff",
|
|
137
49
|
warning: "#EE8133",
|
|
138
|
-
"warning-content": "#ffffff",
|
|
139
50
|
error: "#E93F33",
|
|
140
|
-
"error-content": "#ffffff",
|
|
141
|
-
"--border-color": "var(--b3)",
|
|
142
|
-
"--rounded-box": "1rem",
|
|
143
|
-
"--rounded-btn": "0.5rem",
|
|
144
|
-
"--rounded-badge": "1.9rem",
|
|
145
|
-
"--animation-btn": "0.25s",
|
|
146
|
-
"--animation-input": ".2s",
|
|
147
|
-
"--btn-text-case": "uppercase",
|
|
148
|
-
"--btn-focus-scale": "0.95",
|
|
149
|
-
"--navbar-padding": ".5rem",
|
|
150
|
-
"--border-btn": "1px",
|
|
151
|
-
"--tab-border": "1px",
|
|
152
|
-
"--tab-radius": "0.5rem",
|
|
153
51
|
},
|
|
154
52
|
"[data-theme=corporate]": {
|
|
155
53
|
primary: "#4b6bfb",
|
|
156
|
-
"primary-focus": "#1942fa",
|
|
157
|
-
"primary-content": "#181a2a",
|
|
158
54
|
secondary: "#7b92b2",
|
|
159
|
-
"secondary-focus": "#5c789d",
|
|
160
|
-
"secondary-content": "#181a2a",
|
|
161
55
|
accent: "#67cba0",
|
|
162
|
-
"accent-focus": "#41be88",
|
|
163
|
-
"accent-content": "#181a2a",
|
|
164
56
|
neutral: "#181a2a",
|
|
165
|
-
"neutral-focus": "#06060a",
|
|
166
57
|
"neutral-content": "#edf2f7",
|
|
167
58
|
"base-100": "#ffffff",
|
|
168
|
-
"base-200": "#f7fafd",
|
|
169
|
-
"base-300": "#edf2f7",
|
|
170
59
|
"base-content": "#181a2a",
|
|
171
|
-
|
|
172
|
-
"
|
|
173
|
-
|
|
174
|
-
"success-content": "#16a34a",
|
|
175
|
-
warning: "#fef3c7",
|
|
176
|
-
"warning-content": "#d97706",
|
|
177
|
-
error: "#fee2e2",
|
|
178
|
-
"error-content": "#dc2626",
|
|
179
|
-
"--border-color": "var(--b3)",
|
|
180
|
-
"--rounded-box": "1rem",
|
|
181
|
-
"--rounded-btn": "0.5rem",
|
|
182
|
-
"--rounded-badge": "1.9rem",
|
|
60
|
+
"--rounded-box": "0.25rem",
|
|
61
|
+
"--rounded-btn": ".125rem",
|
|
62
|
+
"--rounded-badge": ".125rem",
|
|
183
63
|
"--animation-btn": "0",
|
|
184
64
|
"--animation-input": "0",
|
|
185
|
-
"--btn-text-case": "uppercase",
|
|
186
65
|
"--btn-focus-scale": "1",
|
|
187
|
-
"--navbar-padding": ".5rem",
|
|
188
|
-
"--border-btn": "1px",
|
|
189
|
-
"--tab-border": "1px",
|
|
190
|
-
"--tab-radius": "0.5rem",
|
|
191
66
|
},
|
|
192
67
|
"[data-theme=cupcake]": {
|
|
193
68
|
primary: "#65c3c8",
|
|
194
|
-
"primary-focus": "#42b2b8",
|
|
195
|
-
"primary-content": "#ffffff",
|
|
196
69
|
secondary: "#ef9fbc",
|
|
197
|
-
"secondary-focus": "#e8739e",
|
|
198
|
-
"secondary-content": "#ffffff",
|
|
199
70
|
accent: "#eeaf3a",
|
|
200
|
-
"accent-focus": "#e19914",
|
|
201
|
-
"accent-content": "#ffffff",
|
|
202
71
|
neutral: "#291334",
|
|
203
|
-
"neutral-focus": "#200f29",
|
|
204
|
-
"neutral-content": "#ffffff",
|
|
205
72
|
"base-100": "#faf7f5",
|
|
206
73
|
"base-200": "#efeae6",
|
|
207
74
|
"base-300": "#e7e2df",
|
|
208
75
|
"base-content": "#291334",
|
|
209
|
-
info: "#e0f2fe",
|
|
210
|
-
"info-content": "#2563eb",
|
|
211
|
-
success: "#dcfce7",
|
|
212
|
-
"success-content": "#16a34a",
|
|
213
|
-
warning: "#fef3c7",
|
|
214
|
-
"warning-content": "#d97706",
|
|
215
|
-
error: "#fee2e2",
|
|
216
|
-
"error-content": "#dc2626",
|
|
217
|
-
"--border-color": "var(--b3)",
|
|
218
|
-
"--rounded-box": "1rem",
|
|
219
76
|
"--rounded-btn": "1.9rem",
|
|
220
|
-
"--rounded-badge": "1.9rem",
|
|
221
|
-
"--animation-btn": "0.25s",
|
|
222
|
-
"--animation-input": ".2s",
|
|
223
|
-
"--btn-text-case": "uppercase",
|
|
224
|
-
"--btn-focus-scale": "0.95",
|
|
225
|
-
"--navbar-padding": ".5rem",
|
|
226
|
-
"--border-btn": "1px",
|
|
227
77
|
"--tab-border": "2px",
|
|
228
78
|
"--tab-radius": ".5rem",
|
|
229
79
|
},
|
|
230
80
|
"[data-theme=cyberpunk]": {
|
|
231
|
-
fontFamily:
|
|
232
|
-
"ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace",
|
|
81
|
+
fontFamily: "ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace",
|
|
233
82
|
primary: "#ff7598",
|
|
234
|
-
"primary-focus": "#ff5784",
|
|
235
|
-
"primary-content": "#000000",
|
|
236
83
|
secondary: "#75d1f0",
|
|
237
|
-
"secondary-focus": "#5abfdd",
|
|
238
|
-
"secondary-content": "#000000",
|
|
239
84
|
accent: "#c07eec",
|
|
240
|
-
"accent-focus": "#af59e8",
|
|
241
|
-
"accent-content": "#000000",
|
|
242
85
|
neutral: "#423f00",
|
|
243
|
-
"neutral-focus": "#090901",
|
|
244
86
|
"neutral-content": "#ffee00",
|
|
245
87
|
"base-100": "#ffee00",
|
|
246
|
-
"base-200": "#dbcd00",
|
|
247
|
-
"base-300": "#b8ab00",
|
|
248
|
-
"base-content": "#000000",
|
|
249
|
-
info: "#2563eb",
|
|
250
|
-
"info-content": "#e0f2fe",
|
|
251
|
-
success: "#16a34a",
|
|
252
|
-
"success-content": "#dcfce7",
|
|
253
|
-
warning: "#d97706",
|
|
254
|
-
"warning-content": "#fef3c7",
|
|
255
|
-
error: "#dc2626",
|
|
256
|
-
"error-content": "#fee2e2",
|
|
257
|
-
"--border-color": "var(--b3)",
|
|
258
88
|
"--rounded-box": "0",
|
|
259
89
|
"--rounded-btn": "0",
|
|
260
90
|
"--rounded-badge": "0",
|
|
261
|
-
"--animation-btn": "0.25s",
|
|
262
|
-
"--animation-input": ".2s",
|
|
263
|
-
"--btn-text-case": "uppercase",
|
|
264
|
-
"--btn-focus-scale": "0.95",
|
|
265
|
-
"--navbar-padding": ".5rem",
|
|
266
|
-
"--border-btn": "1px",
|
|
267
|
-
"--tab-border": "1px",
|
|
268
91
|
"--tab-radius": "0",
|
|
269
92
|
},
|
|
270
93
|
"[data-theme=dark]": {
|
|
271
94
|
primary: "#793ef9",
|
|
272
|
-
"primary-focus": "#570df8",
|
|
273
95
|
"primary-content": "#ffffff",
|
|
274
96
|
secondary: "#f000b8",
|
|
275
|
-
"secondary-focus": "#bd0091",
|
|
276
97
|
"secondary-content": "#ffffff",
|
|
277
98
|
accent: "#37cdbe",
|
|
278
|
-
"accent-focus": "#2aa79b",
|
|
279
99
|
"accent-content": "#ffffff",
|
|
280
100
|
neutral: "#2a2e37",
|
|
281
|
-
"neutral-focus": "#16181d",
|
|
282
101
|
"neutral-content": "#ffffff",
|
|
283
102
|
"base-100": "#3d4451",
|
|
284
|
-
"base-200": "#2a2e37",
|
|
285
|
-
"base-300": "#16181d",
|
|
286
103
|
"base-content": "#ebecf0",
|
|
287
|
-
info: "#2563eb",
|
|
288
|
-
"info-content": "#e0f2fe",
|
|
289
|
-
success: "#16a34a",
|
|
290
|
-
"success-content": "#dcfce7",
|
|
291
|
-
warning: "#d97706",
|
|
292
|
-
"warning-content": "#fef3c7",
|
|
293
|
-
error: "#dc2626",
|
|
294
|
-
"error-content": "#fee2e2",
|
|
295
|
-
"--border-color": "var(--b3)",
|
|
296
|
-
"--rounded-box": "1rem",
|
|
297
|
-
"--rounded-btn": "0.5rem",
|
|
298
|
-
"--rounded-badge": "1.9rem",
|
|
299
|
-
"--animation-btn": "0.25s",
|
|
300
|
-
"--animation-input": ".2s",
|
|
301
|
-
"--btn-text-case": "uppercase",
|
|
302
|
-
"--btn-focus-scale": "0.95",
|
|
303
|
-
"--navbar-padding": ".5rem",
|
|
304
|
-
"--border-btn": "1px",
|
|
305
|
-
"--tab-border": "1px",
|
|
306
|
-
"--tab-radius": "0.5rem",
|
|
307
104
|
},
|
|
308
105
|
"[data-theme=dracula]": {
|
|
309
|
-
primary: "#
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"neutral-focus": "#1d1e25",
|
|
320
|
-
"neutral-content": "#d5ccff",
|
|
321
|
-
"base-100": "#302f3d",
|
|
322
|
-
"base-200": "#22212c",
|
|
323
|
-
"base-300": "#1d1e25",
|
|
324
|
-
"base-content": "#d5ccff",
|
|
325
|
-
info: "#e0f2fe",
|
|
326
|
-
"info-content": "#2563eb",
|
|
327
|
-
success: "#dcfce7",
|
|
328
|
-
"success-content": "#16a34a",
|
|
329
|
-
warning: "#fef3c7",
|
|
330
|
-
"warning-content": "#d97706",
|
|
331
|
-
error: "#fee2e2",
|
|
332
|
-
"error-content": "#dc2626",
|
|
333
|
-
"--border-color": "var(--b3)",
|
|
334
|
-
"--rounded-box": "1rem",
|
|
335
|
-
"--rounded-btn": "0.5rem",
|
|
336
|
-
"--rounded-badge": "1.9rem",
|
|
337
|
-
"--animation-btn": "0.25s",
|
|
338
|
-
"--animation-input": ".2s",
|
|
339
|
-
"--btn-text-case": "uppercase",
|
|
340
|
-
"--btn-focus-scale": "0.95",
|
|
341
|
-
"--navbar-padding": ".5rem",
|
|
342
|
-
"--border-btn": "1px",
|
|
343
|
-
"--tab-border": "1px",
|
|
344
|
-
"--tab-radius": "0.5rem",
|
|
106
|
+
primary: "#ff79c6",
|
|
107
|
+
secondary: "#bd93f9",
|
|
108
|
+
accent: "#ffb86c",
|
|
109
|
+
neutral: "#414558",
|
|
110
|
+
"base-100": "#282a36",
|
|
111
|
+
"base-content": "#f8f8f2",
|
|
112
|
+
info: "#8be9fd",
|
|
113
|
+
success: "#50fa7b",
|
|
114
|
+
warning: "#f1fa8c",
|
|
115
|
+
error: "#ff5555",
|
|
345
116
|
},
|
|
346
117
|
"[data-theme=emerald]": {
|
|
347
118
|
primary: "#66cc8a",
|
|
348
|
-
"primary-focus": "#40bf6c",
|
|
349
119
|
"primary-content": "#f9fafb",
|
|
350
120
|
secondary: "#377cfb",
|
|
351
|
-
"secondary-focus": "#055bfa",
|
|
352
121
|
"secondary-content": "#f9fafb",
|
|
353
122
|
accent: "#ea5234",
|
|
354
|
-
"accent-focus": "#d43616",
|
|
355
123
|
"accent-content": "#f9fafb",
|
|
356
124
|
neutral: "#333c4d",
|
|
357
|
-
"neutral-focus": "#1f242e",
|
|
358
125
|
"neutral-content": "#f9fafb",
|
|
359
126
|
"base-100": "#ffffff",
|
|
360
|
-
"base-200": "#f9fafb",
|
|
361
|
-
"base-300": "#f2f2f2",
|
|
362
127
|
"base-content": "#333c4d",
|
|
363
|
-
info: "#e0f2fe",
|
|
364
|
-
"info-content": "#2563eb",
|
|
365
|
-
success: "#dcfce7",
|
|
366
|
-
"success-content": "#16a34a",
|
|
367
|
-
warning: "#fef3c7",
|
|
368
|
-
"warning-content": "#d97706",
|
|
369
|
-
error: "#fee2e2",
|
|
370
|
-
"error-content": "#dc2626",
|
|
371
|
-
"--border-color": "var(--b3)",
|
|
372
|
-
"--rounded-box": "1rem",
|
|
373
|
-
"--rounded-btn": "0.5rem",
|
|
374
|
-
"--rounded-badge": "1.9rem",
|
|
375
128
|
"--animation-btn": "0",
|
|
376
129
|
"--animation-input": "0",
|
|
377
|
-
"--btn-text-case": "uppercase",
|
|
378
130
|
"--btn-focus-scale": "1",
|
|
379
|
-
"--navbar-padding": ".5rem",
|
|
380
|
-
"--border-btn": "1px",
|
|
381
|
-
"--tab-border": "1px",
|
|
382
|
-
"--tab-radius": "0.5rem",
|
|
383
131
|
},
|
|
384
132
|
"[data-theme=fantasy]": {
|
|
385
133
|
primary: "#6e0b75",
|
|
386
|
-
"primary-focus": "#420746",
|
|
387
|
-
"primary-content": "#ffffff",
|
|
388
134
|
secondary: "#007ebd",
|
|
389
|
-
"secondary-focus": "#005c8a",
|
|
390
|
-
"secondary-content": "#ffffff",
|
|
391
135
|
accent: "#f8860d",
|
|
392
|
-
"accent-focus": "#cb6c06",
|
|
393
|
-
"accent-content": "#ffffff",
|
|
394
136
|
neutral: "#1f2937",
|
|
395
|
-
"neutral-focus": "#111827",
|
|
396
|
-
"neutral-content": "#ffffff",
|
|
397
137
|
"base-100": "#ffffff",
|
|
398
|
-
"base-200": "#f9fafb",
|
|
399
|
-
"base-300": "#d1d5db",
|
|
400
138
|
"base-content": "#1f2937",
|
|
401
|
-
info: "#e0f2fe",
|
|
402
|
-
"info-content": "#2563eb",
|
|
403
|
-
success: "#dcfce7",
|
|
404
|
-
"success-content": "#16a34a",
|
|
405
|
-
warning: "#fef3c7",
|
|
406
|
-
"warning-content": "#d97706",
|
|
407
|
-
error: "#fee2e2",
|
|
408
|
-
"error-content": "#dc2626",
|
|
409
|
-
"--border-color": "var(--b3)",
|
|
410
|
-
"--rounded-box": "1rem",
|
|
411
|
-
"--rounded-btn": "0.5rem",
|
|
412
|
-
"--rounded-badge": "1.9rem",
|
|
413
|
-
"--animation-btn": "0.25s",
|
|
414
|
-
"--animation-input": ".2s",
|
|
415
|
-
"--btn-text-case": "uppercase",
|
|
416
|
-
"--btn-focus-scale": "0.95",
|
|
417
|
-
"--navbar-padding": ".5rem",
|
|
418
|
-
"--border-btn": "1px",
|
|
419
|
-
"--tab-border": "1px",
|
|
420
|
-
"--tab-radius": "0.5rem",
|
|
421
139
|
},
|
|
422
140
|
"[data-theme=forest]": {
|
|
423
141
|
primary: "#1eb854",
|
|
424
|
-
"primary-focus": "#178c40",
|
|
425
|
-
"primary-content": "#ffffff",
|
|
426
142
|
secondary: "#1fd65f",
|
|
427
|
-
"secondary-focus": "#18aa4b",
|
|
428
|
-
"secondary-content": "#ffffff",
|
|
429
143
|
accent: "#d99330",
|
|
430
|
-
"accent-focus": "#b57721",
|
|
431
|
-
"accent-content": "#ffffff",
|
|
432
144
|
neutral: "#110e0e",
|
|
433
|
-
"neutral-focus": "#060404",
|
|
434
|
-
"neutral-content": "#ffffff",
|
|
435
145
|
"base-100": "#171212",
|
|
436
|
-
"base-200": "#110e0e",
|
|
437
|
-
"base-300": "#060404",
|
|
438
|
-
"base-content": "#ffffff",
|
|
439
|
-
info: "#2563eb",
|
|
440
|
-
"info-content": "#e0f2fe",
|
|
441
|
-
success: "#16a34a",
|
|
442
|
-
"success-content": "#dcfce7",
|
|
443
|
-
warning: "#d97706",
|
|
444
|
-
"warning-content": "#fef3c7",
|
|
445
|
-
error: "#dc2626",
|
|
446
|
-
"error-content": "#fee2e2",
|
|
447
146
|
"--rounded-btn": "1.9rem",
|
|
448
|
-
"--border-color": "var(--b3)",
|
|
449
|
-
"--rounded-box": "1rem",
|
|
450
|
-
"--rounded-btn": "0.5rem",
|
|
451
|
-
"--rounded-badge": "1.9rem",
|
|
452
|
-
"--animation-btn": "0.25s",
|
|
453
|
-
"--animation-input": ".2s",
|
|
454
|
-
"--btn-text-case": "uppercase",
|
|
455
|
-
"--btn-focus-scale": "0.95",
|
|
456
|
-
"--navbar-padding": ".5rem",
|
|
457
|
-
"--border-btn": "1px",
|
|
458
|
-
"--tab-border": "1px",
|
|
459
|
-
"--tab-radius": "0.5rem",
|
|
460
147
|
},
|
|
461
148
|
"[data-theme=garden]": {
|
|
462
149
|
primary: "#5c7f67",
|
|
463
|
-
"primary-focus": "#48614f",
|
|
464
|
-
"primary-content": "#ffffff",
|
|
465
150
|
secondary: "#ecf4e7",
|
|
466
|
-
"secondary-focus": "#cde2c1",
|
|
467
151
|
"secondary-content": "#24331a",
|
|
468
152
|
accent: "#fae5e5",
|
|
469
|
-
"accent-focus": "#f4bebe",
|
|
470
153
|
"accent-content": "#322020",
|
|
471
154
|
neutral: "#5d5656",
|
|
472
|
-
"neutral-focus": "#2a2727",
|
|
473
155
|
"neutral-content": "#e9e7e7",
|
|
474
156
|
"base-100": "#e9e7e7",
|
|
475
|
-
"base-200": "#d1cccc",
|
|
476
|
-
"base-300": "#b9b1b1",
|
|
477
157
|
"base-content": "#100f0f",
|
|
478
|
-
info: "#e0f2fe",
|
|
479
|
-
"info-content": "#2563eb",
|
|
480
|
-
success: "#dcfce7",
|
|
481
|
-
"success-content": "#16a34a",
|
|
482
|
-
warning: "#fef3c7",
|
|
483
|
-
"warning-content": "#d97706",
|
|
484
|
-
error: "#fee2e2",
|
|
485
|
-
"error-content": "#dc2626",
|
|
486
|
-
"--border-color": "var(--b3)",
|
|
487
|
-
"--rounded-box": "1rem",
|
|
488
|
-
"--rounded-btn": "0.5rem",
|
|
489
|
-
"--rounded-badge": "1.9rem",
|
|
490
|
-
"--animation-btn": "0.25s",
|
|
491
|
-
"--animation-input": ".2s",
|
|
492
|
-
"--btn-text-case": "uppercase",
|
|
493
|
-
"--btn-focus-scale": "0.95",
|
|
494
|
-
"--navbar-padding": ".5rem",
|
|
495
|
-
"--border-btn": "1px",
|
|
496
|
-
"--tab-border": "1px",
|
|
497
|
-
"--tab-radius": "0.5rem",
|
|
498
158
|
},
|
|
499
159
|
"[data-theme=halloween]": {
|
|
500
160
|
primary: "#f28c18",
|
|
501
|
-
"primary-focus": "#ca710c",
|
|
502
161
|
"primary-content": "#131616",
|
|
503
162
|
secondary: "#6d3a9c",
|
|
504
|
-
"secondary-focus": "#532c77",
|
|
505
|
-
"secondary-content": "#ffffff",
|
|
506
163
|
accent: "#51a800",
|
|
507
|
-
"accent-focus": "#397500",
|
|
508
|
-
"accent-content": "#ffffff",
|
|
509
164
|
neutral: "#1b1d1d",
|
|
510
|
-
"neutral-focus": "#131616",
|
|
511
|
-
"neutral-content": "#ffffff",
|
|
512
165
|
"base-100": "#212121",
|
|
513
|
-
"base-200": "#1b1d1d",
|
|
514
|
-
"base-300": "#131616",
|
|
515
|
-
"base-content": "#ffffff",
|
|
516
166
|
info: "#2563eb",
|
|
517
|
-
"info-content": "#e0f2fe",
|
|
518
167
|
success: "#16a34a",
|
|
519
|
-
"success-content": "#dcfce7",
|
|
520
168
|
warning: "#d97706",
|
|
521
|
-
"warning-content": "#fef3c7",
|
|
522
169
|
error: "#dc2626",
|
|
523
|
-
"error-content": "#fee2e2",
|
|
524
|
-
"--border-color": "var(--b3)",
|
|
525
|
-
"--rounded-box": "1rem",
|
|
526
|
-
"--rounded-btn": "0.5rem",
|
|
527
|
-
"--rounded-badge": "1.9rem",
|
|
528
|
-
"--animation-btn": "0.25s",
|
|
529
|
-
"--animation-input": ".2s",
|
|
530
|
-
"--btn-text-case": "uppercase",
|
|
531
|
-
"--btn-focus-scale": "0.95",
|
|
532
|
-
"--navbar-padding": ".5rem",
|
|
533
|
-
"--border-btn": "1px",
|
|
534
|
-
"--tab-border": "1px",
|
|
535
|
-
"--tab-radius": "0.5rem",
|
|
536
170
|
},
|
|
537
171
|
"[data-theme=light]": {
|
|
538
172
|
primary: "#570df8",
|
|
539
|
-
"primary-focus": "#4506cb",
|
|
540
173
|
"primary-content": "#ffffff",
|
|
541
174
|
secondary: "#f000b8",
|
|
542
|
-
"secondary-focus": "#bd0091",
|
|
543
175
|
"secondary-content": "#ffffff",
|
|
544
176
|
accent: "#37cdbe",
|
|
545
|
-
"accent-focus": "#2aa79b",
|
|
546
177
|
"accent-content": "#ffffff",
|
|
547
178
|
neutral: "#3d4451",
|
|
548
|
-
"neutral-focus": "#2a2e37",
|
|
549
179
|
"neutral-content": "#ffffff",
|
|
550
180
|
"base-100": "#ffffff",
|
|
551
181
|
"base-200": "#f9fafb",
|
|
552
182
|
"base-300": "#d1d5db",
|
|
553
183
|
"base-content": "#1f2937",
|
|
554
|
-
info: "#e0f2fe",
|
|
555
|
-
"info-content": "#2563eb",
|
|
556
|
-
success: "#dcfce7",
|
|
557
|
-
"success-content": "#16a34a",
|
|
558
|
-
warning: "#fef3c7",
|
|
559
|
-
"warning-content": "#d97706",
|
|
560
|
-
error: "#fee2e2",
|
|
561
|
-
"error-content": "#dc2626",
|
|
562
|
-
"--border-color": "var(--b3)",
|
|
563
|
-
"--rounded-box": "1rem",
|
|
564
|
-
"--rounded-btn": "0.5rem",
|
|
565
|
-
"--rounded-badge": "1.9rem",
|
|
566
|
-
"--animation-btn": "0.25s",
|
|
567
|
-
"--animation-input": ".2s",
|
|
568
|
-
"--btn-text-case": "uppercase",
|
|
569
|
-
"--btn-focus-scale": "0.95",
|
|
570
|
-
"--navbar-padding": ".5rem",
|
|
571
|
-
"--border-btn": "1px",
|
|
572
|
-
"--tab-border": "1px",
|
|
573
|
-
"--tab-radius": "0.5rem",
|
|
574
184
|
},
|
|
575
185
|
"[data-theme=lofi]": {
|
|
576
186
|
primary: "#808080",
|
|
577
|
-
"primary-focus": "#737373",
|
|
578
187
|
"primary-content": "#f2f2f3",
|
|
579
188
|
secondary: "#4d4d4d",
|
|
580
|
-
"secondary-focus": "#404040",
|
|
581
189
|
"secondary-content": "#f2f2f3",
|
|
582
190
|
accent: "#1a1a1a",
|
|
583
|
-
"accent-focus": "#0d0d0d",
|
|
584
191
|
"accent-content": "#f2f2f3",
|
|
585
192
|
neutral: "#f2f2f3",
|
|
586
|
-
"neutral-focus": "#e4e4e7",
|
|
587
193
|
"neutral-content": "#4d4d4d",
|
|
588
194
|
"base-100": "#ffffff",
|
|
589
195
|
"base-200": "#ffffff",
|
|
590
196
|
"base-300": "#ffffff",
|
|
591
197
|
"base-content": "#7d7d7d",
|
|
592
|
-
info: "#
|
|
593
|
-
"
|
|
594
|
-
|
|
595
|
-
"
|
|
596
|
-
warning: "#fef3c7",
|
|
597
|
-
"warning-content": "#d97706",
|
|
598
|
-
error: "#fee2e2",
|
|
599
|
-
"error-content": "#dc2626",
|
|
600
|
-
"--border-color": "#e6e6e6",
|
|
198
|
+
"info": "#2563eb",
|
|
199
|
+
"success": "#16a34a",
|
|
200
|
+
"warning": "#d97706",
|
|
201
|
+
"error": "#dc2626",
|
|
601
202
|
"--rounded-box": "0",
|
|
602
203
|
"--rounded-btn": "0",
|
|
603
204
|
"--rounded-badge": "0",
|
|
604
205
|
"--animation-btn": "0",
|
|
605
206
|
"--animation-input": "0",
|
|
606
|
-
"--btn-text-case": "uppercase",
|
|
607
207
|
"--btn-focus-scale": "1",
|
|
608
|
-
"--navbar-padding": ".5rem",
|
|
609
|
-
"--border-btn": "1px",
|
|
610
|
-
"--tab-border": "1px",
|
|
611
208
|
"--tab-radius": "0",
|
|
612
|
-
"*:where(.btn)": {
|
|
613
|
-
"border-color": "var(--border-color) !important",
|
|
614
|
-
"--tw-border-opacity": "1 !important",
|
|
615
|
-
"--tw-text-opacity": "1 !important",
|
|
616
|
-
"--tw-shadow": "0 0 0 1px var(--border-color) !important",
|
|
617
|
-
},
|
|
618
|
-
"*:where(.mockup-code)": {
|
|
619
|
-
"border-color": "var(--border-color) !important",
|
|
620
|
-
"--tw-border-opacity": "1 !important",
|
|
621
|
-
"--tw-text-opacity": "1 !important",
|
|
622
|
-
"--tw-shadow": "0 0 0 1px var(--border-color) !important",
|
|
623
|
-
},
|
|
624
|
-
"*:where(.mockup-window)": {
|
|
625
|
-
"border-color": "var(--border-color) !important",
|
|
626
|
-
"--tw-border-opacity": "1 !important",
|
|
627
|
-
"--tw-text-opacity": "1 !important",
|
|
628
|
-
"--tw-shadow": "0 0 0 1px var(--border-color) !important",
|
|
629
|
-
},
|
|
630
|
-
"*:where(.badge)": {
|
|
631
|
-
"border-color": "var(--border-color) !important",
|
|
632
|
-
"--tw-border-opacity": "1 !important",
|
|
633
|
-
"--tw-text-opacity": "1 !important",
|
|
634
|
-
"--tw-shadow": "0 0 0 1px var(--border-color) !important",
|
|
635
|
-
},
|
|
636
|
-
"*:where(.card)": {
|
|
637
|
-
"border-color": "var(--border-color) !important",
|
|
638
|
-
"--tw-border-opacity": "1 !important",
|
|
639
|
-
"--tw-text-opacity": "1 !important",
|
|
640
|
-
"--tw-shadow": "0 0 0 1px var(--border-color) !important",
|
|
641
|
-
},
|
|
642
209
|
},
|
|
643
210
|
"[data-theme=luxury]": {
|
|
644
211
|
primary: "#ffffff",
|
|
645
|
-
"primary-focus": "#e6e6e6",
|
|
646
|
-
"primary-content": "#000000",
|
|
647
212
|
secondary: "#152747",
|
|
648
|
-
"secondary-focus": "#091120",
|
|
649
|
-
"secondary-content": "#ffffff",
|
|
650
213
|
accent: "#513448",
|
|
651
|
-
"accent-focus": "#32202c",
|
|
652
|
-
"accent-content": "#ffffff",
|
|
653
214
|
neutral: "#171618",
|
|
654
|
-
"neutral-focus": "#2e2d2f",
|
|
655
215
|
"neutral-content": "#dca54c",
|
|
656
216
|
"base-100": "#09090b",
|
|
657
217
|
"base-200": "#171618",
|
|
658
218
|
"base-300": "#2e2d2f",
|
|
659
219
|
"base-content": "#dca54c",
|
|
660
220
|
info: "#66c6ff",
|
|
661
|
-
"info-content": "#171618",
|
|
662
221
|
success: "#87d039",
|
|
663
|
-
"success-content": "#171618",
|
|
664
222
|
warning: "#e2d562",
|
|
665
|
-
"warning-content": "#171618",
|
|
666
223
|
error: "#ff6f6f",
|
|
667
|
-
"error-content": "#171618",
|
|
668
|
-
"--border-color": "var(--b3)",
|
|
669
|
-
"--rounded-box": "1rem",
|
|
670
|
-
"--rounded-btn": "0.5rem",
|
|
671
|
-
"--rounded-badge": "1.9rem",
|
|
672
|
-
"--animation-btn": "0.25s",
|
|
673
|
-
"--animation-input": ".2s",
|
|
674
|
-
"--btn-text-case": "uppercase",
|
|
675
|
-
"--btn-focus-scale": "0.95",
|
|
676
|
-
"--navbar-padding": ".5rem",
|
|
677
|
-
"--border-btn": "1px",
|
|
678
|
-
"--tab-border": "1px",
|
|
679
|
-
"--tab-radius": "0.5rem",
|
|
680
224
|
},
|
|
681
225
|
"[data-theme=pastel]": {
|
|
682
226
|
primary: "#d1c1d7",
|
|
683
|
-
"primary-focus": "#b9a2c3",
|
|
684
|
-
"primary-content": "#000000",
|
|
685
227
|
secondary: "#f6cbd1",
|
|
686
|
-
"secondary-focus": "#eea0aa",
|
|
687
|
-
"secondary-content": "#ffffff",
|
|
688
228
|
accent: "#b4e9d6",
|
|
689
|
-
"accent-focus": "#8cdec0",
|
|
690
|
-
"accent-content": "#ffffff",
|
|
691
229
|
neutral: "#70acc7",
|
|
692
|
-
"neutral-focus": "#4b96b9",
|
|
693
|
-
"neutral-content": "#ffffff",
|
|
694
230
|
"base-100": "#ffffff",
|
|
695
231
|
"base-200": "#f9fafb",
|
|
696
232
|
"base-300": "#d1d5db",
|
|
697
|
-
"base-content": "#898d90",
|
|
698
|
-
info: "#e0f2fe",
|
|
699
|
-
"info-content": "#2563eb",
|
|
700
|
-
success: "#dcfce7",
|
|
701
|
-
"success-content": "#16a34a",
|
|
702
|
-
warning: "#fef3c7",
|
|
703
|
-
"warning-content": "#d97706",
|
|
704
|
-
error: "#fee2e2",
|
|
705
|
-
"error-content": "#dc2626",
|
|
706
|
-
"--rounded-box": "1rem",
|
|
707
233
|
"--rounded-btn": "1.9rem",
|
|
708
|
-
"--rounded-badge": "1.9rem",
|
|
709
|
-
"--border-color": "var(--b3)",
|
|
710
|
-
"--rounded-box": "1rem",
|
|
711
234
|
"--rounded-btn": "1.9rem",
|
|
712
|
-
"--rounded-badge": "1.9rem",
|
|
713
|
-
"--animation-btn": "0.25s",
|
|
714
|
-
"--animation-input": ".2s",
|
|
715
|
-
"--btn-text-case": "uppercase",
|
|
716
|
-
"--btn-focus-scale": "0.95",
|
|
717
|
-
"--navbar-padding": ".5rem",
|
|
718
|
-
"--border-btn": "1px",
|
|
719
|
-
"--tab-border": "1px",
|
|
720
|
-
"--tab-radius": "0.5rem",
|
|
721
235
|
},
|
|
722
236
|
"[data-theme=retro]": {
|
|
723
|
-
fontFamily: "uisecondaryerif,Georgia,Cambria,Times New Roman,Times,serif",
|
|
724
237
|
primary: "#ef9995",
|
|
725
|
-
"primary-focus": "#e86f68",
|
|
726
238
|
"primary-content": "#282425",
|
|
727
239
|
secondary: "#a4cbb4",
|
|
728
|
-
"secondary-focus": "#84b89a",
|
|
729
240
|
"secondary-content": "#282425",
|
|
730
241
|
accent: "#ebdc99",
|
|
731
|
-
"accent-focus": "#e2cd6e",
|
|
732
242
|
"accent-content": "#282425",
|
|
733
243
|
neutral: "#7d7259",
|
|
734
|
-
"neutral-focus": "#454035",
|
|
735
244
|
"neutral-content": "#e4d8b4",
|
|
736
245
|
"base-100": "#e4d8b4",
|
|
737
246
|
"base-200": "#d2c59d",
|
|
738
247
|
"base-300": "#c6b386",
|
|
739
248
|
"base-content": "#282425",
|
|
740
|
-
info: "#
|
|
741
|
-
"
|
|
742
|
-
|
|
743
|
-
"
|
|
744
|
-
warning: "#fef3c7",
|
|
745
|
-
"warning-content": "#d97706",
|
|
746
|
-
error: "#fee2e2",
|
|
747
|
-
"error-content": "#dc2626",
|
|
748
|
-
"--border-color": "var(--b3)",
|
|
249
|
+
"info": "#2563eb",
|
|
250
|
+
"success": "#16a34a",
|
|
251
|
+
"warning": "#d97706",
|
|
252
|
+
"error": "#dc2626",
|
|
749
253
|
"--rounded-box": "0.4rem",
|
|
750
254
|
"--rounded-btn": "0.4rem",
|
|
751
255
|
"--rounded-badge": "0.4rem",
|
|
752
|
-
"--animation-btn": "0.25s",
|
|
753
|
-
"--animation-input": ".2s",
|
|
754
|
-
"--btn-text-case": "uppercase",
|
|
755
|
-
"--btn-focus-scale": "0.95",
|
|
756
|
-
"--navbar-padding": ".5rem",
|
|
757
|
-
"--border-btn": "1px",
|
|
758
|
-
"--tab-border": "1px",
|
|
759
|
-
"--tab-radius": "0.5rem",
|
|
760
256
|
},
|
|
761
257
|
"[data-theme=synthwave]": {
|
|
762
258
|
primary: "#e779c1",
|
|
763
|
-
"primary-focus": "#e04dac",
|
|
764
|
-
"primary-content": "#201047",
|
|
765
|
-
"secondary-focus": "#88d7f7",
|
|
766
259
|
secondary: "#58c7f3",
|
|
767
|
-
"secondary-content": "#201047",
|
|
768
|
-
"accent-focus": "#f6d860",
|
|
769
260
|
accent: "#f3cc30",
|
|
770
|
-
"accent-content": "#201047",
|
|
771
261
|
neutral: "#20134e",
|
|
772
|
-
"neutral-focus": "#140a2e",
|
|
773
262
|
"neutral-content": "#f9f7fd",
|
|
774
263
|
"base-100": "#2d1b69",
|
|
775
|
-
"base-200": "#20134e",
|
|
776
|
-
"base-300": "#140a2e",
|
|
777
264
|
"base-content": "#f9f7fd",
|
|
778
265
|
info: "#53c0f3",
|
|
779
266
|
"info-content": "#201047",
|
|
@@ -783,100 +270,87 @@ module.exports = {
|
|
|
783
270
|
"warning-content": "#201047",
|
|
784
271
|
error: "#e24056",
|
|
785
272
|
"error-content": "#f9f7fd",
|
|
786
|
-
"--border-color": "var(--b3)",
|
|
787
|
-
"--rounded-box": "1rem",
|
|
788
|
-
"--rounded-btn": "0.5rem",
|
|
789
|
-
"--rounded-badge": "1.9rem",
|
|
790
|
-
"--animation-btn": "0.25s",
|
|
791
|
-
"--animation-input": ".2s",
|
|
792
|
-
"--btn-text-case": "uppercase",
|
|
793
|
-
"--btn-focus-scale": "0.95",
|
|
794
|
-
"--navbar-padding": ".5rem",
|
|
795
|
-
"--border-btn": "1px",
|
|
796
|
-
"--tab-border": "1px",
|
|
797
|
-
"--tab-radius": "0.5rem",
|
|
798
273
|
},
|
|
799
274
|
"[data-theme=valentine]": {
|
|
800
275
|
primary: "#e96d7b",
|
|
801
|
-
"primary-focus": "#e24053",
|
|
802
|
-
"primary-content": "#ffffff",
|
|
803
276
|
secondary: "#a991f7",
|
|
804
|
-
"secondary-focus": "#8462f4",
|
|
805
|
-
"secondary-content": "#ffffff",
|
|
806
277
|
accent: "#88dbdd",
|
|
807
|
-
"accent-focus": "#61cfd1",
|
|
808
|
-
"accent-content": "#ffffff",
|
|
809
278
|
neutral: "#af4670",
|
|
810
|
-
"neutral-focus": "#883a54",
|
|
811
279
|
"neutral-content": "#f0d6e8",
|
|
812
280
|
"base-100": "#f0d6e8",
|
|
813
|
-
"base-200": "#e9aad9",
|
|
814
|
-
"base-300": "#e58fce",
|
|
815
281
|
"base-content": "#632c3b",
|
|
816
|
-
info: "#
|
|
817
|
-
"
|
|
818
|
-
|
|
819
|
-
"
|
|
820
|
-
warning: "#fef3c7",
|
|
821
|
-
"warning-content": "#d97706",
|
|
822
|
-
error: "#fee2e2",
|
|
823
|
-
"error-content": "#dc2626",
|
|
824
|
-
"--border-color": "var(--b3)",
|
|
825
|
-
"--rounded-box": "1rem",
|
|
282
|
+
"info": "#2563eb",
|
|
283
|
+
"success": "#16a34a",
|
|
284
|
+
"warning": "#d97706",
|
|
285
|
+
"error": "#dc2626",
|
|
826
286
|
"--rounded-btn": "1.9rem",
|
|
827
|
-
"--rounded-badge": "1.9rem",
|
|
828
|
-
"--animation-btn": "0.25s",
|
|
829
|
-
"--animation-input": ".2s",
|
|
830
|
-
"--btn-text-case": "uppercase",
|
|
831
|
-
"--btn-focus-scale": "0.95",
|
|
832
|
-
"--navbar-padding": ".5rem",
|
|
833
|
-
"--border-btn": "1px",
|
|
834
|
-
"--tab-border": "1px",
|
|
835
|
-
"--tab-radius": "0.5rem",
|
|
836
287
|
},
|
|
837
288
|
"[data-theme=wireframe]": {
|
|
838
289
|
fontFamily: 'Chalkboard,comic sans ms,"sanssecondaryerif"',
|
|
839
290
|
primary: "#b8b8b8",
|
|
840
|
-
"primary-focus": "#b8b8b8",
|
|
841
|
-
"primary-content": "#000000",
|
|
842
291
|
secondary: "#b8b8b8",
|
|
843
|
-
"secondary-focus": "#b8b8b8",
|
|
844
|
-
"secondary-content": "#000000",
|
|
845
292
|
accent: "#b8b8b8",
|
|
846
|
-
"accent-focus": "#b8b8b8",
|
|
847
|
-
"accent-content": "#000000",
|
|
848
293
|
neutral: "#ebebeb",
|
|
849
|
-
"neutral-focus": "#ebebeb",
|
|
850
|
-
"neutral-content": "#000000",
|
|
851
294
|
"base-100": "#ffffff",
|
|
852
295
|
"base-200": "#eeeeee",
|
|
853
296
|
"base-300": "#dddddd",
|
|
854
|
-
"base-content": "#000000",
|
|
855
297
|
info: "#0000ff",
|
|
856
|
-
"info-content": "#ffffff",
|
|
857
298
|
success: "#008000",
|
|
858
|
-
"success-content": "#ffffff",
|
|
859
299
|
warning: "#a6a659",
|
|
860
|
-
"warning-content": "#ffffff",
|
|
861
300
|
error: "#ff0000",
|
|
862
|
-
"error-content": "#ffffff",
|
|
863
|
-
"--border-color": "#000000",
|
|
864
301
|
"--rounded-box": "0.2rem",
|
|
865
302
|
"--rounded-btn": "0.2rem",
|
|
866
303
|
"--rounded-badge": "0.2rem",
|
|
867
|
-
"--animation-btn": "0.25s",
|
|
868
|
-
"--animation-input": ".2s",
|
|
869
|
-
"--btn-text-case": "uppercase",
|
|
870
|
-
"--btn-focus-scale": "0.95",
|
|
871
|
-
"--navbar-padding": ".5rem",
|
|
872
|
-
"--border-btn": "1px",
|
|
873
|
-
"--tab-border": "1px",
|
|
874
304
|
"--tab-radius": "0.2rem",
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
305
|
+
},
|
|
306
|
+
"[data-theme=autumn]": {
|
|
307
|
+
primary: "#8C0327",
|
|
308
|
+
secondary: "#D85251",
|
|
309
|
+
accent: "#D59B6A",
|
|
310
|
+
neutral: "#826A5C",
|
|
311
|
+
"base-100": "#f1f1f1",
|
|
312
|
+
info: "#42ADBB",
|
|
313
|
+
success: "#499380",
|
|
314
|
+
warning: "#E97F14",
|
|
315
|
+
error: "#DF1A2F",
|
|
316
|
+
},
|
|
317
|
+
"[data-theme=business]": {
|
|
318
|
+
primary: "#1C4E80",
|
|
319
|
+
secondary: "#7C909A",
|
|
320
|
+
accent: "#EA6947",
|
|
321
|
+
neutral: "#23282E",
|
|
322
|
+
"base-100": "#202020",
|
|
323
|
+
info: "#0091D5",
|
|
324
|
+
success: "#6BB187",
|
|
325
|
+
warning: "#DBAE59",
|
|
326
|
+
error: "#AC3E31",
|
|
327
|
+
"--rounded-box": "0.25rem",
|
|
328
|
+
"--rounded-btn": ".125rem",
|
|
329
|
+
"--rounded-badge": ".125rem",
|
|
330
|
+
},
|
|
331
|
+
"[data-theme=acid]": {
|
|
332
|
+
primary: "#FF00F4",
|
|
333
|
+
secondary: "#FF7400",
|
|
334
|
+
accent: "#CBFD03",
|
|
335
|
+
neutral: "#191A3F",
|
|
336
|
+
"base-100": "#fafafa",
|
|
337
|
+
info: "#3194F6",
|
|
338
|
+
success: "#5FC992",
|
|
339
|
+
warning: "#F7DE2D",
|
|
340
|
+
error: "#E60300",
|
|
341
|
+
"--rounded-box": "1.25rem",
|
|
342
|
+
"--rounded-btn": "1rem",
|
|
343
|
+
"--rounded-badge": "1rem",
|
|
344
|
+
},
|
|
345
|
+
"[data-theme=lemonade]": {
|
|
346
|
+
primary: "#519903",
|
|
347
|
+
secondary: "#E9E92E",
|
|
348
|
+
accent: "#F7F9CA",
|
|
349
|
+
neutral: "#191A3F",
|
|
350
|
+
"base-100": "#ffffff",
|
|
351
|
+
info: "#C8E1E7",
|
|
352
|
+
success: "#DEF29F",
|
|
353
|
+
warning: "#F7E589",
|
|
354
|
+
error: "#F2B6B5",
|
|
881
355
|
},
|
|
882
356
|
};
|