daisyui 2.5.0 → 2.6.2
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 +19 -31
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +134 -26
- package/dist/unstyled.css +2 -2
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
- package/src/colors/functions.js +3 -0
- package/src/colors/themes.js +60 -18
package/src/colors/themes.js
CHANGED
|
@@ -189,25 +189,29 @@ module.exports = {
|
|
|
189
189
|
"base-content": "#1f2937",
|
|
190
190
|
},
|
|
191
191
|
"[data-theme=lofi]": {
|
|
192
|
-
primary: "#
|
|
193
|
-
"primary-content": "#
|
|
194
|
-
secondary: "#
|
|
195
|
-
"secondary-content": "#
|
|
196
|
-
accent: "#
|
|
197
|
-
"accent-content": "#
|
|
198
|
-
neutral: "#
|
|
199
|
-
"neutral-content": "#
|
|
192
|
+
"primary": "#0D0D0D",
|
|
193
|
+
"primary-content": "#ffffff",
|
|
194
|
+
"secondary": "#1A1919",
|
|
195
|
+
"secondary-content": "#ffffff",
|
|
196
|
+
"accent": "#262626",
|
|
197
|
+
"accent-content": "#ffffff",
|
|
198
|
+
"neutral": "#000000",
|
|
199
|
+
"neutral-content": "#ffffff",
|
|
200
200
|
"base-100": "#ffffff",
|
|
201
|
-
"base-200": "#
|
|
202
|
-
"base-300": "#
|
|
203
|
-
"base-content": "#
|
|
204
|
-
"info": "#
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
201
|
+
"base-200": "#F2F2F2",
|
|
202
|
+
"base-300": "#E6E5E5",
|
|
203
|
+
"base-content": "#000000",
|
|
204
|
+
"info": "#0070F3",
|
|
205
|
+
"info-content": "#ffffff",
|
|
206
|
+
"success": "#21CC51",
|
|
207
|
+
"success-content": "#ffffff",
|
|
208
|
+
"warning": "#FF6154",
|
|
209
|
+
"warning-content": "#ffffff",
|
|
210
|
+
"error": "#DE1C8D",
|
|
211
|
+
"error-content": "#ffffff",
|
|
212
|
+
"--rounded-box": "0.25rem",
|
|
213
|
+
"--rounded-btn": "0.125rem",
|
|
214
|
+
"--rounded-badge": "0.125rem",
|
|
211
215
|
"--animation-btn": "0",
|
|
212
216
|
"--animation-input": "0",
|
|
213
217
|
"--btn-focus-scale": "1",
|
|
@@ -359,4 +363,42 @@ module.exports = {
|
|
|
359
363
|
warning: "#F7E589",
|
|
360
364
|
error: "#F2B6B5",
|
|
361
365
|
},
|
|
366
|
+
"[data-theme=night]": {
|
|
367
|
+
"primary": "#38bdf8",
|
|
368
|
+
"secondary": "#818CF8",
|
|
369
|
+
"accent": "#F471B5",
|
|
370
|
+
"neutral": "#1E293B",
|
|
371
|
+
"neutral-focus": "#273449",
|
|
372
|
+
"base-100": "#0F172A",
|
|
373
|
+
"info": "#0CA5E9",
|
|
374
|
+
"success": "#2DD4BF",
|
|
375
|
+
"warning": "#F4BF50",
|
|
376
|
+
"error": "#FB7085",
|
|
377
|
+
},
|
|
378
|
+
"[data-theme=coffee]": {
|
|
379
|
+
"primary": "#DB924B",
|
|
380
|
+
"secondary": "#263E3F",
|
|
381
|
+
"accent": "#10576D",
|
|
382
|
+
"neutral": "#120C12",
|
|
383
|
+
"base-100": "#20161F",
|
|
384
|
+
"base-content": "#756E63",
|
|
385
|
+
"info": "#8DCAC1",
|
|
386
|
+
"success": "#9DB787",
|
|
387
|
+
"warning": "#FFD25F",
|
|
388
|
+
"error": "#FC9581",
|
|
389
|
+
},
|
|
390
|
+
"[data-theme=winter]": {
|
|
391
|
+
"primary": "#047AFF",
|
|
392
|
+
"secondary": "#463AA2",
|
|
393
|
+
"accent": "#C148AC",
|
|
394
|
+
"neutral": "#021431",
|
|
395
|
+
"base-100": "#ffffff",
|
|
396
|
+
"base-200": "#F2F7FF",
|
|
397
|
+
"base-300": "#E3E9F4",
|
|
398
|
+
"base-content": "#394E6A",
|
|
399
|
+
"info": "#93E7FB",
|
|
400
|
+
"success": "#81CFD1",
|
|
401
|
+
"warning": "#EFD7BB",
|
|
402
|
+
"error": "#E58B8B",
|
|
403
|
+
},
|
|
362
404
|
};
|