@grantcodes/style-dictionary 1.2.0 → 1.3.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.
Files changed (53) hide show
  1. package/.turbo/turbo-build.log +45 -44
  2. package/.turbo/turbo-lint.log +10 -5
  3. package/AGENTS.md +67 -0
  4. package/CHANGELOG.md +14 -0
  5. package/config.js +25 -1
  6. package/package.json +4 -1
  7. package/tokens/core/tier-1-definitions/colors.json +172 -173
  8. package/tokens/core/tier-1-definitions/z-index.json +26 -27
  9. package/tokens/grantcodes/tier-1-definitions/animation.json +24 -25
  10. package/tokens/grantcodes/tier-1-definitions/borders.json +33 -34
  11. package/tokens/grantcodes/tier-1-definitions/shadows.json +36 -37
  12. package/tokens/grantcodes/tier-1-definitions/spacing.json +49 -0
  13. package/tokens/grantcodes/tier-1-definitions/typography.json +140 -131
  14. package/tokens/grantcodes/tier-2-usage/00-colors-background.json +69 -70
  15. package/tokens/grantcodes/tier-2-usage/00-colors-border.json +39 -40
  16. package/tokens/grantcodes/tier-2-usage/00-colors-content.json +42 -43
  17. package/tokens/grantcodes/tier-2-usage/animation.json +21 -21
  18. package/tokens/grantcodes/tier-2-usage/borders.json +24 -24
  19. package/tokens/grantcodes/tier-2-usage/shadows.json +36 -37
  20. package/tokens/grantcodes/tier-2-usage/spacing.json +25 -0
  21. package/tokens/grantcodes/tier-2-usage/typography-usage.json +274 -275
  22. package/tokens/grantcodes/tier-3-components/button.json +92 -92
  23. package/tokens/grantcodes/tier-3-components/focus-ring.json +23 -24
  24. package/tokens/grantcodes/tier-3-components/form.json +67 -67
  25. package/tokens/grantcodes/tier-3-components/link.json +36 -37
  26. package/tokens/todomap/tier-1-definitions/colors.json +89 -90
  27. package/tokens/todomap/tier-1-definitions/spacing.json +49 -0
  28. package/tokens/todomap/tier-1-definitions/typography.json +10 -8
  29. package/tokens/todomap/tier-2-usage/00-colors-background.json +33 -34
  30. package/tokens/todomap/tier-2-usage/00-colors-content.json +30 -31
  31. package/tokens/todomap/tier-2-usage/spacing.json +25 -0
  32. package/tokens/todomap/tier-2-usage/typography-usage.json +18 -18
  33. package/tokens/todomap/tier-3-components/button.json +138 -139
  34. package/tokens/todomap/tier-3-components/focus-ring.json +23 -24
  35. package/tokens/todomap/tier-3-components/form.json +67 -67
  36. package/tokens/todomap/tier-3-components/link.json +36 -37
  37. package/tokens/wireframe/tier-1-definitions/animation.json +15 -16
  38. package/tokens/wireframe/tier-1-definitions/borders.json +39 -40
  39. package/tokens/wireframe/tier-1-definitions/colors.json +33 -34
  40. package/tokens/wireframe/tier-1-definitions/shadows.json +36 -37
  41. package/tokens/wireframe/tier-1-definitions/spacing.json +49 -0
  42. package/tokens/wireframe/tier-1-definitions/typography.json +128 -128
  43. package/tokens/wireframe/tier-2-usage/00-colors-background.json +83 -84
  44. package/tokens/wireframe/tier-2-usage/00-colors-border.json +39 -40
  45. package/tokens/wireframe/tier-2-usage/00-colors-content.json +42 -43
  46. package/tokens/wireframe/tier-2-usage/animation.json +21 -22
  47. package/tokens/wireframe/tier-2-usage/borders.json +30 -31
  48. package/tokens/wireframe/tier-2-usage/shadows.json +36 -37
  49. package/tokens/wireframe/tier-2-usage/spacing.json +25 -0
  50. package/tokens/wireframe/tier-2-usage/typography-usage.json +442 -443
  51. package/tokens/wireframe/tier-3-components/focus-ring.json +23 -24
  52. package/tokens/wireframe/tier-3-components/form.json +67 -67
  53. package/tokens/wireframe/tier-3-components/link.json +36 -37
@@ -1,44 +1,45 @@
1
-
2
- > @grantcodes/style-dictionary@1.2.0 build /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
3
- > node ./build.js
4
-
5
- 🚧 No theme specified, building all themes...
6
-
7
- 🏗️ Building WIREFRAME theme
8
-
9
- 🏗️ Building GRANTCODES theme
10
-
11
- 🏗️ Building TODOMAP theme
12
-
13
- css
14
- ✔︎ dist/css/todomap/tokens.css
15
- ✔︎ dist/css/todomap/todomap.css
16
-
17
- json
18
- ✔︎ dist/json/todomap/tokens.json
19
-
20
- css
21
- ✔︎ dist/css/grantcodes/tokens.css
22
- ✔︎ dist/css/grantcodes/grantcodes.css
23
-
24
- json
25
- ✔︎ dist/json/grantcodes/tokens.json
26
-
27
- css
28
- ✔︎ dist/css/wireframe/tokens.css
29
- ✔︎ dist/css/wireframe/wireframe.css
30
-
31
- json
32
- ✔︎ dist/json/wireframe/tokens.json
33
-
34
- ts
35
- ✔︎ dist/js/todomap/style-dictionary.js
36
- ✔︎ dist/js/todomap/style-dictionary.d.ts
37
-
38
- ts
39
- ✔︎ dist/js/grantcodes/style-dictionary.js
40
- ✔︎ dist/js/grantcodes/style-dictionary.d.ts
41
-
42
- ts
43
- ✔︎ dist/js/wireframe/style-dictionary.js
44
- ✔︎ dist/js/wireframe/style-dictionary.d.ts
1
+
2
+
3
+ > @grantcodes/style-dictionary@1.3.0 build /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
4
+ > node ./build.js
5
+
6
+ 🚧 No theme specified, building all themes...
7
+
8
+ 🏗️ Building WIREFRAME theme
9
+
10
+ 🏗️ Building GRANTCODES theme
11
+
12
+ 🏗️ Building TODOMAP theme
13
+
14
+ css
15
+ ✔︎ dist/css/todomap/tokens.css
16
+ ✔︎ dist/css/todomap/todomap.css
17
+
18
+ json
19
+ ✔︎ dist/json/todomap/tokens.json
20
+
21
+ css
22
+ ✔︎ dist/css/grantcodes/tokens.css
23
+ ✔︎ dist/css/grantcodes/grantcodes.css
24
+
25
+ json
26
+ ✔︎ dist/json/grantcodes/tokens.json
27
+
28
+ css
29
+ ✔︎ dist/css/wireframe/tokens.css
30
+ ✔︎ dist/css/wireframe/wireframe.css
31
+
32
+ json
33
+ ✔︎ dist/json/wireframe/tokens.json
34
+
35
+ ts
36
+ ✔︎ dist/js/todomap/style-dictionary.js
37
+ ✔︎ dist/js/todomap/style-dictionary.d.ts
38
+
39
+ ts
40
+ ✔︎ dist/js/grantcodes/style-dictionary.js
41
+ ✔︎ dist/js/grantcodes/style-dictionary.d.ts
42
+
43
+ ts
44
+ ✔︎ dist/js/wireframe/style-dictionary.js
45
+ ✔︎ dist/js/wireframe/style-dictionary.d.ts
@@ -1,5 +1,10 @@
1
-
2
- > @grantcodes/style-dictionary@1.1.0 lint /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
3
- > npx @biomejs/biome lint tokens build.js lib
4
-
5
- Checked 48 files in 6ms. No fixes applied.
1
+
2
+
3
+ > @grantcodes/style-dictionary@1.2.1 lint /home/grantcodes/projects/@grantcodes/ui/packages/style-dictionary
4
+ > npx @biomejs/biome lint tokens build.js lib
5
+
6
+ npm warn Unknown env config "npm-globalconfig". This will stop working in the next major version of npm.
7
+ npm warn Unknown env config "verify-deps-before-run". This will stop working in the next major version of npm.
8
+ npm warn Unknown env config "_jsr-registry". This will stop working in the next major version of npm.
9
+ ⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏Checked 54 files in 6ms. No fixes applied.
10
+ ⠙
package/AGENTS.md ADDED
@@ -0,0 +1,67 @@
1
+ # @grantcodes/style-dictionary
2
+
3
+ Design tokens and theming system for the UI packages. Built with Style Dictionary.
4
+
5
+ ## Themes
6
+
7
+ Three themes are available:
8
+
9
+ - **grantcodes** - Default theme with Greycliff font
10
+ - **todomap** - Theme with Quicksand font
11
+ - **wireframe** - Minimal theme with system fonts
12
+
13
+ ## Token Structure
14
+
15
+ Tokens are organized in tiers:
16
+
17
+ ```
18
+ tokens/
19
+ ├── core/ # Shared tokens (z-index)
20
+ ├── grantcodes/ # Grantcodes theme
21
+ │ ├── tier-1-definitions/ # Base tokens (colors, typography, etc.)
22
+ │ ├── tier-2-usage/ # Usage tokens (component-level)
23
+ │ └── tier-3-components/ # Component-specific tokens
24
+ ├── todomap/ # Todomap theme
25
+ └── wireframe/ # Wireframe theme
26
+ ```
27
+
28
+ ### Tier System
29
+
30
+ - **Tier 1** - Primitive/base tokens (colors, spacing, typography)
31
+ - **Tier 2** - Usage tokens (semantic, component-level)
32
+ - **Tier 3** - Component-specific tokens
33
+
34
+ ## Exports
35
+
36
+ ```javascript
37
+ // Theme tokens (CSS variables)
38
+ import '@grantcodes/style-dictionary/grantcodes/css';
39
+ import '@grantcodes/style-dictionary/todomap/css';
40
+ import '@grantcodes/style-dictionary/wireframe/css';
41
+
42
+ // Theme with component tokens
43
+ import '@grantcodes/style-dictionary/grantcodes/css/theme';
44
+
45
+ // JavaScript tokens
46
+ import { GColorNeutral100 } from '@grantcodes/style-dictionary/grantcodes/js';
47
+
48
+ // Fonts
49
+ import '@grantcodes/style-dictionary/assets/fonts/greycliff';
50
+ import '@grantcodes/style-dictionary/assets/fonts/quicksand';
51
+ ```
52
+
53
+ ## Adding New Tokens
54
+
55
+ 1. Choose the appropriate theme folder
56
+ 2. Add token to the correct tier (1, 2, or 3)
57
+ 3. Rebuild with `pnpm build`
58
+
59
+ ## Building
60
+
61
+ ```bash
62
+ # Build all themes
63
+ pnpm build
64
+
65
+ # Build single theme
66
+ pnpm build -- --theme=grantcodes
67
+ ```
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0](https://github.com/grantcodes/ui/compare/style-dictionary-v1.2.1...style-dictionary-v1.3.0) (2026-03-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * **tokens:** expand spacing tokens and add typography shorthand ([0d9a558](https://github.com/grantcodes/ui/commit/0d9a5580a32a6ecf2b170d54fde3d1c68008e314))
9
+
10
+ ## [1.2.1](https://github.com/grantcodes/ui/compare/style-dictionary-v1.2.0...style-dictionary-v1.2.1) (2026-03-07)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * update imports & exports ([db68e69](https://github.com/grantcodes/ui/commit/db68e69f5307fd62f26a6e65c9904e86ab156af6))
16
+
3
17
  ## [1.1.0](https://github.com/grantcodes/style-dictionary/compare/v1.0.0...v1.1.0) (2022-09-23)
4
18
 
5
19
 
package/config.js CHANGED
@@ -30,6 +30,27 @@ const isHigherTierToken = (filePath) => {
30
30
  * Transform shadow tokens
31
31
  * 1) Used to transform the individual shadow tokens into a single box-shadow-sm, box-shadow-md, etc. with x, y, blur, spread, and color concatenated
32
32
  */
33
+ const transformTypographyTokens = (dictionary, themeTokens) => {
34
+ const typographyGroups = dictionary.allTokens.filter(
35
+ (p) =>
36
+ isHigherTierToken(p.filePath) &&
37
+ p.path[0] === 'typography'
38
+ ).reduce((groups, token) => {
39
+ const style = token.path[1]; // extract typography.{style}
40
+ if (!groups[style]) groups[style] = {};
41
+ groups[style][token.path[2]] = token.value;
42
+ return groups;
43
+ }, {});
44
+
45
+ Object.keys(typographyGroups).forEach((style) => {
46
+ const group = typographyGroups[style];
47
+ if (group['font-family'] && group['font-weight'] && group['font-size'] && group['line-height']) {
48
+ const shorthand = `${group['font-weight']} ${group['font-size']}/${group['line-height']} ${group['font-family']}`;
49
+ themeTokens.push(` --g-theme-typography-${style}: ${shorthand};`);
50
+ }
51
+ });
52
+ };
53
+
33
54
  const transformShadowTokens = (dictionary, size, themeTokens) => {
34
55
  const shadowProps = dictionary.allTokens.filter(
35
56
  (p) =>
@@ -165,7 +186,10 @@ const formatVariables = (dictionary) => {
165
186
  * Iterate over all tokens and format them
166
187
  *
167
188
  */
168
- dictionary.allTokens.forEach((prop) => {
189
+
190
+ transformTypographyTokens(dictionary, themeTokens);
191
+
192
+ dictionary.allTokens.forEach((prop) => {
169
193
  /**
170
194
  * 1) Always include z-index and size tokens from core
171
195
  */
package/package.json CHANGED
@@ -1,17 +1,20 @@
1
1
  {
2
2
  "name": "@grantcodes/style-dictionary",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "description": "My personal style dictionary",
6
6
  "main": "./dist/js/default/style-dictionary.js",
7
7
  "exports": {
8
8
  "./wireframe/css": "./dist/css/wireframe/tokens.css",
9
+ "./wireframe/css/theme": "./dist/css/wireframe/wireframe.css",
9
10
  "./wireframe/js": "./dist/js/wireframe/style-dictionary.js",
10
11
  "./wireframe/json": "./dist/json/wireframe/tokens.json",
11
12
  "./grantcodes/css": "./dist/css/grantcodes/tokens.css",
13
+ "./grantcodes/css/theme": "./dist/css/grantcodes/grantcodes.css",
12
14
  "./grantcodes/js": "./dist/js/grantcodes/style-dictionary.js",
13
15
  "./grantcodes/json": "./dist/json/grantcodes/tokens.json",
14
16
  "./todomap/css": "./dist/css/todomap/tokens.css",
17
+ "./todomap/css/theme": "./dist/css/todomap/todomap.css",
15
18
  "./todomap/js": "./dist/js/todomap/style-dictionary.js",
16
19
  "./todomap/json": "./dist/json/todomap/tokens.json",
17
20
  "./assets/fonts/greycliff": "./assets/fonts/greycliff.css",
@@ -1,175 +1,174 @@
1
1
  {
2
- "color": {
3
- "neutral": {
4
- "white": {
5
- "value": "oklch(100% 0 0)"
6
- },
7
- "100": {
8
- "value": "oklch(95% 0 0)"
9
- },
10
- "200": {
11
- "value": "oklch(90% 0 0)"
12
- },
13
- "300": {
14
- "value": "oklch(80% 0 0)"
15
- },
16
- "400": {
17
- "value": "oklch(70% 0 0)"
18
- },
19
- "500": {
20
- "value": "oklch(60% 0 0)"
21
- },
22
- "600": {
23
- "value": "oklch(50% 0 0)"
24
- },
25
- "700": {
26
- "value": "oklch(40% 0 0)"
27
- },
28
- "800": {
29
- "value": "oklch(30% 0 0)"
30
- },
31
- "900": {
32
- "value": "oklch(20% 0 0)"
33
- },
34
- "black": {
35
- "value": "oklch(0% 0 0)"
36
- }
37
- },
38
- "utility": {
39
- "green": {
40
- "100": {
41
- "value": "oklch(96.73% 0.0537 129.1)"
42
- },
43
- "200": {
44
- "value": "oklch(93.45% 0.107 131.96)"
45
- },
46
- "300": {
47
- "value": "oklch(87.97% 0.1546 135.05)"
48
- },
49
- "400": {
50
- "value": "oklch(81.78% 0.1827 137.62)"
51
- },
52
- "500": {
53
- "value": "oklch(74.01% 0.2132 139.87)"
54
- },
55
- "600": {
56
- "value": "oklch(65.44% 0.1981 141.12)"
57
- },
58
- "700": {
59
- "value": "oklch(57.11% 0.1795 142.12)"
60
- },
61
- "800": {
62
- "value": "oklch(48.67% 0.1572 142.68)"
63
- },
64
- "900": {
65
- "value": "oklch(42.59% 0.1358 143.3)"
66
- }
67
- },
68
- "blue": {
69
- "100": {
70
- "value": "oklch(95.86% 0.0542 179.13)"
71
- },
72
- "200": {
73
- "value": "oklch(92.82% 0.0973 184.41)"
74
- },
75
- "300": {
76
- "value": "oklch(90.54% 0.1282 189.63)"
77
- },
78
- "500": {
79
- "value": "oklch(81.86% 0.141005 208.7047)"
80
- },
81
- "600": {
82
- "value": "oklch(68.89% 0.125872 220.4932)"
83
- },
84
- "700": {
85
- "value": "oklch(56.7% 0.116289 232.4331)"
86
- },
87
- "800": {
88
- "value": "oklch(45.75% 0.107158 241.2805)"
89
- },
90
- "900": {
91
- "value": "oklch(37.55% 0.1037 249.04)"
92
- }
93
- },
94
- "yellow": {
95
- "100": {
96
- "value": "oklch(97.66% 0.0606 103.43)"
97
- },
98
- "200": {
99
- "value": "oklch(95.72% 0.1147 103.53)"
100
- },
101
- "300": {
102
- "value": "oklch(93.47% 0.1552 102.21)"
103
- },
104
- "400": {
105
- "value": "oklch(91.68% 0.1745 101.08)"
106
- },
107
- "500": {
108
- "value": "oklch(88.99% 0.183778 97.6996)"
109
- },
110
- "600": {
111
- "value": "oklch(78.68% 0.162 96.43)"
112
- },
113
- "700": {
114
- "value": "oklch(68.35% 0.14027 94.7302)"
115
- },
116
- "800": {
117
- "value": "oklch(58.04% 0.1189 93.71)"
118
- },
119
- "900": {
120
- "value": "oklch(50.09% 0.1025 92.6)"
121
- }
122
- },
123
- "red": {
124
- "100": {
125
- "value": "oklch(94.96% 0.0395 73.45)"
126
- },
127
- "200": {
128
- "value": "oklch(89.21% 0.076552 65.9429)"
129
- },
130
- "300": {
131
- "value": "oklch(82.67% 0.1156 57.65)"
132
- },
133
- "400": {
134
- "value": "oklch(77.04% 0.1486 49.15)"
135
- },
136
- "500": {
137
- "value": "oklch(69.31% 0.203172 39.994)"
138
- },
139
- "600": {
140
- "value": "oklch(60.03% 0.1938 35.81)"
141
- },
142
- "700": {
143
- "value": "oklch(51.18% 0.1802 32.56)"
144
- },
145
- "800": {
146
- "value": "oklch(42.79% 0.16 30.38)"
147
- },
148
- "900": {
149
- "value": "oklch(36.89% 0.1443 28.98)"
150
- }
151
- }
152
- },
153
- "transparent": {
154
- "0": {
155
- "value": "oklch(100% 0 0 / 0)"
156
- },
157
- "10": {
158
- "value": "oklch(100% 0 0 / 0.1)"
159
- },
160
- "25": {
161
- "value": "oklch(100% 0 0 / 0.25)"
162
- },
163
- "50": {
164
- "value": "oklch(100% 0 0 / 0.5)"
165
- },
166
- "75": {
167
- "value": "oklch(100% 0 0 / 0.75)"
168
- },
169
- "90": {
170
- "value": "oklch(100% 0 0 / 0.9)"
171
- }
172
- }
173
- }
2
+ "color": {
3
+ "neutral": {
4
+ "white": {
5
+ "value": "oklch(100% 0 0)"
6
+ },
7
+ "100": {
8
+ "value": "oklch(95% 0 0)"
9
+ },
10
+ "200": {
11
+ "value": "oklch(90% 0 0)"
12
+ },
13
+ "300": {
14
+ "value": "oklch(80% 0 0)"
15
+ },
16
+ "400": {
17
+ "value": "oklch(70% 0 0)"
18
+ },
19
+ "500": {
20
+ "value": "oklch(60% 0 0)"
21
+ },
22
+ "600": {
23
+ "value": "oklch(50% 0 0)"
24
+ },
25
+ "700": {
26
+ "value": "oklch(40% 0 0)"
27
+ },
28
+ "800": {
29
+ "value": "oklch(30% 0 0)"
30
+ },
31
+ "900": {
32
+ "value": "oklch(20% 0 0)"
33
+ },
34
+ "black": {
35
+ "value": "oklch(0% 0 0)"
36
+ }
37
+ },
38
+ "utility": {
39
+ "green": {
40
+ "100": {
41
+ "value": "oklch(96.73% 0.0537 129.1)"
42
+ },
43
+ "200": {
44
+ "value": "oklch(93.45% 0.107 131.96)"
45
+ },
46
+ "300": {
47
+ "value": "oklch(87.97% 0.1546 135.05)"
48
+ },
49
+ "400": {
50
+ "value": "oklch(81.78% 0.1827 137.62)"
51
+ },
52
+ "500": {
53
+ "value": "oklch(74.01% 0.2132 139.87)"
54
+ },
55
+ "600": {
56
+ "value": "oklch(65.44% 0.1981 141.12)"
57
+ },
58
+ "700": {
59
+ "value": "oklch(57.11% 0.1795 142.12)"
60
+ },
61
+ "800": {
62
+ "value": "oklch(48.67% 0.1572 142.68)"
63
+ },
64
+ "900": {
65
+ "value": "oklch(42.59% 0.1358 143.3)"
66
+ }
67
+ },
68
+ "blue": {
69
+ "100": {
70
+ "value": "oklch(95.86% 0.0542 179.13)"
71
+ },
72
+ "200": {
73
+ "value": "oklch(92.82% 0.0973 184.41)"
74
+ },
75
+ "300": {
76
+ "value": "oklch(90.54% 0.1282 189.63)"
77
+ },
78
+ "500": {
79
+ "value": "oklch(81.86% 0.141005 208.7047)"
80
+ },
81
+ "600": {
82
+ "value": "oklch(68.89% 0.125872 220.4932)"
83
+ },
84
+ "700": {
85
+ "value": "oklch(56.7% 0.116289 232.4331)"
86
+ },
87
+ "800": {
88
+ "value": "oklch(45.75% 0.107158 241.2805)"
89
+ },
90
+ "900": {
91
+ "value": "oklch(37.55% 0.1037 249.04)"
92
+ }
93
+ },
94
+ "yellow": {
95
+ "100": {
96
+ "value": "oklch(97.66% 0.0606 103.43)"
97
+ },
98
+ "200": {
99
+ "value": "oklch(95.72% 0.1147 103.53)"
100
+ },
101
+ "300": {
102
+ "value": "oklch(93.47% 0.1552 102.21)"
103
+ },
104
+ "400": {
105
+ "value": "oklch(91.68% 0.1745 101.08)"
106
+ },
107
+ "500": {
108
+ "value": "oklch(88.99% 0.183778 97.6996)"
109
+ },
110
+ "600": {
111
+ "value": "oklch(78.68% 0.162 96.43)"
112
+ },
113
+ "700": {
114
+ "value": "oklch(68.35% 0.14027 94.7302)"
115
+ },
116
+ "800": {
117
+ "value": "oklch(58.04% 0.1189 93.71)"
118
+ },
119
+ "900": {
120
+ "value": "oklch(50.09% 0.1025 92.6)"
121
+ }
122
+ },
123
+ "red": {
124
+ "100": {
125
+ "value": "oklch(94.96% 0.0395 73.45)"
126
+ },
127
+ "200": {
128
+ "value": "oklch(89.21% 0.076552 65.9429)"
129
+ },
130
+ "300": {
131
+ "value": "oklch(82.67% 0.1156 57.65)"
132
+ },
133
+ "400": {
134
+ "value": "oklch(77.04% 0.1486 49.15)"
135
+ },
136
+ "500": {
137
+ "value": "oklch(69.31% 0.203172 39.994)"
138
+ },
139
+ "600": {
140
+ "value": "oklch(60.03% 0.1938 35.81)"
141
+ },
142
+ "700": {
143
+ "value": "oklch(51.18% 0.1802 32.56)"
144
+ },
145
+ "800": {
146
+ "value": "oklch(42.79% 0.16 30.38)"
147
+ },
148
+ "900": {
149
+ "value": "oklch(36.89% 0.1443 28.98)"
150
+ }
151
+ }
152
+ },
153
+ "transparent": {
154
+ "0": {
155
+ "value": "oklch(100% 0 0 / 0)"
156
+ },
157
+ "10": {
158
+ "value": "oklch(100% 0 0 / 0.1)"
159
+ },
160
+ "25": {
161
+ "value": "oklch(100% 0 0 / 0.25)"
162
+ },
163
+ "50": {
164
+ "value": "oklch(100% 0 0 / 0.5)"
165
+ },
166
+ "75": {
167
+ "value": "oklch(100% 0 0 / 0.75)"
168
+ },
169
+ "90": {
170
+ "value": "oklch(100% 0 0 / 0.9)"
171
+ }
172
+ }
173
+ }
174
174
  }
175
-
@@ -1,29 +1,28 @@
1
1
  {
2
- "z-index": {
3
- "top": {
4
- "value": "99999"
5
- },
6
- "500": {
7
- "value": "500"
8
- },
9
- "400": {
10
- "value": "400"
11
- },
12
- "300": {
13
- "value": "300"
14
- },
15
- "200": {
16
- "value": "200"
17
- },
18
- "100": {
19
- "value": "100"
20
- },
21
- "0": {
22
- "value": "0"
23
- },
24
- "bottom": {
25
- "value": "-100"
26
- }
27
- }
2
+ "z-index": {
3
+ "top": {
4
+ "value": "99999"
5
+ },
6
+ "500": {
7
+ "value": "500"
8
+ },
9
+ "400": {
10
+ "value": "400"
11
+ },
12
+ "300": {
13
+ "value": "300"
14
+ },
15
+ "200": {
16
+ "value": "200"
17
+ },
18
+ "100": {
19
+ "value": "100"
20
+ },
21
+ "0": {
22
+ "value": "0"
23
+ },
24
+ "bottom": {
25
+ "value": "-100"
26
+ }
27
+ }
28
28
  }
29
-