@wordpress/theme 0.1.0 → 0.2.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 (168) hide show
  1. package/README.md +69 -9
  2. package/bin/generate-default-ramps/index.ts +49 -0
  3. package/bin/generate-primitive-tokens/index.ts +14 -9
  4. package/bin/terrazzo-plugin-ds-tokens-docs/index.ts +5 -24
  5. package/bin/terrazzo-plugin-figma-ds-token-manager/index.ts +11 -4
  6. package/bin/terrazzo-plugin-inline-alias-values/index.ts +84 -0
  7. package/bin/terrazzo-plugin-known-wpds-css-variables/index.ts +19 -39
  8. package/build/color-ramps/index.js +21 -39
  9. package/build/color-ramps/index.js.map +3 -3
  10. package/build/color-ramps/lib/color-utils.js +39 -0
  11. package/build/color-ramps/lib/color-utils.js.map +7 -0
  12. package/build/color-ramps/lib/constants.js +20 -27
  13. package/build/color-ramps/lib/constants.js.map +3 -3
  14. package/build/color-ramps/lib/default-ramps.js +220 -0
  15. package/build/color-ramps/lib/default-ramps.js.map +7 -0
  16. package/build/color-ramps/lib/find-color-with-constraints.js +60 -91
  17. package/build/color-ramps/lib/find-color-with-constraints.js.map +3 -3
  18. package/build/color-ramps/lib/index.js +77 -119
  19. package/build/color-ramps/lib/index.js.map +3 -3
  20. package/build/color-ramps/lib/ramp-configs.js +15 -14
  21. package/build/color-ramps/lib/ramp-configs.js.map +2 -2
  22. package/build/color-ramps/lib/register-color-spaces.js +7 -0
  23. package/build/color-ramps/lib/register-color-spaces.js.map +7 -0
  24. package/build/color-ramps/lib/taper-chroma.js +35 -27
  25. package/build/color-ramps/lib/taper-chroma.js.map +3 -3
  26. package/build/color-ramps/lib/types.js +2 -1
  27. package/build/color-ramps/lib/types.js.map +1 -1
  28. package/build/color-ramps/lib/utils.js +75 -11
  29. package/build/color-ramps/lib/utils.js.map +2 -2
  30. package/build/context.js +3 -2
  31. package/build/context.js.map +1 -1
  32. package/build/index.js +2 -1
  33. package/build/index.js.map +1 -1
  34. package/build/lock-unlock.js +3 -2
  35. package/build/lock-unlock.js.map +1 -1
  36. package/build/prebuilt/js/design-tokens.js +19 -11
  37. package/build/prebuilt/js/design-tokens.js.map +2 -2
  38. package/build/prebuilt/json/figma.json +165 -783
  39. package/build/prebuilt/ts/color-tokens.js +137 -0
  40. package/build/prebuilt/ts/color-tokens.js.map +7 -0
  41. package/build/private-apis.js +3 -2
  42. package/build/private-apis.js.map +1 -1
  43. package/build/theme-provider.js +19 -17
  44. package/build/theme-provider.js.map +4 -4
  45. package/build/token-id.js +30 -0
  46. package/build/token-id.js.map +7 -0
  47. package/build/types/css-modules.d.js +0 -1
  48. package/build/types.js +2 -1
  49. package/build/types.js.map +1 -1
  50. package/build/use-theme-provider-styles.js +67 -62
  51. package/build/use-theme-provider-styles.js.map +3 -3
  52. package/build-module/color-ramps/index.js +20 -28
  53. package/build-module/color-ramps/index.js.map +2 -2
  54. package/build-module/color-ramps/lib/color-utils.js +19 -0
  55. package/build-module/color-ramps/lib/color-utils.js.map +7 -0
  56. package/build-module/color-ramps/lib/constants.js +14 -11
  57. package/build-module/color-ramps/lib/constants.js.map +2 -2
  58. package/build-module/color-ramps/lib/default-ramps.js +196 -0
  59. package/build-module/color-ramps/lib/default-ramps.js.map +7 -0
  60. package/build-module/color-ramps/lib/find-color-with-constraints.js +61 -87
  61. package/build-module/color-ramps/lib/find-color-with-constraints.js.map +2 -2
  62. package/build-module/color-ramps/lib/index.js +85 -109
  63. package/build-module/color-ramps/lib/index.js.map +3 -3
  64. package/build-module/color-ramps/lib/ramp-configs.js +14 -13
  65. package/build-module/color-ramps/lib/ramp-configs.js.map +2 -2
  66. package/build-module/color-ramps/lib/register-color-spaces.js +7 -0
  67. package/build-module/color-ramps/lib/register-color-spaces.js.map +7 -0
  68. package/build-module/color-ramps/lib/taper-chroma.js +40 -16
  69. package/build-module/color-ramps/lib/taper-chroma.js.map +2 -2
  70. package/build-module/color-ramps/lib/utils.js +70 -6
  71. package/build-module/color-ramps/lib/utils.js.map +2 -2
  72. package/build-module/context.js +2 -1
  73. package/build-module/context.js.map +1 -1
  74. package/build-module/index.js +1 -0
  75. package/build-module/index.js.map +1 -1
  76. package/build-module/lock-unlock.js +2 -1
  77. package/build-module/lock-unlock.js.map +1 -1
  78. package/build-module/prebuilt/js/design-tokens.js +18 -10
  79. package/build-module/prebuilt/js/design-tokens.js.map +2 -2
  80. package/build-module/prebuilt/json/figma.json +165 -783
  81. package/build-module/prebuilt/ts/color-tokens.js +117 -0
  82. package/build-module/prebuilt/ts/color-tokens.js.map +7 -0
  83. package/build-module/private-apis.js +2 -1
  84. package/build-module/private-apis.js.map +1 -1
  85. package/build-module/theme-provider.js +18 -6
  86. package/build-module/theme-provider.js.map +3 -3
  87. package/build-module/token-id.js +6 -0
  88. package/build-module/token-id.js.map +7 -0
  89. package/build-module/use-theme-provider-styles.js +69 -57
  90. package/build-module/use-theme-provider-styles.js.map +2 -2
  91. package/build-types/color-ramps/index.d.ts +9 -16
  92. package/build-types/color-ramps/index.d.ts.map +1 -1
  93. package/build-types/color-ramps/lib/color-utils.d.ts +22 -0
  94. package/build-types/color-ramps/lib/color-utils.d.ts.map +1 -0
  95. package/build-types/color-ramps/lib/constants.d.ts +7 -9
  96. package/build-types/color-ramps/lib/constants.d.ts.map +1 -1
  97. package/build-types/color-ramps/lib/default-ramps.d.ts +7 -0
  98. package/build-types/color-ramps/lib/default-ramps.d.ts.map +1 -0
  99. package/build-types/color-ramps/lib/find-color-with-constraints.d.ts +8 -7
  100. package/build-types/color-ramps/lib/find-color-with-constraints.d.ts.map +1 -1
  101. package/build-types/color-ramps/lib/index.d.ts +5 -2
  102. package/build-types/color-ramps/lib/index.d.ts.map +1 -1
  103. package/build-types/color-ramps/lib/register-color-spaces.d.ts +2 -0
  104. package/build-types/color-ramps/lib/register-color-spaces.d.ts.map +1 -0
  105. package/build-types/color-ramps/lib/taper-chroma.d.ts +7 -3
  106. package/build-types/color-ramps/lib/taper-chroma.d.ts.map +1 -1
  107. package/build-types/color-ramps/lib/utils.d.ts +28 -5
  108. package/build-types/color-ramps/lib/utils.d.ts.map +1 -1
  109. package/build-types/color-ramps/stories/index.story.d.ts.map +1 -1
  110. package/build-types/prebuilt/ts/color-tokens.d.ts +7 -0
  111. package/build-types/prebuilt/ts/color-tokens.d.ts.map +1 -0
  112. package/build-types/stories/index.story.d.ts.map +1 -1
  113. package/build-types/theme-provider.d.ts.map +1 -1
  114. package/build-types/token-id.d.ts +9 -0
  115. package/build-types/token-id.d.ts.map +1 -0
  116. package/build-types/use-theme-provider-styles.d.ts +4 -0
  117. package/build-types/use-theme-provider-styles.d.ts.map +1 -1
  118. package/docs/ds-tokens.md +22 -156
  119. package/package.json +19 -9
  120. package/src/color-ramps/index.ts +24 -41
  121. package/src/color-ramps/lib/color-utils.ts +34 -0
  122. package/src/color-ramps/lib/constants.ts +13 -9
  123. package/src/color-ramps/lib/default-ramps.ts +200 -0
  124. package/src/color-ramps/lib/find-color-with-constraints.ts +83 -116
  125. package/src/color-ramps/lib/index.ts +107 -145
  126. package/src/color-ramps/lib/ramp-configs.ts +3 -3
  127. package/src/color-ramps/lib/register-color-spaces.ts +13 -0
  128. package/src/color-ramps/lib/taper-chroma.ts +47 -19
  129. package/src/color-ramps/lib/utils.ts +117 -14
  130. package/src/color-ramps/stories/index.story.tsx +16 -22
  131. package/src/color-ramps/test/__snapshots__/index.test.ts.snap +45722 -376
  132. package/src/color-ramps/test/index.test.ts +68 -29
  133. package/src/prebuilt/css/design-tokens.css +88 -355
  134. package/src/prebuilt/js/design-tokens.js +17 -10
  135. package/src/prebuilt/json/figma.json +165 -783
  136. package/src/prebuilt/ts/color-tokens.ts +117 -0
  137. package/src/stories/index.story.tsx +4 -18
  138. package/src/test/token-id.test.ts +12 -0
  139. package/src/token-id.ts +9 -0
  140. package/src/use-theme-provider-styles.ts +67 -60
  141. package/terrazzo.config.ts +15 -12
  142. package/tokens/color.json +221 -69
  143. package/tokens/dimension.json +75 -0
  144. package/tsconfig.bin.json +13 -0
  145. package/tsconfig.bin.tsbuildinfo +1 -0
  146. package/tsconfig.json +6 -4
  147. package/tsconfig.src.json +9 -0
  148. package/tsconfig.src.tsbuildinfo +1 -0
  149. package/bin/build-tokens.js +0 -83
  150. package/build/color-ramps/lib/cache-utils.js +0 -57
  151. package/build/color-ramps/lib/cache-utils.js.map +0 -7
  152. package/build/prebuilt/ts/design-tokens.js +0 -354
  153. package/build/prebuilt/ts/design-tokens.js.map +0 -7
  154. package/build/style.module.css.js +0 -2
  155. package/build-module/color-ramps/lib/cache-utils.js +0 -31
  156. package/build-module/color-ramps/lib/cache-utils.js.map +0 -7
  157. package/build-module/prebuilt/ts/design-tokens.js +0 -334
  158. package/build-module/prebuilt/ts/design-tokens.js.map +0 -7
  159. package/build-module/style.module.css.js +0 -1
  160. package/build-style/style.css +0 -3
  161. package/build-types/color-ramps/lib/cache-utils.d.ts +0 -22
  162. package/build-types/color-ramps/lib/cache-utils.d.ts.map +0 -1
  163. package/build-types/prebuilt/ts/design-tokens.d.ts +0 -7
  164. package/build-types/prebuilt/ts/design-tokens.d.ts.map +0 -1
  165. package/src/color-ramps/lib/cache-utils.ts +0 -56
  166. package/src/prebuilt/ts/design-tokens.ts +0 -335
  167. package/tokens/spacing.json +0 -45
  168. package/tsconfig.tsbuildinfo +0 -1
@@ -30,735 +30,87 @@
30
30
  },
31
31
  "description": "Border width for focus ring"
32
32
  },
33
- "Color/_Primitives/Primary/bgFill1": {
34
- "value": {
35
- ".": "#3858e9"
36
- }
37
- },
38
- "Color/_Primitives/Primary/fgFill": {
39
- "value": {
40
- ".": "#eff0f2"
41
- }
42
- },
43
- "Color/_Primitives/Primary/bgFill2": {
44
- "value": {
45
- ".": "#2c47d7"
46
- }
47
- },
48
- "Color/_Primitives/Primary/surface2": {
49
- "value": {
50
- ".": "#f6f8fc"
51
- }
52
- },
53
- "Color/_Primitives/Primary/surface6": {
54
- "value": {
55
- ".": "#c4d0ee"
56
- }
57
- },
58
- "Color/_Primitives/Primary/surface5": {
59
- "value": {
60
- ".": "#d7dff3"
61
- }
62
- },
63
- "Color/_Primitives/Primary/surface4": {
64
- "value": {
65
- ".": "#e5eaf7"
66
- }
67
- },
68
- "Color/_Primitives/Primary/surface3": {
69
- "value": {
70
- ".": "#fff"
71
- }
72
- },
73
- "Color/_Primitives/Primary/fgSurface4": {
74
- "value": {
75
- ".": "#080071"
76
- }
77
- },
78
- "Color/_Primitives/Primary/fgSurface3": {
79
- "value": {
80
- ".": "#3858e9"
81
- }
82
- },
83
- "Color/_Primitives/Primary/fgSurface2": {
84
- "value": {
85
- ".": "#577fff"
86
- }
87
- },
88
- "Color/_Primitives/Primary/fgSurface1": {
89
- "value": {
90
- ".": "#81a6ff"
91
- }
92
- },
93
- "Color/_Primitives/Primary/stroke3": {
94
- "value": {
95
- ".": "#3858e9"
96
- }
97
- },
98
- "Color/_Primitives/Primary/stroke4": {
99
- "value": {
100
- ".": "#2236c7"
101
- }
102
- },
103
- "Color/_Primitives/Primary/stroke2": {
104
- "value": {
105
- ".": "#7085c0"
106
- }
107
- },
108
- "Color/_Primitives/Primary/stroke1": {
109
- "value": {
110
- ".": "#93a4d0"
111
- }
112
- },
113
- "Color/_Primitives/Primary/bgFillDark": {
114
- "value": {
115
- ".": "#1b1e26"
116
- }
117
- },
118
- "Color/_Primitives/Primary/fgFillDark": {
119
- "value": {
120
- ".": "#eff0f2"
121
- }
122
- },
123
- "Color/_Primitives/Primary/bgFillInverted2": {
124
- "value": {
125
- ".": "#1b1e26"
126
- }
127
- },
128
- "Color/_Primitives/Primary/bgFillInverted1": {
129
- "value": {
130
- ".": "#1401a5"
131
- }
132
- },
133
- "Color/_Primitives/Primary/fgFillInverted": {
134
- "value": {
135
- ".": "#eff0f2"
136
- }
137
- },
138
- "Color/_Primitives/Primary/surface1": {
139
- "value": {
140
- ".": "#ecf0f9"
141
- }
142
- },
143
- "Color/_Primitives/Info/bgFill1": {
144
- "value": {
145
- ".": "#0090ff"
146
- }
147
- },
148
- "Color/_Primitives/Info/fgFill": {
149
- "value": {
150
- ".": "#1b1e23"
151
- }
152
- },
153
- "Color/_Primitives/Info/bgFill2": {
154
- "value": {
155
- ".": "#007eec"
156
- }
157
- },
158
- "Color/_Primitives/Info/surface2": {
159
- "value": {
160
- ".": "#f5f9fd"
161
- }
162
- },
163
- "Color/_Primitives/Info/surface6": {
164
- "value": {
165
- ".": "#b9d3f0"
166
- }
167
- },
168
- "Color/_Primitives/Info/surface5": {
169
- "value": {
170
- ".": "#d0e1f5"
171
- }
172
- },
173
- "Color/_Primitives/Info/surface4": {
174
- "value": {
175
- ".": "#e0ecf8"
176
- }
177
- },
178
- "Color/_Primitives/Info/surface3": {
179
- "value": {
180
- ".": "#fff"
181
- }
182
- },
183
- "Color/_Primitives/Info/fgSurface4": {
184
- "value": {
185
- ".": "#001758"
186
- }
187
- },
188
- "Color/_Primitives/Info/fgSurface3": {
189
- "value": {
190
- ".": "#006cd8"
191
- }
192
- },
193
- "Color/_Primitives/Info/fgSurface2": {
194
- "value": {
195
- ".": "#008bf9"
196
- }
197
- },
198
- "Color/_Primitives/Info/fgSurface1": {
199
- "value": {
200
- ".": "#4dafff"
201
- }
202
- },
203
- "Color/_Primitives/Info/stroke3": {
204
- "value": {
205
- ".": "#006cd8"
206
- }
207
- },
208
- "Color/_Primitives/Info/stroke4": {
209
- "value": {
210
- ".": "#004bb5"
211
- }
212
- },
213
- "Color/_Primitives/Info/stroke2": {
214
- "value": {
215
- ".": "#5c90c9"
216
- }
217
- },
218
- "Color/_Primitives/Info/stroke1": {
219
- "value": {
220
- ".": "#8baed6"
221
- }
222
- },
223
- "Color/_Primitives/Info/bgFillDark": {
224
- "value": {
225
- ".": "#1b1e23"
226
- }
227
- },
228
- "Color/_Primitives/Info/fgFillDark": {
229
- "value": {
230
- ".": "#eff0f2"
231
- }
232
- },
233
- "Color/_Primitives/Info/bgFillInverted2": {
234
- "value": {
235
- ".": "#1b1e23"
236
- }
237
- },
238
- "Color/_Primitives/Info/bgFillInverted1": {
239
- "value": {
240
- ".": "#00297b"
241
- }
242
- },
243
- "Color/_Primitives/Info/fgFillInverted": {
244
- "value": {
245
- ".": "#eff0f2"
246
- }
247
- },
248
- "Color/_Primitives/Info/surface1": {
249
- "value": {
250
- ".": "#e9f1fa"
251
- }
252
- },
253
- "Color/_Primitives/Success/bgFill1": {
254
- "value": {
255
- ".": "#4ab866"
256
- }
257
- },
258
- "Color/_Primitives/Success/fgFill": {
259
- "value": {
260
- ".": "#1b1f1c"
261
- }
262
- },
263
- "Color/_Primitives/Success/bgFill2": {
264
- "value": {
265
- ".": "#34a554"
266
- }
267
- },
268
- "Color/_Primitives/Success/surface2": {
269
- "value": {
270
- ".": "#f0fcf2"
271
- }
272
- },
273
- "Color/_Primitives/Success/surface6": {
274
- "value": {
275
- ".": "#7be792"
276
- }
277
- },
278
- "Color/_Primitives/Success/surface5": {
279
- "value": {
280
- ".": "#abf0b7"
281
- }
282
- },
283
- "Color/_Primitives/Success/surface4": {
284
- "value": {
285
- ".": "#cdf5d2"
286
- }
287
- },
288
- "Color/_Primitives/Success/surface3": {
289
- "value": {
290
- ".": "#fff"
291
- }
292
- },
293
- "Color/_Primitives/Success/fgSurface4": {
294
- "value": {
295
- ".": "#002b00"
296
- }
297
- },
298
- "Color/_Primitives/Success/fgSurface3": {
299
- "value": {
300
- ".": "#008030"
301
- }
302
- },
303
- "Color/_Primitives/Success/fgSurface2": {
304
- "value": {
305
- ".": "#2a9e4d"
306
- }
307
- },
308
- "Color/_Primitives/Success/fgSurface1": {
309
- "value": {
310
- ".": "#52bf6d"
311
- }
312
- },
313
- "Color/_Primitives/Success/stroke3": {
314
- "value": {
315
- ".": "#008030"
316
- }
317
- },
318
- "Color/_Primitives/Success/stroke4": {
319
- "value": {
320
- ".": "#006013"
321
- }
322
- },
323
- "Color/_Primitives/Success/stroke2": {
324
- "value": {
325
- ".": "#629a6c"
326
- }
327
- },
328
- "Color/_Primitives/Success/stroke1": {
329
- "value": {
330
- ".": "#78bb84"
331
- }
332
- },
333
- "Color/_Primitives/Success/bgFillDark": {
334
- "value": {
335
- ".": "#1b1f1c"
336
- }
337
- },
338
- "Color/_Primitives/Success/fgFillDark": {
339
- "value": {
340
- ".": "#edf2ed"
341
- }
342
- },
343
- "Color/_Primitives/Success/bgFillInverted2": {
344
- "value": {
345
- ".": "#1b1f1c"
346
- }
347
- },
348
- "Color/_Primitives/Success/bgFillInverted1": {
349
- "value": {
350
- ".": "#003b00"
351
- }
352
- },
353
- "Color/_Primitives/Success/fgFillInverted": {
354
- "value": {
355
- ".": "#edf2ed"
356
- }
357
- },
358
- "Color/_Primitives/Success/surface1": {
359
- "value": {
360
- ".": "#ddf8e1"
361
- }
362
- },
363
- "Color/_Primitives/Warning/bgFill1": {
364
- "value": {
365
- ".": "#f0b849"
366
- }
367
- },
368
- "Color/_Primitives/Warning/fgFill": {
369
- "value": {
370
- ".": "#1f1e1b"
371
- }
372
- },
373
- "Color/_Primitives/Warning/bgFill2": {
374
- "value": {
375
- ".": "#dba32f"
376
- }
377
- },
378
- "Color/_Primitives/Warning/surface2": {
379
- "value": {
380
- ".": "#fdf7ee"
381
- }
382
- },
383
- "Color/_Primitives/Warning/surface6": {
384
- "value": {
385
- ".": "#f0cb89"
386
- }
387
- },
388
- "Color/_Primitives/Warning/surface5": {
389
- "value": {
390
- ".": "#f5dcb2"
391
- }
392
- },
393
- "Color/_Primitives/Warning/surface4": {
394
- "value": {
395
- ".": "#f8e8cd"
396
- }
397
- },
398
- "Color/_Primitives/Warning/surface3": {
399
- "value": {
400
- ".": "#fff"
401
- }
402
- },
403
- "Color/_Primitives/Warning/fgSurface4": {
404
- "value": {
405
- ".": "#2f1800"
406
- }
407
- },
408
- "Color/_Primitives/Warning/fgSurface3": {
409
- "value": {
410
- ".": "#966200"
411
- }
412
- },
413
- "Color/_Primitives/Warning/fgSurface2": {
414
- "value": {
415
- ".": "#b58000"
416
- }
417
- },
418
- "Color/_Primitives/Warning/fgSurface1": {
419
- "value": {
420
- ".": "#d7a02b"
421
- }
422
- },
423
- "Color/_Primitives/Warning/stroke3": {
424
- "value": {
425
- ".": "#966200"
426
- }
427
- },
428
- "Color/_Primitives/Warning/stroke4": {
429
- "value": {
430
- ".": "#724700"
431
- }
432
- },
433
- "Color/_Primitives/Warning/stroke2": {
434
- "value": {
435
- ".": "#a18a61"
436
- }
437
- },
438
- "Color/_Primitives/Warning/stroke1": {
439
- "value": {
440
- ".": "#c3a777"
441
- }
442
- },
443
- "Color/_Primitives/Warning/bgFillDark": {
444
- "value": {
445
- ".": "#1f1e1b"
446
- }
447
- },
448
- "Color/_Primitives/Warning/fgFillDark": {
449
- "value": {
450
- ".": "#f3f0e9"
451
- }
452
- },
453
- "Color/_Primitives/Warning/bgFillInverted2": {
454
- "value": {
455
- ".": "#1f1e1b"
456
- }
457
- },
458
- "Color/_Primitives/Warning/bgFillInverted1": {
459
- "value": {
460
- ".": "#472900"
461
- }
462
- },
463
- "Color/_Primitives/Warning/fgFillInverted": {
464
- "value": {
465
- ".": "#f3f0e9"
466
- }
467
- },
468
- "Color/_Primitives/Warning/surface1": {
469
- "value": {
470
- ".": "#faefdc"
471
- }
472
- },
473
- "Color/_Primitives/Error/bgFill1": {
474
- "value": {
475
- ".": "#cc1818"
476
- }
477
- },
478
- "Color/_Primitives/Error/fgFill": {
479
- "value": {
480
- ".": "#f2efef"
481
- }
482
- },
483
- "Color/_Primitives/Error/bgFill2": {
484
- "value": {
485
- ".": "#b90000"
486
- }
487
- },
488
- "Color/_Primitives/Error/surface2": {
489
- "value": {
490
- ".": "#fdf6f5"
491
- }
492
- },
493
- "Color/_Primitives/Error/surface6": {
494
- "value": {
495
- ".": "#f5c5bd"
496
- }
497
- },
498
- "Color/_Primitives/Error/surface5": {
499
- "value": {
500
- ".": "#f8d8d3"
501
- }
502
- },
503
- "Color/_Primitives/Error/surface4": {
504
- "value": {
505
- ".": "#fae5e2"
506
- }
507
- },
508
- "Color/_Primitives/Error/surface3": {
509
- "value": {
510
- ".": "#fff"
511
- }
512
- },
513
- "Color/_Primitives/Error/fgSurface4": {
514
- "value": {
515
- ".": "#4a0000"
516
- }
517
- },
518
- "Color/_Primitives/Error/fgSurface3": {
519
- "value": {
520
- ".": "#cc1818"
521
- }
522
- },
523
- "Color/_Primitives/Error/fgSurface2": {
524
- "value": {
525
- ".": "#f64b40"
526
- }
527
- },
528
- "Color/_Primitives/Error/fgSurface1": {
529
- "value": {
530
- ".": "#ff8070"
531
- }
532
- },
533
- "Color/_Primitives/Error/stroke3": {
534
- "value": {
535
- ".": "#cc1818"
536
- }
537
- },
538
- "Color/_Primitives/Error/stroke4": {
539
- "value": {
540
- ".": "#a30000"
541
- }
542
- },
543
- "Color/_Primitives/Error/stroke2": {
544
- "value": {
545
- ".": "#cd695d"
546
- }
547
- },
548
- "Color/_Primitives/Error/stroke1": {
549
- "value": {
550
- ".": "#dc9085"
551
- }
552
- },
553
- "Color/_Primitives/Error/bgFillDark": {
554
- "value": {
555
- ".": "#231c1b"
556
- }
557
- },
558
- "Color/_Primitives/Error/fgFillDark": {
559
- "value": {
560
- ".": "#f2efef"
561
- }
562
- },
563
- "Color/_Primitives/Error/bgFillInverted2": {
564
- "value": {
565
- ".": "#231c1b"
566
- }
567
- },
568
- "Color/_Primitives/Error/bgFillInverted1": {
569
- "value": {
570
- ".": "#6d0000"
571
- }
572
- },
573
- "Color/_Primitives/Error/fgFillInverted": {
574
- "value": {
575
- ".": "#f2efef"
576
- }
577
- },
578
- "Color/_Primitives/Error/surface1": {
579
- "value": {
580
- ".": "#fcedea"
581
- }
582
- },
583
- "Color/_Primitives/Bg/surface2": {
584
- "value": {
585
- ".": "#f8f8f8"
586
- }
587
- },
588
- "Color/_Primitives/Bg/bgFill1": {
589
- "value": {
590
- ".": "#555"
591
- }
592
- },
593
- "Color/_Primitives/Bg/fgFill": {
594
- "value": {
595
- ".": "#f0f0f0"
596
- }
597
- },
598
- "Color/_Primitives/Bg/bgFill2": {
599
- "value": {
600
- ".": "#474747"
601
- }
602
- },
603
- "Color/_Primitives/Bg/surface6": {
604
- "value": {
605
- ".": "#d0d0d0"
606
- }
607
- },
608
- "Color/_Primitives/Bg/surface5": {
609
- "value": {
610
- ".": "#dfdfdf"
611
- }
612
- },
613
- "Color/_Primitives/Bg/surface4": {
614
- "value": {
615
- ".": "#eaeaea"
616
- }
617
- },
618
- "Color/_Primitives/Bg/surface3": {
619
- "value": {
620
- ".": "#fff"
621
- }
622
- },
623
- "Color/_Primitives/Bg/fgSurface4": {
624
- "value": {
625
- ".": "#1e1e1e"
626
- }
627
- },
628
- "Color/_Primitives/Bg/fgSurface3": {
629
- "value": {
630
- ".": "#6c6c6c"
631
- }
632
- },
633
- "Color/_Primitives/Bg/fgSurface2": {
634
- "value": {
635
- ".": "#898989"
636
- }
637
- },
638
- "Color/_Primitives/Bg/fgSurface1": {
639
- "value": {
640
- ".": "#a9a9a9"
641
- }
642
- },
643
- "Color/_Primitives/Bg/stroke3": {
644
- "value": {
645
- ".": "#898989"
646
- }
647
- },
648
- "Color/_Primitives/Bg/stroke4": {
649
- "value": {
650
- ".": "#6a6a6a"
651
- }
652
- },
653
- "Color/_Primitives/Bg/stroke2": {
654
- "value": {
655
- ".": "#aeaeae"
656
- }
657
- },
658
- "Color/_Primitives/Bg/stroke1": {
659
- "value": {
660
- ".": "#d0d0d0"
661
- }
662
- },
663
- "Color/_Primitives/Bg/bgFillDark": {
664
- "value": {
665
- ".": "#1e1e1e"
666
- }
667
- },
668
- "Color/_Primitives/Bg/fgFillDark": {
669
- "value": {
670
- ".": "#f0f0f0"
671
- }
672
- },
673
- "Color/_Primitives/Bg/bgFillInverted2": {
674
- "value": {
675
- ".": "#1e1e1e"
676
- }
677
- },
678
- "Color/_Primitives/Bg/bgFillInverted1": {
679
- "value": {
680
- ".": "#2f2f2f"
681
- }
682
- },
683
- "Color/_Primitives/Bg/fgFillInverted": {
684
- "value": {
685
- ".": "#f0f0f0"
686
- }
687
- },
688
- "Color/_Primitives/Bg/surface1": {
689
- "value": {
690
- ".": "#efefef"
691
- }
692
- },
693
33
  "Color/Semantic/Background/Neutral/bgSur-neutral": {
694
34
  "value": {
695
- ".": "{Color/_Primitives/Bg/surface2}"
35
+ ".": "#f8f8f8"
696
36
  },
697
37
  "description": "Background color for surfaces with normal emphasis."
698
38
  },
699
39
  "Color/Semantic/Background/Neutral/bgSur-neutral-strong": {
700
40
  "value": {
701
- ".": "{Color/_Primitives/Bg/surface3}"
41
+ ".": "#fff"
702
42
  },
703
43
  "description": "Background color for surfaces with strong emphasis."
704
44
  },
705
45
  "Color/Semantic/Background/Neutral/bgSur-neutral-weak": {
706
46
  "value": {
707
- ".": "{Color/_Primitives/Bg/surface1}"
47
+ ".": "#f0f0f0"
708
48
  },
709
49
  "description": "Background color for surfaces with weak emphasis."
710
50
  },
711
51
  "Color/Semantic/Background/Brand/bgSur-brand": {
712
52
  "value": {
713
- ".": "{Color/_Primitives/Primary/surface1}"
53
+ ".": "#edf0fa"
714
54
  },
715
55
  "description": "Background color for surfaces with brand tone and normal emphasis."
716
56
  },
717
57
  "Color/Semantic/Background/Success/bgSur-success": {
718
58
  "value": {
719
- ".": "{Color/_Primitives/Success/surface4}"
59
+ ".": "#cdf5d3"
720
60
  },
721
61
  "description": "Background color for surfaces with success tone and normal emphasis."
722
62
  },
723
63
  "Color/Semantic/Background/Success/bgSur-success-weak": {
724
64
  "value": {
725
- ".": "{Color/_Primitives/Success/surface2}"
65
+ ".": "#f0fcf2"
726
66
  },
727
67
  "description": "Background color for surfaces with success tone and weak emphasis."
728
68
  },
729
69
  "Color/Semantic/Background/Info/bgSur-info": {
730
70
  "value": {
731
- ".": "{Color/_Primitives/Info/surface4}"
71
+ ".": "#e0ebf8"
732
72
  },
733
73
  "description": "Background color for surfaces with info tone and normal emphasis."
734
74
  },
735
75
  "Color/Semantic/Background/Info/bgSur-info-weak": {
736
76
  "value": {
737
- ".": "{Color/_Primitives/Info/surface2}"
77
+ ".": "#f5f9fd"
738
78
  },
739
79
  "description": "Background color for surfaces with info tone and weak emphasis."
740
80
  },
741
81
  "Color/Semantic/Background/Warning/bgSur-warning": {
742
82
  "value": {
743
- ".": "{Color/_Primitives/Warning/surface4}"
83
+ ".": "#f8e9cd"
744
84
  },
745
85
  "description": "Background color for surfaces with warning tone and normal emphasis."
746
86
  },
747
87
  "Color/Semantic/Background/Warning/bgSur-warning-weak": {
748
88
  "value": {
749
- ".": "{Color/_Primitives/Warning/surface2}"
89
+ ".": "#fdf7ee"
750
90
  },
751
91
  "description": "Background color for surfaces with warning tone and weak emphasis."
752
92
  },
93
+ "Color/Semantic/Background/Caution/bgSur-caution": {
94
+ "value": {
95
+ ".": "#f8ebb5"
96
+ },
97
+ "description": "Background color for surfaces with caution tone and normal emphasis."
98
+ },
99
+ "Color/Semantic/Background/Caution/bgSur-caution-weak": {
100
+ "value": {
101
+ ".": "#fdf9e7"
102
+ },
103
+ "description": "Background color for surfaces with caution tone and weak emphasis."
104
+ },
753
105
  "Color/Semantic/Background/Error/bgSur-error": {
754
106
  "value": {
755
- ".": "{Color/_Primitives/Error/surface4}"
107
+ ".": "#fae5e2"
756
108
  },
757
109
  "description": "Background color for surfaces with error tone and normal emphasis."
758
110
  },
759
111
  "Color/Semantic/Background/Error/bgSur-error-weak": {
760
112
  "value": {
761
- ".": "{Color/_Primitives/Error/surface2}"
113
+ ".": "#fdf6f5"
762
114
  },
763
115
  "description": "Background color for surfaces with error tone and weak emphasis."
764
116
  },
@@ -770,31 +122,31 @@
770
122
  },
771
123
  "Color/Semantic/Background/Neutral/bgInt-neutral-active": {
772
124
  "value": {
773
- ".": "{Color/_Primitives/Bg/surface4}"
125
+ ".": "#eaeaea"
774
126
  },
775
127
  "description": "Background color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active."
776
128
  },
777
129
  "Color/Semantic/Background/Neutral/bgInt-neutral-disabled": {
778
130
  "value": {
779
- ".": "{Color/_Primitives/Bg/surface5}"
131
+ ".": "#e3e3e3"
780
132
  },
781
133
  "description": "Background color for interactive elements with neutral tone and normal emphasis, in their disabled state."
782
134
  },
783
135
  "Color/Semantic/Background/Neutral/bgInt-neutral-strong": {
784
136
  "value": {
785
- ".": "{Color/_Primitives/Bg/bgFillInverted1}"
137
+ ".": "#2d2d2d"
786
138
  },
787
139
  "description": "Background color for interactive elements with neutral tone and strong emphasis."
788
140
  },
789
141
  "Color/Semantic/Background/Neutral/bgInt-neutral-strong-active": {
790
142
  "value": {
791
- ".": "{Color/_Primitives/Bg/bgFillInverted2}"
143
+ ".": "#1e1e1e"
792
144
  },
793
145
  "description": "Background color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active."
794
146
  },
795
147
  "Color/Semantic/Background/Neutral/bgInt-neutral-strong-disabled": {
796
148
  "value": {
797
- ".": "{Color/_Primitives/Bg/surface6}"
149
+ ".": "#d3d3d3"
798
150
  },
799
151
  "description": "Background color for interactive elements with neutral tone and strong emphasis, in their disabled state."
800
152
  },
@@ -806,13 +158,13 @@
806
158
  },
807
159
  "Color/Semantic/Background/Neutral/bgInt-neutral-weak-active": {
808
160
  "value": {
809
- ".": "{Color/_Primitives/Bg/surface4}"
161
+ ".": "#eaeaea"
810
162
  },
811
163
  "description": "Background color for interactive elements with neutral tone and weak emphasis that are hovered, focused, or active."
812
164
  },
813
165
  "Color/Semantic/Background/Neutral/bgInt-neutral-weak-disabled": {
814
166
  "value": {
815
- ".": "{Color/_Primitives/Bg/surface5}"
167
+ ".": "#e3e3e3"
816
168
  },
817
169
  "description": "Background color for interactive elements with neutral tone and weak emphasis, in their disabled state."
818
170
  },
@@ -824,31 +176,31 @@
824
176
  },
825
177
  "Color/Semantic/Background/Brand/bgInt-brand-active": {
826
178
  "value": {
827
- ".": "{Color/_Primitives/Primary/surface2}"
179
+ ".": "#f6f8fc"
828
180
  },
829
181
  "description": "Background color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active."
830
182
  },
831
183
  "Color/Semantic/Background/Brand/bgInt-brand-disabled": {
832
184
  "value": {
833
- ".": "{Color/_Primitives/Bg/surface5}"
185
+ ".": "#e3e3e3"
834
186
  },
835
187
  "description": "Background color for interactive elements with brand tone and normal emphasis, in their disabled state."
836
188
  },
837
189
  "Color/Semantic/Background/Brand/bgInt-brand-strong": {
838
190
  "value": {
839
- ".": "{Color/_Primitives/Primary/bgFill1}"
191
+ ".": "#3858e9"
840
192
  },
841
193
  "description": "Background color for interactive elements with brand tone and strong emphasis."
842
194
  },
843
195
  "Color/Semantic/Background/Brand/bgInt-brand-strong-active": {
844
196
  "value": {
845
- ".": "{Color/_Primitives/Primary/bgFill2}"
197
+ ".": "#2e49da"
846
198
  },
847
199
  "description": "Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active."
848
200
  },
849
201
  "Color/Semantic/Background/Brand/bgInt-brand-strong-disabled": {
850
202
  "value": {
851
- ".": "{Color/_Primitives/Bg/surface6}"
203
+ ".": "#d3d3d3"
852
204
  },
853
205
  "description": "Background color for interactive elements with brand tone and strong emphasis, in their disabled state."
854
206
  },
@@ -860,369 +212,399 @@
860
212
  },
861
213
  "Color/Semantic/Background/Brand/bgInt-brand-weak-active": {
862
214
  "value": {
863
- ".": "{Color/_Primitives/Primary/surface4}"
215
+ ".": "#e5ebf7"
864
216
  },
865
217
  "description": "Background color for interactive elements with brand tone and weak emphasis that are hovered, focused, or active."
866
218
  },
867
219
  "Color/Semantic/Background/Brand/bgInt-brand-weak-disabled": {
868
220
  "value": {
869
- ".": "{Color/_Primitives/Bg/surface5}"
221
+ ".": "#e3e3e3"
870
222
  },
871
223
  "description": "Background color for interactive elements with brand tone and weak emphasis, in their disabled state."
872
224
  },
873
225
  "Color/Semantic/Background/Neutral/bgTra-neutral-weak": {
874
226
  "value": {
875
- ".": "{Color/_Primitives/Bg/stroke1}"
227
+ ".": "#cfcfcf"
876
228
  },
877
229
  "description": "Background color for tracks with a neutral tone and weak emphasis (eg. scrollbar track)."
878
230
  },
879
231
  "Color/Semantic/Background/Neutral/bgTra-neutral": {
880
232
  "value": {
881
- ".": "{Color/_Primitives/Bg/stroke2}"
233
+ ".": "#adadad"
882
234
  },
883
235
  "description": "Background color for tracks with a neutral tone and normal emphasis (eg. slider or progressbar track)."
884
236
  },
885
237
  "Color/Semantic/Background/Neutral/bgThu-neutral-weak": {
886
238
  "value": {
887
- ".": "{Color/_Primitives/Bg/stroke3}"
239
+ ".": "#8b8b8b"
888
240
  },
889
241
  "description": "Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb)."
890
242
  },
891
243
  "Color/Semantic/Background/Neutral/bgThu-neutral-weak-active": {
892
244
  "value": {
893
- ".": "{Color/_Primitives/Bg/stroke4}"
245
+ ".": "#6d6d6d"
894
246
  },
895
247
  "description": "Background color for thumbs with a neutral tone and weak emphasis (eg. scrollbar thumb) that are hovered, focused, or active."
896
248
  },
897
249
  "Color/Semantic/Background/Brand/bgThu-brand": {
898
250
  "value": {
899
- ".": "{Color/_Primitives/Primary/stroke3}"
251
+ ".": "#3858e9"
900
252
  },
901
253
  "description": "Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track)."
902
254
  },
903
255
  "Color/Semantic/Background/Brand/bgThu-brand-active": {
904
256
  "value": {
905
- ".": "{Color/_Primitives/Primary/stroke3}"
257
+ ".": "#3858e9"
906
258
  },
907
259
  "description": "Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track) that are hovered, focused, or active."
908
260
  },
909
261
  "Color/Semantic/Background/Brand/bgThu-brand-disabled": {
910
262
  "value": {
911
- ".": "{Color/_Primitives/Bg/stroke2}"
263
+ ".": "#adadad"
912
264
  },
913
265
  "description": "Background color for thumbs with a brand tone and normal emphasis (eg. slider thumb and filled track), in their disabled state."
914
266
  },
915
267
  "Color/Semantic/Foreground/Neutral/fgCon-neutral": {
916
268
  "value": {
917
- ".": "{Color/_Primitives/Bg/fgSurface4}"
269
+ ".": "#1e1e1e"
918
270
  },
919
271
  "description": "Foreground color for content like text with normal emphasis."
920
272
  },
921
273
  "Color/Semantic/Foreground/Neutral/fgCon-neutral-weak": {
922
274
  "value": {
923
- ".": "{Color/_Primitives/Bg/fgSurface3}"
275
+ ".": "#6e6e6e"
924
276
  },
925
277
  "description": "Foreground color for content like text with weak emphasis."
926
278
  },
279
+ "Color/Semantic/Foreground/Success/fgCon-success": {
280
+ "value": {
281
+ ".": "#002b00"
282
+ },
283
+ "description": "Foreground color for content like text with success tone and normal emphasis."
284
+ },
285
+ "Color/Semantic/Foreground/Success/fgCon-success-weak": {
286
+ "value": {
287
+ ".": "#008031"
288
+ },
289
+ "description": "Foreground color for content like text with success tone and weak emphasis."
290
+ },
291
+ "Color/Semantic/Foreground/Info/fgCon-info": {
292
+ "value": {
293
+ ".": "#001758"
294
+ },
295
+ "description": "Foreground color for content like text with info tone and normal emphasis."
296
+ },
297
+ "Color/Semantic/Foreground/Info/fgCon-info-weak": {
298
+ "value": {
299
+ ".": "#006dd9"
300
+ },
301
+ "description": "Foreground color for content like text with info tone and weak emphasis."
302
+ },
303
+ "Color/Semantic/Foreground/Warning/fgCon-warning": {
304
+ "value": {
305
+ ".": "#2f1800"
306
+ },
307
+ "description": "Foreground color for content like text with warning tone and normal emphasis."
308
+ },
309
+ "Color/Semantic/Foreground/Warning/fgCon-warning-weak": {
310
+ "value": {
311
+ ".": "#976300"
312
+ },
313
+ "description": "Foreground color for content like text with warning tone and weak emphasis."
314
+ },
315
+ "Color/Semantic/Foreground/Caution/fgCon-caution": {
316
+ "value": {
317
+ ".": "#291d00"
318
+ },
319
+ "description": "Foreground color for content like text with caution tone and normal emphasis."
320
+ },
321
+ "Color/Semantic/Foreground/Caution/fgCon-caution-weak": {
322
+ "value": {
323
+ ".": "#876b00"
324
+ },
325
+ "description": "Foreground color for content like text with caution tone and weak emphasis."
326
+ },
327
+ "Color/Semantic/Foreground/Error/fgCon-error": {
328
+ "value": {
329
+ ".": "#4a0000"
330
+ },
331
+ "description": "Foreground color for content like text with error tone and normal emphasis."
332
+ },
333
+ "Color/Semantic/Foreground/Error/fgCon-error-weak": {
334
+ "value": {
335
+ ".": "#cc1818"
336
+ },
337
+ "description": "Foreground color for content like text with error tone and weak emphasis."
338
+ },
927
339
  "Color/Semantic/Foreground/Neutral/fgInt-neutral": {
928
340
  "value": {
929
- ".": "{Color/_Primitives/Bg/fgSurface4}"
341
+ ".": "#1e1e1e"
930
342
  },
931
343
  "description": "Foreground color for interactive elements with neutral tone and normal emphasis."
932
344
  },
933
345
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-active": {
934
346
  "value": {
935
- ".": "{Color/_Primitives/Bg/fgSurface4}"
347
+ ".": "#1e1e1e"
936
348
  },
937
349
  "description": "Foreground color for interactive elements with neutral tone and normal emphasis that are hovered, focused, or active."
938
350
  },
939
351
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-disabled": {
940
352
  "value": {
941
- ".": "{Color/_Primitives/Bg/fgSurface2}"
353
+ ".": "#8b8b8b"
942
354
  },
943
355
  "description": "Foreground color for interactive elements with neutral tone and normal emphasis, in their disabled state."
944
356
  },
945
357
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-strong": {
946
358
  "value": {
947
- ".": "{Color/_Primitives/Bg/fgFillInverted}"
359
+ ".": "#f0f0f0"
948
360
  },
949
361
  "description": "Foreground color for interactive elements with neutral tone and strong emphasis."
950
362
  },
951
363
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-strong-active": {
952
364
  "value": {
953
- ".": "{Color/_Primitives/Bg/fgFillInverted}"
365
+ ".": "#f0f0f0"
954
366
  },
955
367
  "description": "Foreground color for interactive elements with neutral tone and strong emphasis that are hovered, focused, or active."
956
368
  },
957
369
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-strong-disabled": {
958
370
  "value": {
959
- ".": "{Color/_Primitives/Bg/fgSurface3}"
371
+ ".": "#6e6e6e"
960
372
  },
961
373
  "description": "Foreground color for interactive elements with neutral tone and strong emphasis, in their disabled state."
962
374
  },
963
375
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-weak": {
964
376
  "value": {
965
- ".": "{Color/_Primitives/Bg/fgSurface3}"
377
+ ".": "#6e6e6e"
966
378
  },
967
379
  "description": "Foreground color for interactive elements with neutral tone and weak emphasis."
968
380
  },
969
381
  "Color/Semantic/Foreground/Neutral/fgInt-neutral-weak-disabled": {
970
382
  "value": {
971
- ".": "{Color/_Primitives/Bg/fgSurface2}"
383
+ ".": "#8b8b8b"
972
384
  },
973
385
  "description": "Foreground color for interactive elements with neutral tone and weak emphasis, in their disabled state."
974
386
  },
975
387
  "Color/Semantic/Foreground/Brand/fgInt-brand": {
976
388
  "value": {
977
- ".": "{Color/_Primitives/Primary/fgSurface3}"
389
+ ".": "#3858e9"
978
390
  },
979
391
  "description": "Foreground color for interactive elements with brand tone and normal emphasis."
980
392
  },
981
393
  "Color/Semantic/Foreground/Brand/fgInt-brand-active": {
982
394
  "value": {
983
- ".": "{Color/_Primitives/Primary/fgSurface3}"
395
+ ".": "#3858e9"
984
396
  },
985
397
  "description": "Foreground color for interactive elements with brand tone and normal emphasis that are hovered, focused, or active."
986
398
  },
987
399
  "Color/Semantic/Foreground/Brand/fgInt-brand-disabled": {
988
400
  "value": {
989
- ".": "{Color/_Primitives/Bg/fgSurface2}"
401
+ ".": "#8b8b8b"
990
402
  },
991
403
  "description": "Foreground color for interactive elements with brand tone and normal emphasis, in their disabled state."
992
404
  },
993
405
  "Color/Semantic/Foreground/Brand/fgInt-brand-strong": {
994
406
  "value": {
995
- ".": "{Color/_Primitives/Primary/fgFill}"
407
+ ".": "#eff0f2"
996
408
  },
997
409
  "description": "Foreground color for interactive elements with brand tone and strong emphasis."
998
410
  },
999
411
  "Color/Semantic/Foreground/Brand/fgInt-brand-strong-active": {
1000
412
  "value": {
1001
- ".": "{Color/_Primitives/Primary/fgFill}"
413
+ ".": "#eff0f2"
1002
414
  },
1003
415
  "description": "Foreground color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active."
1004
416
  },
1005
417
  "Color/Semantic/Foreground/Brand/fgInt-brand-strong-disabled": {
1006
418
  "value": {
1007
- ".": "{Color/_Primitives/Bg/fgSurface3}"
419
+ ".": "#6e6e6e"
1008
420
  },
1009
421
  "description": "Foreground color for interactive elements with brand tone and strong emphasis, in their disabled state."
1010
422
  },
1011
423
  "Color/Semantic/Stroke/Neutral/strokeSur-neutral": {
1012
424
  "value": {
1013
- ".": "{Color/_Primitives/Bg/stroke2}"
425
+ ".": "#adadad"
1014
426
  },
1015
427
  "description": "Decorative stroke color used to define neutrally-toned surface boundaries with normal emphasis."
1016
428
  },
1017
429
  "Color/Semantic/Stroke/Neutral/strokeSur-neutral-weak": {
1018
430
  "value": {
1019
- ".": "{Color/_Primitives/Bg/stroke1}"
431
+ ".": "#cfcfcf"
1020
432
  },
1021
433
  "description": "Decorative stroke color used to define neutrally-toned surface boundaries with weak emphasis."
1022
434
  },
1023
435
  "Color/Semantic/Stroke/Neutral/strokeSur-neutral-strong": {
1024
436
  "value": {
1025
- ".": "{Color/_Primitives/Bg/stroke3}"
437
+ ".": "#8b8b8b"
1026
438
  },
1027
439
  "description": "Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis."
1028
440
  },
1029
441
  "Color/Semantic/Stroke/Brand/strokeSur-brand": {
1030
442
  "value": {
1031
- ".": "{Color/_Primitives/Primary/stroke1}"
443
+ ".": "#91a2cf"
1032
444
  },
1033
445
  "description": "Decorative stroke color used to define brand-toned surface boundaries with normal emphasis."
1034
446
  },
1035
447
  "Color/Semantic/Stroke/Brand/strokeSur-brand-strong": {
1036
448
  "value": {
1037
- ".": "{Color/_Primitives/Primary/stroke3}"
449
+ ".": "#3858e9"
1038
450
  },
1039
451
  "description": "Decorative stroke color used to define neutrally-toned surface boundaries with strong emphasis."
1040
452
  },
1041
453
  "Color/Semantic/Stroke/Success/strokeSur-success": {
1042
454
  "value": {
1043
- ".": "{Color/_Primitives/Success/stroke1}"
455
+ ".": "#77ba84"
1044
456
  },
1045
457
  "description": "Decorative stroke color used to define success-toned surface boundaries with normal emphasis."
1046
458
  },
1047
459
  "Color/Semantic/Stroke/Success/strokeSur-success-strong": {
1048
460
  "value": {
1049
- ".": "{Color/_Primitives/Success/stroke3}"
461
+ ".": "#008031"
1050
462
  },
1051
463
  "description": "Decorative stroke color used to define success-toned surface boundaries with strong emphasis."
1052
464
  },
1053
465
  "Color/Semantic/Stroke/Info/strokeSur-info": {
1054
466
  "value": {
1055
- ".": "{Color/_Primitives/Info/stroke1}"
467
+ ".": "#8aaed6"
1056
468
  },
1057
469
  "description": "Decorative stroke color used to define info-toned surface boundaries with normal emphasis."
1058
470
  },
1059
471
  "Color/Semantic/Stroke/Info/strokeSur-info-strong": {
1060
472
  "value": {
1061
- ".": "{Color/_Primitives/Info/stroke3}"
473
+ ".": "#006dd9"
1062
474
  },
1063
475
  "description": "Decorative stroke color used to define info-toned surface boundaries with strong emphasis."
1064
476
  },
1065
477
  "Color/Semantic/Stroke/Warning/strokeSur-warning": {
1066
478
  "value": {
1067
- ".": "{Color/_Primitives/Warning/stroke1}"
479
+ ".": "#c2a776"
1068
480
  },
1069
481
  "description": "Decorative stroke color used to define warning-toned surface boundaries with normal emphasis."
1070
482
  },
1071
483
  "Color/Semantic/Stroke/Warning/strokeSur-warning-strong": {
1072
484
  "value": {
1073
- ".": "{Color/_Primitives/Warning/stroke3}"
485
+ ".": "#976300"
1074
486
  },
1075
487
  "description": "Decorative stroke color used to define warning-toned surface boundaries with strong emphasis."
1076
488
  },
1077
489
  "Color/Semantic/Stroke/Error/strokeSur-error": {
1078
490
  "value": {
1079
- ".": "{Color/_Primitives/Error/stroke1}"
491
+ ".": "#dc8e83"
1080
492
  },
1081
493
  "description": "Decorative stroke color used to define error-toned surface boundaries with normal emphasis."
1082
494
  },
1083
495
  "Color/Semantic/Stroke/Error/strokeSur-error-strong": {
1084
496
  "value": {
1085
- ".": "{Color/_Primitives/Error/stroke3}"
497
+ ".": "#cc1818"
1086
498
  },
1087
499
  "description": "Decorative stroke color used to define error-toned surface boundaries with strong emphasis."
1088
500
  },
1089
501
  "Color/Semantic/Stroke/Neutral/strokeInt-neutral": {
1090
502
  "value": {
1091
- ".": "{Color/_Primitives/Bg/stroke3}"
503
+ ".": "#8b8b8b"
1092
504
  },
1093
505
  "description": "Accessible stroke color used for interactive neutrally-toned elements with normal emphasis."
1094
506
  },
1095
507
  "Color/Semantic/Stroke/Neutral/strokeInt-neutral-active": {
1096
508
  "value": {
1097
- ".": "{Color/_Primitives/Bg/stroke4}"
509
+ ".": "#6d6d6d"
1098
510
  },
1099
511
  "description": "Accessible stroke color used for interactive neutrally-toned elements with normal emphasis that are hovered, focused, or active."
1100
512
  },
1101
513
  "Color/Semantic/Stroke/Neutral/strokeInt-neutral-disabled": {
1102
514
  "value": {
1103
- ".": "{Color/_Primitives/Bg/stroke2}"
515
+ ".": "#adadad"
1104
516
  },
1105
517
  "description": "Accessible stroke color used for interactive neutrally-toned elements with normal emphasis, in their disabled state."
1106
518
  },
1107
519
  "Color/Semantic/Stroke/Neutral/strokeInt-neutral-strong": {
1108
520
  "value": {
1109
- ".": "{Color/_Primitives/Bg/stroke4}"
521
+ ".": "#6d6d6d"
1110
522
  },
1111
523
  "description": "Accessible stroke color used for interactive neutrally-toned elements with strong emphasis."
1112
524
  },
1113
525
  "Color/Semantic/Stroke/Brand/strokeInt-brand": {
1114
526
  "value": {
1115
- ".": "{Color/_Primitives/Primary/stroke3}"
527
+ ".": "#3858e9"
1116
528
  },
1117
529
  "description": "Accessible stroke color used for interactive brand-toned elements with normal emphasis."
1118
530
  },
1119
531
  "Color/Semantic/Stroke/Brand/strokeInt-brand-active": {
1120
532
  "value": {
1121
- ".": "{Color/_Primitives/Primary/stroke4}"
533
+ ".": "#2337c8"
1122
534
  },
1123
535
  "description": "Accessible stroke color used for interactive brand-toned elements with normal emphasis that are hovered, focused, or active."
1124
536
  },
1125
537
  "Color/Semantic/Stroke/Brand/strokeInt-brand-disabled": {
1126
538
  "value": {
1127
- ".": "{Color/_Primitives/Bg/stroke2}"
539
+ ".": "#adadad"
1128
540
  },
1129
541
  "description": "Accessible stroke color used for interactive brand-toned elements with normal emphasis, in their disabled state."
1130
542
  },
1131
543
  "Color/Semantic/Stroke/Error/strokeInt-error-strong": {
1132
544
  "value": {
1133
- ".": "{Color/_Primitives/Error/stroke3}"
545
+ ".": "#cc1818"
1134
546
  },
1135
547
  "description": "Accessible stroke color used for interactive error-toned elements with strong emphasis."
1136
548
  },
1137
549
  "Color/Semantic/Stroke/Brand/strokeFoc-brand": {
1138
550
  "value": {
1139
- ".": "{Color/_Primitives/Primary/stroke3}"
551
+ ".": "#3858e9"
1140
552
  },
1141
553
  "description": "Accessible stroke color applied to focus rings."
1142
554
  },
1143
- "Elevation/x-small": {
1144
- "value": {
1145
- ".": "0 1px 1px 0 color(srgb 0 0 0 / 0.03), 0 1px 2px 0 color(srgb 0 0 0 / 0.02), 0 3px 3px 0 color(srgb 0 0 0 / 0.02), 0 4px 4px 0 color(srgb 0 0 0 / 0.01)"
1146
- },
1147
- "description": "For sections and containers that group related content and controls, which may overlap other content. Example: Preview Frame."
1148
- },
1149
- "Elevation/small": {
1150
- "value": {
1151
- ".": "0 1px 2px 0 color(srgb 0 0 0 / 0.05), 0 2px 3px 0 color(srgb 0 0 0 / 0.04), 0 6px 6px 0 color(srgb 0 0 0 / 0.03), 0 8px 8px 0 color(srgb 0 0 0 / 0.02)"
1152
- },
1153
- "description": "For components that provide contextual feedback without being intrusive. Generally non-interruptive. Example: Tooltips, Snackbar."
1154
- },
1155
- "Elevation/medium": {
1156
- "value": {
1157
- ".": "0 2px 3px 0 color(srgb 0 0 0 / 0.05), 0 4px 5px 0 color(srgb 0 0 0 / 0.04), 0 12px 12px 0 color(srgb 0 0 0 / 0.03), 0 16px 16px 0 color(srgb 0 0 0 / 0.02)"
1158
- },
1159
- "description": "For components that offer additional actions. Example: Menus, Command Palette"
1160
- },
1161
- "Elevation/large": {
1162
- "value": {
1163
- ".": "0 5px 15px 0 color(srgb 0 0 0 / 0.08), 0 15px 27px 0 color(srgb 0 0 0 / 0.07), 0 30px 36px 0 color(srgb 0 0 0 / 0.04), 0 50px 43px 0 color(srgb 0 0 0 / 0.02)"
1164
- },
1165
- "description": "For components that confirm decisions or handle necessary interruptions. Example: Modals."
1166
- },
1167
- "Spacing/05": {
555
+ "Dimension/Semantic/base": {
1168
556
  "value": {
1169
557
  ".": "4px"
1170
558
  },
1171
- "description": "Extra small spacing"
559
+ "description": "Base dimension unit"
1172
560
  },
1173
- "Spacing/10": {
561
+ "Dimension/Semantic/padding-surface-x-small": {
1174
562
  "value": {
1175
563
  ".": "8px"
1176
564
  },
1177
- "description": "Small spacing"
565
+ "description": "Extra small spacing for surfaces"
1178
566
  },
1179
- "Spacing/15": {
567
+ "Dimension/Semantic/padding-surface-small": {
1180
568
  "value": {
1181
569
  ".": "12px"
1182
570
  },
1183
- "description": "Medium spacing"
571
+ "description": "Small spacing for surfaces"
1184
572
  },
1185
- "Spacing/20": {
573
+ "Dimension/Semantic/padding-surface-medium": {
1186
574
  "value": {
1187
575
  ".": "16px"
1188
576
  },
1189
- "description": "Large spacing"
577
+ "description": "Medium spacing for surfaces"
1190
578
  },
1191
- "Spacing/30": {
579
+ "Dimension/Semantic/padding-surface-large": {
1192
580
  "value": {
1193
581
  ".": "24px"
1194
582
  },
1195
- "description": "Extra large spacing"
1196
- },
1197
- "Spacing/40": {
1198
- "value": {
1199
- ".": "32px"
1200
- },
1201
- "description": "2X large spacing"
583
+ "description": "Large spacing for surfaces"
1202
584
  },
1203
- "Spacing/50": {
585
+ "Elevation/x-small": {
1204
586
  "value": {
1205
- ".": "40px"
587
+ ".": "0 1px 1px 0 color(srgb 0 0 0 / 0.03), 0 1px 2px 0 color(srgb 0 0 0 / 0.02), 0 3px 3px 0 color(srgb 0 0 0 / 0.02), 0 4px 4px 0 color(srgb 0 0 0 / 0.01)"
1206
588
  },
1207
- "description": "3X large spacing"
589
+ "description": "For sections and containers that group related content and controls, which may overlap other content. Example: Preview Frame."
1208
590
  },
1209
- "Spacing/60": {
591
+ "Elevation/small": {
1210
592
  "value": {
1211
- ".": "48px"
593
+ ".": "0 1px 2px 0 color(srgb 0 0 0 / 0.05), 0 2px 3px 0 color(srgb 0 0 0 / 0.04), 0 6px 6px 0 color(srgb 0 0 0 / 0.03), 0 8px 8px 0 color(srgb 0 0 0 / 0.02)"
1212
594
  },
1213
- "description": "4X large spacing"
595
+ "description": "For components that provide contextual feedback without being intrusive. Generally non-interruptive. Example: Tooltips, Snackbar."
1214
596
  },
1215
- "Spacing/70": {
597
+ "Elevation/medium": {
1216
598
  "value": {
1217
- ".": "56px"
599
+ ".": "0 2px 3px 0 color(srgb 0 0 0 / 0.05), 0 4px 5px 0 color(srgb 0 0 0 / 0.04), 0 12px 12px 0 color(srgb 0 0 0 / 0.03), 0 16px 16px 0 color(srgb 0 0 0 / 0.02)"
1218
600
  },
1219
- "description": "5X large spacing"
601
+ "description": "For components that offer additional actions. Example: Menus, Command Palette"
1220
602
  },
1221
- "Spacing/80": {
603
+ "Elevation/large": {
1222
604
  "value": {
1223
- ".": "64px"
605
+ ".": "0 5px 15px 0 color(srgb 0 0 0 / 0.08), 0 15px 27px 0 color(srgb 0 0 0 / 0.07), 0 30px 36px 0 color(srgb 0 0 0 / 0.04), 0 50px 43px 0 color(srgb 0 0 0 / 0.02)"
1224
606
  },
1225
- "description": "6X large spacing"
607
+ "description": "For components that confirm decisions or handle necessary interruptions. Example: Modals."
1226
608
  },
1227
609
  "Font/family-heading": {
1228
610
  "value": {