daisyui 2.36.1 → 2.38.0
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 +1 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +42 -14
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +62 -31
- package/dist/unstyled.css +5 -5
- 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 -1
- package/src/colors/functions.js +3 -0
- package/src/colors/themes.js +29 -0
package/src/colors/themes.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
"[data-theme=aqua]": {
|
|
3
|
+
"color-scheme": "dark",
|
|
3
4
|
primary: "#09ecf3",
|
|
4
5
|
"primary-content": "#005355",
|
|
5
6
|
secondary: "#966fb3",
|
|
@@ -12,6 +13,7 @@ module.exports = {
|
|
|
12
13
|
"error": "#dc2626",
|
|
13
14
|
},
|
|
14
15
|
"[data-theme=black]": {
|
|
16
|
+
"color-scheme": "dark",
|
|
15
17
|
primary: "#343232",
|
|
16
18
|
secondary: "#343232",
|
|
17
19
|
accent: "#343232",
|
|
@@ -34,6 +36,7 @@ module.exports = {
|
|
|
34
36
|
"--tab-radius": "0",
|
|
35
37
|
},
|
|
36
38
|
"[data-theme=bumblebee]": {
|
|
39
|
+
"color-scheme": "light",
|
|
37
40
|
primary: "#e0a82e",
|
|
38
41
|
"primary-content": "#181830",
|
|
39
42
|
secondary: "#f9d72f",
|
|
@@ -43,6 +46,7 @@ module.exports = {
|
|
|
43
46
|
"base-100": "#ffffff",
|
|
44
47
|
},
|
|
45
48
|
"[data-theme=cmyk]": {
|
|
49
|
+
"color-scheme": "light",
|
|
46
50
|
primary: "#45AEEE",
|
|
47
51
|
secondary: "#E8488A",
|
|
48
52
|
accent: "#FFF232",
|
|
@@ -54,6 +58,7 @@ module.exports = {
|
|
|
54
58
|
error: "#E93F33",
|
|
55
59
|
},
|
|
56
60
|
"[data-theme=corporate]": {
|
|
61
|
+
"color-scheme": "light",
|
|
57
62
|
primary: "#4b6bfb",
|
|
58
63
|
secondary: "#7b92b2",
|
|
59
64
|
accent: "#67cba0",
|
|
@@ -69,6 +74,7 @@ module.exports = {
|
|
|
69
74
|
"--btn-focus-scale": "1",
|
|
70
75
|
},
|
|
71
76
|
"[data-theme=cupcake]": {
|
|
77
|
+
"color-scheme": "light",
|
|
72
78
|
primary: "#65c3c8",
|
|
73
79
|
secondary: "#ef9fbc",
|
|
74
80
|
accent: "#eeaf3a",
|
|
@@ -82,6 +88,7 @@ module.exports = {
|
|
|
82
88
|
"--tab-radius": ".5rem",
|
|
83
89
|
},
|
|
84
90
|
"[data-theme=cyberpunk]": {
|
|
91
|
+
"color-scheme": "light",
|
|
85
92
|
fontFamily: "ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace",
|
|
86
93
|
primary: "#ff7598",
|
|
87
94
|
secondary: "#75d1f0",
|
|
@@ -95,6 +102,7 @@ module.exports = {
|
|
|
95
102
|
"--tab-radius": "0",
|
|
96
103
|
},
|
|
97
104
|
"[data-theme=dark]": {
|
|
105
|
+
"color-scheme": "dark",
|
|
98
106
|
primary: "#661AE6",
|
|
99
107
|
"primary-content": "#ffffff",
|
|
100
108
|
secondary: "#D926AA",
|
|
@@ -110,6 +118,7 @@ module.exports = {
|
|
|
110
118
|
"base-content": "#A6ADBB",
|
|
111
119
|
},
|
|
112
120
|
"[data-theme=dracula]": {
|
|
121
|
+
"color-scheme": "dark",
|
|
113
122
|
primary: "#ff79c6",
|
|
114
123
|
secondary: "#bd93f9",
|
|
115
124
|
accent: "#ffb86c",
|
|
@@ -122,6 +131,7 @@ module.exports = {
|
|
|
122
131
|
error: "#ff5555",
|
|
123
132
|
},
|
|
124
133
|
"[data-theme=emerald]": {
|
|
134
|
+
"color-scheme": "light",
|
|
125
135
|
primary: "#66cc8a",
|
|
126
136
|
"primary-content": "#223D30",
|
|
127
137
|
secondary: "#377cfb",
|
|
@@ -137,6 +147,7 @@ module.exports = {
|
|
|
137
147
|
"--btn-focus-scale": "1",
|
|
138
148
|
},
|
|
139
149
|
"[data-theme=fantasy]": {
|
|
150
|
+
"color-scheme": "light",
|
|
140
151
|
primary: "#6e0b75",
|
|
141
152
|
secondary: "#007ebd",
|
|
142
153
|
accent: "#f8860d",
|
|
@@ -145,6 +156,7 @@ module.exports = {
|
|
|
145
156
|
"base-content": "#1f2937",
|
|
146
157
|
},
|
|
147
158
|
"[data-theme=forest]": {
|
|
159
|
+
"color-scheme": "dark",
|
|
148
160
|
primary: "#1eb854",
|
|
149
161
|
"primary-content": "#c2ffd7",
|
|
150
162
|
secondary: "#1fd65f",
|
|
@@ -154,6 +166,7 @@ module.exports = {
|
|
|
154
166
|
"--rounded-btn": "1.9rem",
|
|
155
167
|
},
|
|
156
168
|
"[data-theme=garden]": {
|
|
169
|
+
"color-scheme": "light",
|
|
157
170
|
primary: "#5c7f67",
|
|
158
171
|
secondary: "#ecf4e7",
|
|
159
172
|
"secondary-content": "#24331a",
|
|
@@ -165,6 +178,7 @@ module.exports = {
|
|
|
165
178
|
"base-content": "#100f0f",
|
|
166
179
|
},
|
|
167
180
|
"[data-theme=halloween]": {
|
|
181
|
+
"color-scheme": "dark",
|
|
168
182
|
primary: "#f28c18",
|
|
169
183
|
"primary-content": "#131616",
|
|
170
184
|
secondary: "#6d3a9c",
|
|
@@ -177,6 +191,7 @@ module.exports = {
|
|
|
177
191
|
error: "#dc2626",
|
|
178
192
|
},
|
|
179
193
|
"[data-theme=light]": {
|
|
194
|
+
"color-scheme": "light",
|
|
180
195
|
primary: "#570df8",
|
|
181
196
|
"primary-content": "#ffffff",
|
|
182
197
|
secondary: "#f000b8",
|
|
@@ -191,6 +206,7 @@ module.exports = {
|
|
|
191
206
|
"base-content": "#1f2937",
|
|
192
207
|
},
|
|
193
208
|
"[data-theme=lofi]": {
|
|
209
|
+
"color-scheme": "light",
|
|
194
210
|
"primary": "#0D0D0D",
|
|
195
211
|
"primary-content": "#ffffff",
|
|
196
212
|
"secondary": "#1A1919",
|
|
@@ -220,6 +236,7 @@ module.exports = {
|
|
|
220
236
|
"--tab-radius": "0",
|
|
221
237
|
},
|
|
222
238
|
"[data-theme=luxury]": {
|
|
239
|
+
"color-scheme": "dark",
|
|
223
240
|
primary: "#ffffff",
|
|
224
241
|
secondary: "#152747",
|
|
225
242
|
accent: "#513448",
|
|
@@ -235,6 +252,7 @@ module.exports = {
|
|
|
235
252
|
error: "#ff6f6f",
|
|
236
253
|
},
|
|
237
254
|
"[data-theme=pastel]": {
|
|
255
|
+
"color-scheme": "light",
|
|
238
256
|
primary: "#d1c1d7",
|
|
239
257
|
secondary: "#f6cbd1",
|
|
240
258
|
accent: "#b4e9d6",
|
|
@@ -245,6 +263,7 @@ module.exports = {
|
|
|
245
263
|
"--rounded-btn": "1.9rem",
|
|
246
264
|
},
|
|
247
265
|
"[data-theme=retro]": {
|
|
266
|
+
"color-scheme": "light",
|
|
248
267
|
primary: "#ef9995",
|
|
249
268
|
"primary-content": "#282425",
|
|
250
269
|
secondary: "#a4cbb4",
|
|
@@ -266,6 +285,7 @@ module.exports = {
|
|
|
266
285
|
"--rounded-badge": "0.4rem",
|
|
267
286
|
},
|
|
268
287
|
"[data-theme=synthwave]": {
|
|
288
|
+
"color-scheme": "dark",
|
|
269
289
|
primary: "#e779c1",
|
|
270
290
|
secondary: "#58c7f3",
|
|
271
291
|
accent: "#f3cc30",
|
|
@@ -283,6 +303,7 @@ module.exports = {
|
|
|
283
303
|
"error-content": "#f9f7fd",
|
|
284
304
|
},
|
|
285
305
|
"[data-theme=valentine]": {
|
|
306
|
+
"color-scheme": "light",
|
|
286
307
|
primary: "#e96d7b",
|
|
287
308
|
secondary: "#a991f7",
|
|
288
309
|
accent: "#88dbdd",
|
|
@@ -297,6 +318,7 @@ module.exports = {
|
|
|
297
318
|
"--rounded-btn": "1.9rem",
|
|
298
319
|
},
|
|
299
320
|
"[data-theme=wireframe]": {
|
|
321
|
+
"color-scheme": "light",
|
|
300
322
|
fontFamily: 'Chalkboard,comic sans ms,"sanssecondaryerif"',
|
|
301
323
|
primary: "#b8b8b8",
|
|
302
324
|
secondary: "#b8b8b8",
|
|
@@ -315,6 +337,7 @@ module.exports = {
|
|
|
315
337
|
"--tab-radius": "0.2rem",
|
|
316
338
|
},
|
|
317
339
|
"[data-theme=autumn]": {
|
|
340
|
+
"color-scheme": "light",
|
|
318
341
|
primary: "#8C0327",
|
|
319
342
|
secondary: "#D85251",
|
|
320
343
|
accent: "#D59B6A",
|
|
@@ -326,6 +349,7 @@ module.exports = {
|
|
|
326
349
|
error: "#DF1A2F",
|
|
327
350
|
},
|
|
328
351
|
"[data-theme=business]": {
|
|
352
|
+
"color-scheme": "dark",
|
|
329
353
|
primary: "#1C4E80",
|
|
330
354
|
secondary: "#7C909A",
|
|
331
355
|
accent: "#EA6947",
|
|
@@ -340,6 +364,7 @@ module.exports = {
|
|
|
340
364
|
"--rounded-badge": ".125rem",
|
|
341
365
|
},
|
|
342
366
|
"[data-theme=acid]": {
|
|
367
|
+
"color-scheme": "light",
|
|
343
368
|
primary: "#FF00F4",
|
|
344
369
|
secondary: "#FF7400",
|
|
345
370
|
accent: "#CBFD03",
|
|
@@ -354,6 +379,7 @@ module.exports = {
|
|
|
354
379
|
"--rounded-badge": "1rem",
|
|
355
380
|
},
|
|
356
381
|
"[data-theme=lemonade]": {
|
|
382
|
+
"color-scheme": "light",
|
|
357
383
|
primary: "#519903",
|
|
358
384
|
secondary: "#E9E92E",
|
|
359
385
|
accent: "#F7F9CA",
|
|
@@ -365,6 +391,7 @@ module.exports = {
|
|
|
365
391
|
error: "#F2B6B5",
|
|
366
392
|
},
|
|
367
393
|
"[data-theme=night]": {
|
|
394
|
+
"color-scheme": "dark",
|
|
368
395
|
"primary": "#38bdf8",
|
|
369
396
|
"secondary": "#818CF8",
|
|
370
397
|
"accent": "#F471B5",
|
|
@@ -377,6 +404,7 @@ module.exports = {
|
|
|
377
404
|
"error": "#FB7085",
|
|
378
405
|
},
|
|
379
406
|
"[data-theme=coffee]": {
|
|
407
|
+
"color-scheme": "dark",
|
|
380
408
|
"primary": "#DB924B",
|
|
381
409
|
"secondary": "#263E3F",
|
|
382
410
|
"accent": "#10576D",
|
|
@@ -389,6 +417,7 @@ module.exports = {
|
|
|
389
417
|
"error": "#FC9581",
|
|
390
418
|
},
|
|
391
419
|
"[data-theme=winter]": {
|
|
420
|
+
"color-scheme": "light",
|
|
392
421
|
"primary": "#047AFF",
|
|
393
422
|
"secondary": "#463AA2",
|
|
394
423
|
"accent": "#C148AC",
|