@uncinq/design-tokens 1.5.0 → 1.6.0

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 CHANGED
@@ -289,7 +289,6 @@ Used to ensure contrast when a color is the background:
289
289
  | `--color-success` | green-600 | Confirmations |
290
290
  | `--color-warning` | amber-500 | Warnings — use with `--color-text-on-warning` |
291
291
  | `--color-info` | blue-600 | Informational |
292
- | `--color-secondary` | gray-500 | De-emphasized UI |
293
292
  | `--color-dark` | gray-900 | Dark surfaces |
294
293
  | `--color-light` | gray-200 | Light surfaces |
295
294
 
@@ -39,6 +39,7 @@
39
39
  --color-heading: var(--color-black);
40
40
  --color-highlight: var(--color-yellow-100);
41
41
  --color-highlight-hover: var(--color-yellow-200);
42
+ --color-highlight-muted: var(--color-yellow-100);
42
43
  --color-highlight-strong: var(--color-yellow-900);
43
44
  --color-info: var(--color-blue-600);
44
45
  --color-info-hover: var(--color-blue-700);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uncinq/design-tokens",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Framework-agnostic design tokens — JSON DTCG primitive and semantic — CSS custom properties.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -153,6 +153,10 @@
153
153
  "$value": "{color.yellow.200}",
154
154
  "$type": "color"
155
155
  },
156
+ "muted": {
157
+ "$value": "{color.yellow.100}",
158
+ "$type": "color"
159
+ },
156
160
  "strong": {
157
161
  "$value": "{color.yellow.900}",
158
162
  "$type": "color"
@@ -272,7 +272,7 @@
272
272
 
273
273
  "lineHeight": {
274
274
  "$value": "{lineHeight.snug}",
275
- "$type": "number"
275
+ "$type": "dimension"
276
276
  },
277
277
 
278
278
  "padding": {