@uncinq/design-tokens 1.4.0 → 1.4.1

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.
@@ -68,6 +68,7 @@
68
68
  --color-text-hover: var(--color-gray-700);
69
69
  --color-text-muted: var(--color-gray-500);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uncinq/design-tokens",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Framework-agnostic design tokens — JSON DTCG primitive and semantic — CSS custom properties.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -283,6 +283,10 @@
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": {