@uncinq/design-tokens 1.4.0 → 1.4.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.
|
@@ -66,8 +66,9 @@
|
|
|
66
66
|
--color-text: var(--color-gray-900);
|
|
67
67
|
--color-text-disabled: var(--color-gray-300);
|
|
68
68
|
--color-text-hover: var(--color-gray-700);
|
|
69
|
-
--color-text-muted: var(--color-
|
|
69
|
+
--color-text-muted: oklch(from var(--color-text) l c h / var(--opacity-muted));
|
|
70
70
|
--color-text-on-accent: var(--color-white);
|
|
71
|
+
--color-text-on-black: var(--color-white);
|
|
71
72
|
--color-text-on-brand: var(--color-white);
|
|
72
73
|
--color-text-on-danger: var(--color-white);
|
|
73
74
|
--color-text-on-dark: var(--color-white);
|
|
@@ -79,6 +80,7 @@
|
|
|
79
80
|
--color-text-on-success: var(--color-white);
|
|
80
81
|
--color-text-on-surface: var(--color-text);
|
|
81
82
|
--color-text-on-warning: var(--color-gray-900);
|
|
83
|
+
--color-text-on-white: var(--color-black);
|
|
82
84
|
--color-warning: var(--color-amber-500);
|
|
83
85
|
--color-warning-hover: var(--color-amber-600);
|
|
84
86
|
--color-warning-muted: var(--color-amber-100);
|
package/package.json
CHANGED
|
@@ -276,13 +276,17 @@
|
|
|
276
276
|
"$type": "color"
|
|
277
277
|
},
|
|
278
278
|
"muted": {
|
|
279
|
-
"$value": "{color.
|
|
279
|
+
"$value": "oklch(from {color.text.default} l c h / {opacity.muted})",
|
|
280
280
|
"$type": "color"
|
|
281
281
|
},
|
|
282
282
|
"onAccent": {
|
|
283
283
|
"$value": "{color.white}",
|
|
284
284
|
"$type": "color"
|
|
285
285
|
},
|
|
286
|
+
"onBlack": {
|
|
287
|
+
"$value": "{color.white}",
|
|
288
|
+
"$type": "color"
|
|
289
|
+
},
|
|
286
290
|
"onBrand": {
|
|
287
291
|
"$value": "{color.white}",
|
|
288
292
|
"$type": "color"
|
|
@@ -326,6 +330,10 @@
|
|
|
326
330
|
"onWarning": {
|
|
327
331
|
"$value": "{color.gray.900}",
|
|
328
332
|
"$type": "color"
|
|
333
|
+
},
|
|
334
|
+
"onWhite": {
|
|
335
|
+
"$value": "{color.black}",
|
|
336
|
+
"$type": "color"
|
|
329
337
|
}
|
|
330
338
|
},
|
|
331
339
|
"warning": {
|