@nar-bus/lena-ui-shared 1.3.13 → 1.3.14
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/dist/index.d.ts +94 -14
- package/dist/index.js +4247 -4136
- package/dist/index.js.map +1 -1
- package/dist/theme.css +13 -4
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -80,22 +80,25 @@
|
|
|
80
80
|
--status-online: oklch(0.627 0.194 149);
|
|
81
81
|
--status-offline: oklch(0.554 0.046 257);
|
|
82
82
|
--status-warning: oklch(0.769 0.188 70);
|
|
83
|
+
--status-warning-foreground: oklch(0.520 0.16 70);
|
|
83
84
|
--status-error: oklch(0.577 0.245 27);
|
|
85
|
+
--status-error-foreground: oklch(0.500 0.22 27);
|
|
84
86
|
|
|
85
87
|
/* Accent Colors */
|
|
86
88
|
--accent-cyan: oklch(0.25 0.25 220);
|
|
89
|
+
--accent-cyan-foreground: oklch(0.500 0.20 220);
|
|
87
90
|
--accent-violet: oklch(0.541 0.281 293);
|
|
88
91
|
--table-header: var(--accent-cyan);
|
|
89
92
|
|
|
90
93
|
/* Semantic Status (extended) */
|
|
91
94
|
--status-success: oklch(0.548 0.205 152);
|
|
92
|
-
--status-success-foreground: oklch(0.
|
|
95
|
+
--status-success-foreground: oklch(0.470 0.17 153);
|
|
93
96
|
--status-info: oklch(0.623 0.214 259);
|
|
94
|
-
--status-info-foreground: oklch(0.
|
|
97
|
+
--status-info-foreground: oklch(0.510 0.20 262);
|
|
95
98
|
--status-neutral: oklch(0.554 0.046 257);
|
|
96
|
-
--status-neutral-foreground: oklch(0.
|
|
99
|
+
--status-neutral-foreground: oklch(0.470 0.043 257.3);
|
|
97
100
|
--status-purple: oklch(0.627 0.265 303);
|
|
98
|
-
--status-purple-foreground: oklch(0.
|
|
101
|
+
--status-purple-foreground: oklch(0.520 0.26 302);
|
|
99
102
|
|
|
100
103
|
/* Surface Backgrounds (for containers, cards, banners) */
|
|
101
104
|
--surface-success: oklch(0.95 0.05 152);
|
|
@@ -296,10 +299,13 @@
|
|
|
296
299
|
--status-online: oklch(0.723 0.15 149);
|
|
297
300
|
--status-offline: oklch(0.554 0.046 257);
|
|
298
301
|
--status-warning: oklch(0.828 0.15 84);
|
|
302
|
+
--status-warning-foreground: oklch(0.828 0.15 84);
|
|
299
303
|
--status-error: oklch(0.637 0.20 25);
|
|
304
|
+
--status-error-foreground: oklch(0.637 0.20 25);
|
|
300
305
|
|
|
301
306
|
/* Accent Colors */
|
|
302
307
|
--accent-cyan: oklch(0.75 0.15 220);
|
|
308
|
+
--accent-cyan-foreground: oklch(0.75 0.15 220);
|
|
303
309
|
--accent-violet: oklch(0.70 0.20 293);
|
|
304
310
|
--table-header: var(--accent-cyan);
|
|
305
311
|
|
|
@@ -526,9 +532,12 @@
|
|
|
526
532
|
--color-status-online: var(--status-online);
|
|
527
533
|
--color-status-offline: var(--status-offline);
|
|
528
534
|
--color-status-warning: var(--status-warning);
|
|
535
|
+
--color-status-warning-foreground: var(--status-warning-foreground);
|
|
529
536
|
--color-status-error: var(--status-error);
|
|
537
|
+
--color-status-error-foreground: var(--status-error-foreground);
|
|
530
538
|
|
|
531
539
|
--color-accent-cyan: var(--accent-cyan);
|
|
540
|
+
--color-accent-cyan-foreground: var(--accent-cyan-foreground);
|
|
532
541
|
--color-accent-violet: var(--accent-violet);
|
|
533
542
|
|
|
534
543
|
--color-status-success: var(--status-success);
|