@dimaan/ui 0.0.30 → 0.0.31
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.cjs +202 -161
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +202 -161
- package/dist/index.js.map +1 -1
- package/dist/preset.css +23 -5
- package/package.json +1 -1
package/dist/preset.css
CHANGED
|
@@ -124,11 +124,11 @@
|
|
|
124
124
|
--color-warning: oklch(0.78 0.16 80);
|
|
125
125
|
--color-warning-foreground: oklch(0.205 0 0);
|
|
126
126
|
|
|
127
|
-
/* Soft-badge text —
|
|
128
|
-
--color-primary-soft-foreground: oklch(0.
|
|
129
|
-
--color-success-soft-foreground: oklch(0.
|
|
130
|
-
--color-warning-soft-foreground: oklch(0.
|
|
131
|
-
--color-destructive-soft-foreground: oklch(0.
|
|
127
|
+
/* Soft-badge text — modern, saturated status colours (kept AA-readable) on a translucent /15 tint */
|
|
128
|
+
--color-primary-soft-foreground: oklch(0.5 0.12 200);
|
|
129
|
+
--color-success-soft-foreground: oklch(0.5 0.16 148);
|
|
130
|
+
--color-warning-soft-foreground: oklch(0.5 0.13 68);
|
|
131
|
+
--color-destructive-soft-foreground: oklch(0.52 0.21 25);
|
|
132
132
|
|
|
133
133
|
/* ── Bold gradient + glow — signature moments only ───────────── */
|
|
134
134
|
--gradient-primary: linear-gradient(
|
|
@@ -137,6 +137,14 @@
|
|
|
137
137
|
oklch(0.55 0.25 270) 55%,
|
|
138
138
|
oklch(0.62 0.2 230)
|
|
139
139
|
);
|
|
140
|
+
/* Table brand accent — teal→blue signature line (top of the data-table card)
|
|
141
|
+
and the paginator's current-page emphasis. Additive; buttons keep --gradient-primary. */
|
|
142
|
+
--gradient-table: linear-gradient(
|
|
143
|
+
120deg,
|
|
144
|
+
oklch(0.66 0.14 195),
|
|
145
|
+
oklch(0.55 0.12 235) 55%,
|
|
146
|
+
oklch(0.56 0.15 275)
|
|
147
|
+
);
|
|
140
148
|
--color-primary-glow: oklch(0.55 0.1 195 / 0.4);
|
|
141
149
|
|
|
142
150
|
/* Primary button "tactile" depth — colored bloom follows --color-primary-glow */
|
|
@@ -258,6 +266,13 @@
|
|
|
258
266
|
oklch(0.62 0.22 270) 55%,
|
|
259
267
|
oklch(0.66 0.18 230)
|
|
260
268
|
);
|
|
269
|
+
/* Table brand accent — brighter to pop on dark surfaces */
|
|
270
|
+
--gradient-table: linear-gradient(
|
|
271
|
+
120deg,
|
|
272
|
+
oklch(0.72 0.14 195),
|
|
273
|
+
oklch(0.62 0.13 235) 55%,
|
|
274
|
+
oklch(0.64 0.15 275)
|
|
275
|
+
);
|
|
261
276
|
--color-primary-glow: oklch(0.6 0.1 195 / 0.5);
|
|
262
277
|
|
|
263
278
|
/* Glass — dark frosted surfaces */
|
|
@@ -389,6 +404,9 @@
|
|
|
389
404
|
@utility bg-gradient-primary {
|
|
390
405
|
background-image: var(--gradient-primary);
|
|
391
406
|
}
|
|
407
|
+
@utility bg-gradient-table {
|
|
408
|
+
background-image: var(--gradient-table);
|
|
409
|
+
}
|
|
392
410
|
|
|
393
411
|
@utility glass {
|
|
394
412
|
background-color: var(--glass-bg);
|