@uncinq/design-tokens 1.1.3 → 1.1.5

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.
@@ -19,7 +19,9 @@
19
19
  --color-background-muted-hover: var(--color-gray-200);
20
20
  --color-background-surface: var(--color-background);
21
21
  --color-border: var(--color-gray-200);
22
+ --color-border-on-muted: var(--color-gray-300);
22
23
  --color-border-hover: var(--color-gray-500);
24
+ --color-border-hover-on-muted: var(--color-gray-600);
23
25
  --color-brand: var(--color-sienna-600);
24
26
  --color-brand-hover: var(--color-sienna-700);
25
27
  --color-brand-muted: var(--color-sienna-100);
@@ -70,6 +72,7 @@
70
72
  --color-text-on-dark: var(--color-white);
71
73
  --color-text-on-info: var(--color-white);
72
74
  --color-text-on-light: var(--color-gray-900);
75
+ --color-text-on-muted: var(--color-gray-900);
73
76
  --color-text-on-primary: var(--color-white);
74
77
  --color-text-on-secondary: var(--color-white);
75
78
  --color-text-on-success: var(--color-white);
@@ -8,7 +8,7 @@
8
8
  --columns: 12;
9
9
  --gap: var(--spacing-md);
10
10
  --gap-column: var(--spacing-md);
11
- --gap-row: var(--spacing-section);
11
+ --gap-row: var(--spacing-fluid-sm);
12
12
  --span-full: 1 / -1;
13
13
  --span-half: span calc(var(--columns) / 2);
14
14
  --span-quarter: span calc(var(--columns) / 4);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uncinq/design-tokens",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Framework-agnostic design tokens — JSON DTCG primitive and semantic — CSS custom properties.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -63,9 +63,19 @@
63
63
  "$value": "{color.gray.200}",
64
64
  "$type": "color"
65
65
  },
66
- "hover": {
67
- "$value": "{color.gray.500}",
66
+ "onMuted": {
67
+ "$value": "{color.gray.300}",
68
68
  "$type": "color"
69
+ },
70
+ "hover": {
71
+ "default": {
72
+ "$value": "{color.gray.500}",
73
+ "$type": "color"
74
+ },
75
+ "onMuted": {
76
+ "$value": "{color.gray.600}",
77
+ "$type": "color"
78
+ }
69
79
  }
70
80
  },
71
81
  "brand": {
@@ -289,6 +299,10 @@
289
299
  "$value": "{color.gray.900}",
290
300
  "$type": "color"
291
301
  },
302
+ "onMuted": {
303
+ "$value": "{color.gray.900}",
304
+ "$type": "color"
305
+ },
292
306
  "onPrimary": {
293
307
  "$value": "{color.white}",
294
308
  "$type": "color"
@@ -35,7 +35,7 @@
35
35
  "$type": "color"
36
36
  },
37
37
  "hover": {
38
- "$value": "{color.border.hover}",
38
+ "$value": "{color.border.hover.default}",
39
39
  "$type": "color"
40
40
  }
41
41
  },
@@ -13,7 +13,7 @@
13
13
  "$type": "dimension"
14
14
  },
15
15
  "row": {
16
- "$value": "{spacing.section}",
16
+ "$value": "{spacing.fluid.sm}",
17
17
  "$type": "dimension"
18
18
  }
19
19
  },