@adobe/spectrum-tokens 13.0.0-beta.2 → 13.0.0-beta.21

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 (84) hide show
  1. package/CHANGELOG.md +1379 -0
  2. package/dist/json/drover.json +826 -473
  3. package/dist/json/variables.json +9794 -6005
  4. package/moon.yml +1 -1
  5. package/package.json +7 -4
  6. package/schemas/components/action-bar.json +1 -1
  7. package/schemas/components/action-button.json +1 -1
  8. package/schemas/components/action-group.json +1 -1
  9. package/schemas/components/alert-banner.json +1 -1
  10. package/schemas/components/alert-dialog.json +1 -1
  11. package/schemas/components/avatar.json +1 -1
  12. package/schemas/components/badge.json +1 -1
  13. package/schemas/components/body.json +1 -1
  14. package/schemas/components/bottom-navigation-android.json +1 -1
  15. package/schemas/components/breadcrumbs.json +1 -1
  16. package/schemas/components/button-group.json +1 -1
  17. package/schemas/components/button.json +1 -1
  18. package/schemas/components/checkbox-group.json +1 -1
  19. package/schemas/components/checkbox.json +1 -1
  20. package/schemas/components/close-button.json +1 -1
  21. package/schemas/components/code.json +1 -1
  22. package/schemas/components/color-area.json +1 -1
  23. package/schemas/components/color-loupe.json +1 -1
  24. package/schemas/components/color-slider.json +1 -1
  25. package/schemas/components/color-wheel.json +1 -1
  26. package/schemas/components/combo-box.json +1 -1
  27. package/schemas/components/contextual-help.json +1 -1
  28. package/schemas/components/detail.json +1 -1
  29. package/schemas/components/divider.json +1 -1
  30. package/schemas/components/field-label.json +1 -1
  31. package/schemas/components/heading.json +1 -1
  32. package/schemas/components/help-text.json +1 -1
  33. package/schemas/components/in-line-alert.json +1 -1
  34. package/schemas/components/link.json +1 -1
  35. package/schemas/components/menu.json +1 -1
  36. package/schemas/components/meter.json +1 -1
  37. package/schemas/components/picker.json +1 -1
  38. package/schemas/components/popover.json +1 -1
  39. package/schemas/components/progress-bar.json +1 -1
  40. package/schemas/components/progress-circle.json +1 -1
  41. package/schemas/components/radio-group.json +1 -1
  42. package/schemas/components/rating.json +1 -1
  43. package/schemas/components/scroll-zoom-bar.json +1 -1
  44. package/schemas/components/side-navigation.json +1 -1
  45. package/schemas/components/slider.json +1 -1
  46. package/schemas/components/status-light.json +1 -1
  47. package/schemas/components/swatch-group.json +1 -1
  48. package/schemas/components/swatch.json +1 -1
  49. package/schemas/components/switch.json +1 -1
  50. package/schemas/components/tab-bar-ios.json +1 -1
  51. package/schemas/components/tabs.json +1 -1
  52. package/schemas/components/tag.json +1 -1
  53. package/schemas/components/text-area.json +1 -1
  54. package/schemas/components/text-field.json +1 -1
  55. package/schemas/components/toast.json +1 -1
  56. package/schemas/components/tooltip.json +1 -1
  57. package/schemas/components/tray.json +1 -1
  58. package/schemas/components/tree-view.json +1 -1
  59. package/schemas/token-types/alias.json +25 -0
  60. package/schemas/token-types/color-set.json +69 -0
  61. package/schemas/token-types/color.json +25 -0
  62. package/schemas/token-types/dimension.json +25 -0
  63. package/schemas/token-types/font-family.json +25 -0
  64. package/schemas/token-types/font-size.json +25 -0
  65. package/schemas/token-types/font-style.json +25 -0
  66. package/schemas/token-types/font-weight.json +25 -0
  67. package/schemas/token-types/multiplier.json +25 -0
  68. package/schemas/token-types/opacity.json +25 -0
  69. package/schemas/token-types/scale-set.json +60 -0
  70. package/schemas/token-types/set.json +22 -0
  71. package/schemas/token-types/text-transform.json +25 -0
  72. package/schemas/token-types/token.json +27 -0
  73. package/src/color-aliases.json +573 -119
  74. package/src/color-component.json +52 -12
  75. package/src/color-palette.json +3038 -414
  76. package/src/icons.json +18 -0
  77. package/src/layout-component.json +5120 -2385
  78. package/src/layout.json +773 -102
  79. package/src/semantic-color-palette.json +101 -1
  80. package/src/typography.json +285 -0
  81. package/test/checkId.test.js +55 -33
  82. package/test/componentSchemaValidator.test.js +74 -0
  83. package/test/schemaValidators/alias.test.js +41 -0
  84. package/test/tokenSchemaValidator.test.js +97 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1384 @@
1
1
  # @adobe/spectrum-tokens
2
2
 
3
+ ## 13.0.0-beta.21
4
+
5
+ ### Minor Changes
6
+
7
+ - d71bea1: S2 Opacity checkerboard non-color token updates
8
+
9
+ ## Design Motivation
10
+
11
+ These changes occurred as a result of scaling things for S2 design language and experiences.
12
+
13
+ ## Token Diff
14
+
15
+ _Tokens added (2):_
16
+
17
+ - `opacity-checkerboard-square-size-medium`
18
+ - `opacity-checkerboard-square-size-small`
19
+
20
+ _Newly deprecated token (1):_
21
+
22
+ - `opacity-checkerboard-square-size`
23
+
24
+ ## 13.0.0-beta.20
25
+
26
+ ### Minor Changes
27
+
28
+ - fb61f17: Added Title typography tokens
29
+
30
+ ## Design Motivation
31
+
32
+ Adding new typography styles for Title. While the Heading style is for the loudest, most broad message, there are still going to be other important items in your information hierarchy. The Title style is for text that’s communicating other need-to-know concepts. It’s often set in Bold weight, and it has a range of font sizes that can be paired with Body and Detail sizes to create visual balance. File names, cards, user names, panels, and other high-signal concepts in interfaces use the Title style.
33
+
34
+ ## Token Diff
35
+
36
+ _Tokens added (45):_
37
+
38
+ - `title-cjk-emphasized-font-style`
39
+ - `title-cjk-emphasized-font-weight`
40
+ - `title-cjk-font-family`
41
+ - `title-cjk-font-style`
42
+ - `title-cjk-font-weight`
43
+ - `title-cjk-line-height`
44
+ - `title-cjk-size-l`
45
+ - `title-cjk-size-m`
46
+ - `title-cjk-size-s`
47
+ - `title-cjk-size-xl`
48
+ - `title-cjk-size-xs`
49
+ - `title-cjk-size-xxl`
50
+ - `title-cjk-size-xxxl`
51
+ - `title-cjk-strong-emphasized-font-style`
52
+ - `title-cjk-strong-emphasized-font-weight`
53
+ - `title-cjk-strong-font-style`
54
+ - `title-cjk-strong-font-weight`
55
+ - `title-line-height`
56
+ - `title-margin-bottom-multiplier`
57
+ - `title-margin-top-multiplier`
58
+ - `title-sans-serif-emphasized-font-style`
59
+ - `title-sans-serif-emphasized-font-weight`
60
+ - `title-sans-serif-font-family`
61
+ - `title-sans-serif-font-style`
62
+ - `title-sans-serif-font-weight`
63
+ - `title-sans-serif-strong-emphasized-font-style`
64
+ - `title-sans-serif-strong-emphasized-font-weight`
65
+ - `title-sans-serif-strong-font-style`
66
+ - `title-sans-serif-strong-font-weight`
67
+ - `title-serif-emphasized-font-style`
68
+ - `title-serif-emphasized-font-weight`
69
+ - `title-serif-font-family`
70
+ - `title-serif-font-style`
71
+ - `title-serif-font-weight`
72
+ - `title-serif-strong-emphasized-font-style`
73
+ - `title-serif-strong-emphasized-font-weight`
74
+ - `title-serif-strong-font-style`
75
+ - `title-serif-strong-font-weight`
76
+ - `title-size-l`
77
+ - `title-size-m`
78
+ - `title-size-s`
79
+ - `title-size-xl`
80
+ - `title-size-xs`
81
+ - `title-size-xxl`
82
+ - `title-size-xxxl`
83
+
84
+ ## 13.0.0-beta.19
85
+
86
+ ### Minor Changes
87
+
88
+ - 723d3b0: Updated, added, and deprecated tokens for text field and text area.
89
+
90
+ ## Design Motivation
91
+
92
+ Updating text field and text area for Spectrum 2.
93
+
94
+ ## Token Diff
95
+
96
+ _Tokens added (4):_
97
+
98
+ - `field-width-small`
99
+ - `field-width-medium`
100
+ - `field-width-large`
101
+ - `field-width-extra-large`
102
+
103
+ _Updated token values (4):_
104
+
105
+ - `side-label-character-count-top-margin-small`
106
+ - `side-label-character-count-top-margin-medium`
107
+ - `side-label-character-count-top-margin-large`
108
+ - `side-label-character-count-top-margin-extra-large`
109
+
110
+ _Newly deprecated tokens (8):_
111
+
112
+ - `field-width`
113
+ - `field-edge-to-text-quiet`
114
+ - `field-edge-to-border-quiet`
115
+ - `field-edge-to-alert-icon-quiet`
116
+ - `field-edge-to-validation-icon-quiet`
117
+ - `field-label-to-component-quiet-small`
118
+ - `field-label-to-component-quiet-medium`
119
+ - `field-label-to-component-quiet-large`
120
+ - `field-label-to-component-quiet-extra-large`
121
+ - `character-count-to-field-quiet-small`
122
+ - `character-count-to-field-quiet-medium`
123
+ - `character-count-to-field-quiet-large`
124
+ - `character-count-to-field-quiet-extra-large`
125
+
126
+ - 66b1edf: Updated color of color-area-border-color token from gray.900 to gray.1000 in both light and dark sets.
127
+
128
+ ## Design motivation
129
+
130
+ These changes occurred as a result of scaling things for S2 design language and experiences.
131
+
132
+ ## Token Diff
133
+
134
+ _Token value updated (1):_
135
+
136
+ - `color-area-border-color`
137
+
138
+ - 7b5f18b: Update alert banner for Spectrum 2
139
+
140
+ ## Design Motivation
141
+
142
+ These changes occurred as a result of scaling things for S2 design language and experiences.
143
+
144
+ ## Token Diff
145
+
146
+ _Token values updated (5):_
147
+
148
+ - `alert-banner-bottom-to-text`
149
+ - `alert-banner-minimum-height`
150
+ - `alert-banner-top-to-text`
151
+ - `alert-banner-top-to-workflow-icon`
152
+ - `search-field-minimum-width-multiplier`
153
+
154
+ - 4a84fdd: Spectrum 2 Toast Tokens
155
+
156
+ ## Design motivation
157
+
158
+ Updated the `color-area-border-rounding` token type from spacing to borderRadius and adjusted value referenced, desktop and mobile scale.
159
+
160
+ These changes occurred as a result of scaling things for S2 design language and experiences.
161
+
162
+ ## Token Diff
163
+
164
+ _Token values updated (5):_
165
+
166
+ - `toast-height`
167
+ - `toast-top-to-workflow-icon`
168
+ - `toast-top-to-text`
169
+ - `toast-bottom-to-text`
170
+ - `color-area-border-rounding`
171
+
172
+ ## 13.0.0-beta.18
173
+
174
+ ### Minor Changes
175
+
176
+ - 940bd78: Updated background aliases in dark theme; added new non-semantic colors
177
+
178
+ ## Design Motivation
179
+
180
+ The existing background colors were updated for better consistency across semantic and non-semantic variants of the Badge component. The colors also introduce some general improved contrast in dark theme across other components using these aliases.
181
+ The new non-semantic visual and background colors were added because new hues were introduced. These colors will be used in status light and badge components, respectively.
182
+
183
+ ## Token Diff
184
+
185
+ _Tokens added (10):_
186
+
187
+ - `brown-background-color-default`
188
+ - `brown-visual-color`
189
+ - `cinnamon-background-color-default`
190
+ - `cinnamon-visual-color`
191
+ - `pink-background-color-default`
192
+ - `pink-visual-color`
193
+ - `silver-background-color-default`
194
+ - `silver-visual-color`
195
+ - `turquoise-background-color-default`
196
+ - `turquoise-visual-color`
197
+
198
+ _Token values updated (27):_
199
+
200
+ - `accent-background-color-default`
201
+ - `accent-background-color-down`
202
+ - `accent-background-color-hover`
203
+ - `accent-background-color-key-focus`
204
+ - `celery-background-color-default`
205
+ - `chartreuse-background-color-default`
206
+ - `gray-background-color-default`
207
+ - `informative-background-color-default`
208
+ - `informative-background-color-down`
209
+ - `informative-background-color-hover`
210
+ - `informative-background-color-key-focus`
211
+ - `negative-background-color-default`
212
+ - `negative-background-color-down`
213
+ - `negative-background-color-hover`
214
+ - `negative-background-color-key-focus`
215
+ - `neutral-subdued-background-color-default`
216
+ - `neutral-subdued-background-color-down`
217
+ - `neutral-subdued-background-color-hover`
218
+ - `neutral-subdued-background-color-key-focus`
219
+ - `notice-background-color-default`
220
+ - `orange-background-color-default`
221
+ - `positive-background-color-default`
222
+ - `positive-background-color-down`
223
+ - `positive-background-color-hover`
224
+ - `positive-background-color-key-focus`
225
+ - `table-selected-row-background-color`
226
+ - `yellow-background-color-default`
227
+
228
+ ## 13.0.0-beta.17
229
+
230
+ ### Minor Changes
231
+
232
+ - 9072ae7: `color-slider-border-color` token was updated to reference `gray-1000` instead of `gray-90`0 in both light and dark themes.
233
+ - 912e307: Updated `color-slider-border-rounding` token to use 7px instead of 4px in desktop only.
234
+ This token value update is the same value used by alias token: `corner-radius-medium-size-small`.
235
+
236
+ ## Design Motivation
237
+
238
+ S2 color slider design changes.
239
+
240
+ ## Token Diff
241
+
242
+ _Token values updated (2):_
243
+
244
+ - `color-slider-border-color`
245
+ - `color-slider-border-rounding`
246
+
247
+ ## 13.0.0-beta.16
248
+
249
+ ### Minor Changes
250
+
251
+ - 80a3fec: New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets.
252
+
253
+ ## Design Motivation
254
+
255
+ New values for tag component for S2.
256
+
257
+ ## Token Diff
258
+
259
+ _Tokens added (9):_
260
+
261
+ - `tag-edge-to-clear-icon-large`
262
+ - `tag-edge-to-clear-icon-medium`
263
+ - `tag-edge-to-clear-icon-small`
264
+ - `tag-label-clear-icon-large`
265
+ - `tag-label-to-clear-icon-large`
266
+ - `tag-label-to-clear-icon-medium`
267
+ - `tag-label-to-clear-icon-small`
268
+ - `tag-maximum-width-multiplier`
269
+ - `tag-minimum-width-multiplier`
270
+
271
+ ## 13.0.0-beta.15
272
+
273
+ ### Minor Changes
274
+
275
+ - c7c1d81: Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes.
276
+ - 4b78009: Updated values and added new tokens for Switch.
277
+
278
+ ## Design Motivation
279
+
280
+ New negative-subdued background tokens were needed for negative and not selected tag components.
281
+
282
+ Added new tokens: `switch-handle-size-_` and `switch-handle-selected-size-_` for both desktop and mobile.
283
+ Update token values on: `switch-control-width-_` and `switch-control-height-_` for both desktop and mobile.
284
+
285
+ The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated.
286
+
287
+ ## Token Diff
288
+
289
+ _Tokens added (12):_
290
+
291
+ - `negative-subdued-background-color-default`
292
+ - `negative-subdued-background-color-down`
293
+ - `negative-subdued-background-color-hover`
294
+ - `negative-subdued-background-color-key-focus`
295
+ - `switch-handle-selected-size-extra-large`
296
+ - `switch-handle-selected-size-large`
297
+ - `switch-handle-selected-size-medium`
298
+ - `switch-handle-selected-size-small`
299
+ - `switch-handle-size-extra-large`
300
+ - `switch-handle-size-large`
301
+ - `switch-handle-size-medium`
302
+ - `switch-handle-size-small`
303
+
304
+ _Token values updated (8):_
305
+
306
+ - `switch-control-height-extra-large`
307
+ - `switch-control-height-large`
308
+ - `switch-control-height-medium`
309
+ - `switch-control-height-small`
310
+ - `switch-control-width-extra-large`
311
+ - `switch-control-width-large`
312
+ - `switch-control-width-medium`
313
+ - `switch-control-width-small`
314
+
315
+ ## 13.0.0-beta.14
316
+
317
+ ### Minor Changes
318
+
319
+ - f004b0c: The tokens listed in the diff below had identical values between sets and so were merged to single values to simplify the data.
320
+
321
+ ## Token Diff
322
+
323
+ _Tokens values updated (46):_
324
+
325
+ - `accordion-disclosure-indicator-to-text`
326
+ - `accordion-edge-to-disclosure-indicator`
327
+ - `accordion-edge-to-text`
328
+ - `accordion-focus-indicator-gap`
329
+ - `accordion-top-to-text-compact-medium`
330
+ - `accordion-top-to-text-compact-small`
331
+ - `action-button-edge-to-hold-icon-extra-small`
332
+ - `action-button-edge-to-hold-icon-small`
333
+ - `asterisk-icon-size-75`
334
+ - `background-base-color`
335
+ - `background-layer-1-color`
336
+ - `color-area-border-rounding`
337
+ - `corner-radius-0`
338
+ - `corner-radius-100`
339
+ - `corner-radius-1000`
340
+ - `corner-radius-200`
341
+ - `corner-radius-300`
342
+ - `corner-radius-400`
343
+ - `corner-radius-500`
344
+ - `corner-radius-600`
345
+ - `corner-radius-700`
346
+ - `corner-radius-75`
347
+ - `corner-radius-800`
348
+ - `corner-radius-extra-large-default`
349
+ - `corner-radius-full`
350
+ - `corner-radius-large-default`
351
+ - `corner-radius-medium-default`
352
+ - `corner-radius-medium-size-extra-large`
353
+ - `corner-radius-medium-size-extra-small`
354
+ - `corner-radius-medium-size-large`
355
+ - `corner-radius-medium-size-medium`
356
+ - `corner-radius-medium-size-small`
357
+ - `corner-radius-none`
358
+ - `corner-radius-small-default`
359
+ - `corner-radius-small-size-extra-large`
360
+ - `corner-radius-small-size-large`
361
+ - `corner-radius-small-size-medium`
362
+ - `corner-radius-small-size-small`
363
+ - `drop-shadow-x`
364
+ - `field-label-top-margin-extra-large`
365
+ - `field-label-top-margin-large`
366
+ - `field-label-top-margin-medium`
367
+ - `field-label-top-margin-small`
368
+ - `gray-background-color-default`
369
+ - `status-light-dot-size-small`
370
+ - `table-edge-to-content`
371
+
372
+ ## 13.0.0-beta.13
373
+
374
+ ### Minor Changes
375
+
376
+ - ef600c4: ## Design Motivation
377
+
378
+ - The updated tooltip component in Spectrum 2 has a larger, slightly rounded tip
379
+ - Added tokens for horizontal and vertical orientation
380
+
381
+ ## Tokens Diff
382
+
383
+ _Tokens added (3):_
384
+
385
+ - `divider-horizontal-minimum-width`
386
+ - `divider-vertical-minimum-height`
387
+ - `tooltip-tip-corner-radius`
388
+
389
+ _Token values updated (2):_
390
+
391
+ - `tooltip-tip-height`
392
+ - `tooltip-tip-width`
393
+
394
+ ## 13.0.0-beta.12
395
+
396
+ ### Minor Changes
397
+
398
+ - c87d743: Updates to spacing tokens for the S2 field label component include:
399
+
400
+ Token: field-label-top-to-asterisk-[medium, large, extra-large]. Only value for extra-large token required updating in the desktop scale. All other sizes presented accurate values.
401
+
402
+ Token: field-label-top-margin-[medium, large, extra-large]. All values were updated to reflect 0px for both desktop and mobile scales
403
+
404
+ ## Design Motivation
405
+
406
+ These changes occurred as a result of updates to the field label component for S2.
407
+
408
+ ## Token Diff
409
+
410
+ _Token values updated (4):_
411
+
412
+ - `field-label-top-margin-extra-large`
413
+ - `field-label-top-margin-large`
414
+ - `field-label-top-margin-medium`
415
+ - `field-label-top-to-asterisk-extra-large`
416
+
417
+ ## Schema Diff
418
+
419
+ Adds missing schema information for `corner-radius-1000`. Also added `schemas/token-types/multiplier.json` to the `scale-set` schema.
420
+
421
+ ## 13.0.0-beta.11
422
+
423
+ ### Minor Changes
424
+
425
+ - 3c6303a: Updated text-to-visual-300 mobile value from 11px to 10px.
426
+
427
+ ## Design Motivation
428
+
429
+ To better follow our logarithmic scale rounding principle.
430
+
431
+ ## Token Diff
432
+
433
+ _Token values updated (1):_
434
+
435
+ - `text-to-visual-300`
436
+
437
+ - 6579966: existing corner-radius tokens, adding net-new global corner radius tokens, and introducing new alias names that point to these global values.
438
+
439
+ ## Design Motivation
440
+
441
+ More on Spectrum 2 rounding: https://s2.spectrum.corp.adobe.com/page/object-styles/#rounding
442
+
443
+ In Spectrum 2, rounding also applies to the different t-shirt sized components and varies based on a Major Second logarithmic scale, rounded to whole numbers to avoid using half-pixels. This allows for components to retain a consistent and identifiable shape at all sizes. Because of this there are now component size specific tokens like corner-radius-small-size-medium or corner-radius-medium-size-extra-large to help us keep track of the nuance within t-shirt sizes.
444
+
445
+ ## Token Diff
446
+
447
+ _Tokens added (23):_
448
+
449
+ - `corner-radius-0`
450
+ - `corner-radius-300`
451
+ - `corner-radius-400`
452
+ - `corner-radius-500`
453
+ - `corner-radius-600`
454
+ - `corner-radius-700`
455
+ - `corner-radius-800`
456
+ - `corner-radius-1000`
457
+ - `corner-radius-extra-large-default`
458
+ - `corner-radius-full`
459
+ - `corner-radius-large-default`
460
+ - `corner-radius-medium-default`
461
+ - `corner-radius-medium-size-extra-small`
462
+ - `corner-radius-medium-size-small`
463
+ - `corner-radius-medium-size-medium`
464
+ - `corner-radius-medium-size-large`
465
+ - `corner-radius-medium-size-extra-large`
466
+ - `corner-radius-none`
467
+ - `corner-radius-small-default`
468
+ - `corner-radius-small-size-small`
469
+ - `corner-radius-small-size-medium`
470
+ - `corner-radius-small-size-large`
471
+ - `corner-radius-small-size-extra-large`
472
+
473
+ _Token values updated (3):_
474
+
475
+ - `corner-radius-75`
476
+ - `corner-radius-100`
477
+ - `corner-radius-200`
478
+
479
+ ## 13.0.0-beta.10
480
+
481
+ ### Minor Changes
482
+
483
+ - 23d9085: Updated desktop and mobile values for component-edge-to-visual-only tokens.
484
+
485
+ Spacing changed due to new workflow icon sizes.
486
+
487
+ ## Token Diff
488
+
489
+ _Token values updated (5):_
490
+
491
+ - `component-edge-to-visual-only-100`
492
+ - `component-edge-to-visual-only-200`
493
+ - `component-edge-to-visual-only-300`
494
+ - `component-edge-to-visual-only-50`
495
+ - `component-edge-to-visual-only-75`
496
+
497
+ - c5430b7: Updated help-text-top-to-workflow-icon-_ token values to point to component-top-to-workflow-icon-_ tokens
498
+
499
+ ## Token Diff
500
+
501
+ _Newly deprecated tokens (4):_
502
+
503
+ - `help-text-top-to-workflow-icon-extra-large`: use `component-edge-to-visual-only-300`
504
+ - `help-text-top-to-workflow-icon-large`: use `component-edge-to-visual-only-200`
505
+ - `help-text-top-to-workflow-icon-medium`: use `component-edge-to-visual-only-100`
506
+ - `help-text-top-to-workflow-icon-small`: use `component-edge-to-visual-only-75`
507
+
508
+ ## 13.0.0-beta.9
509
+
510
+ ### Minor Changes
511
+
512
+ - cf09c84: Updated workflow-icon-size-50, 75, 100, 200, 300 with Spectrum 2 values in mobile and desktop.
513
+ Updated component-top-to-workflow and text-to-visual padding.
514
+ Added 3 new non-color tokens for S2 component downstates in Tokens Studio.
515
+
516
+ ## Design Motivation
517
+
518
+ Spectrum 2 icons have a different workflow icon sizing with base sizes 20 px (desktop), 24 px (mobile).
519
+
520
+ Updated padding values due to new workflow icon sizes in S2.
521
+
522
+ These tokens are used to calculate the perspective transform in CSS to achieve the effect of a component scaling down for down states in Spectrum 2. This is not applicable to all components.
523
+
524
+ ## Tokens Diff
525
+
526
+ _Tokens added (3):_
527
+
528
+ - `component-size-difference-down`
529
+ - `component-size-minimum-perspective-down`
530
+ - `component-size-width-ratio-down`
531
+
532
+ _Token values updated (15):_
533
+
534
+ - `component-top-to-workflow-icon-100`
535
+ - `component-top-to-workflow-icon-200`
536
+ - `component-top-to-workflow-icon-300`
537
+ - `component-top-to-workflow-icon-50`
538
+ - `component-top-to-workflow-icon-75`
539
+ - `text-to-visual-100`
540
+ - `text-to-visual-200`
541
+ - `text-to-visual-300`
542
+ - `text-to-visual-50`
543
+ - `text-to-visual-75`
544
+ - `workflow-icon-size-100`
545
+ - `workflow-icon-size-200`
546
+ - `workflow-icon-size-300`
547
+ - `workflow-icon-size-50`
548
+ - `workflow-icon-size-75`
549
+
550
+ ## 13.0.0-beta.8
551
+
552
+ ### Minor Changes
553
+
554
+ - 507f3c2: Added new and updating existing background layer tokens to S2 set in Tokens Studio and S2/Variables. Also reordered token organization to reflect proper usage based on [S2 guidelines](https://s2.spectrum.corp.adobe.com/page/background-layers/#editing-contexts).
555
+
556
+ ## Design Motivation
557
+
558
+ In Spectrum 2, background layers are used differently depending on the primary context of the page. We now have a full set of tokens to help users distinguish between primary purposes, editing vs browsing.
559
+
560
+ ## Token Diff
561
+
562
+ _Tokens added (2):_
563
+
564
+ - `background-elevated-color`
565
+ - `background-pasteboard-color`
566
+
567
+ _Token values updated (1):_
568
+
569
+ - `background-base-color`
570
+
571
+ ## 13.0.0-beta.7
572
+
573
+ ### Minor Changes
574
+
575
+ - 4853f76: Added schema to all tokens and fixed values that didn't meet schema requirements
576
+
577
+ ## Token Diff
578
+
579
+ _Token values updated (328):_
580
+
581
+ - `accent-background-color-default`
582
+ - `accent-background-color-down`
583
+ - `accent-background-color-hover`
584
+ - `accent-background-color-key-focus`
585
+ - `accent-color-100`
586
+ - `accent-color-1000`
587
+ - `accent-color-1100`
588
+ - `accent-color-1200`
589
+ - `accent-color-1300`
590
+ - `accent-color-1400`
591
+ - `accent-color-200`
592
+ - `accent-color-300`
593
+ - `accent-color-400`
594
+ - `accent-color-500`
595
+ - `accent-color-600`
596
+ - `accent-color-700`
597
+ - `accent-color-800`
598
+ - `accent-color-900`
599
+ - `accent-content-color-default`
600
+ - `accent-content-color-down`
601
+ - `accent-content-color-hover`
602
+ - `accent-content-color-key-focus`
603
+ - `accent-content-color-selected`
604
+ - `accent-visual-color`
605
+ - `blue-100`
606
+ - `blue-1000`
607
+ - `blue-1100`
608
+ - `blue-1200`
609
+ - `blue-1300`
610
+ - `blue-1400`
611
+ - `blue-200`
612
+ - `blue-300`
613
+ - `blue-400`
614
+ - `blue-500`
615
+ - `blue-600`
616
+ - `blue-700`
617
+ - `blue-800`
618
+ - `blue-900`
619
+ - `blue-background-color-default`
620
+ - `blue-visual-color`
621
+ - `celery-100`
622
+ - `celery-1000`
623
+ - `celery-1100`
624
+ - `celery-1200`
625
+ - `celery-1300`
626
+ - `celery-1400`
627
+ - `celery-200`
628
+ - `celery-300`
629
+ - `celery-400`
630
+ - `celery-500`
631
+ - `celery-600`
632
+ - `celery-700`
633
+ - `celery-800`
634
+ - `celery-900`
635
+ - `celery-background-color-default`
636
+ - `celery-visual-color`
637
+ - `chartreuse-100`
638
+ - `chartreuse-1000`
639
+ - `chartreuse-1100`
640
+ - `chartreuse-1200`
641
+ - `chartreuse-1300`
642
+ - `chartreuse-1400`
643
+ - `chartreuse-200`
644
+ - `chartreuse-300`
645
+ - `chartreuse-400`
646
+ - `chartreuse-500`
647
+ - `chartreuse-600`
648
+ - `chartreuse-700`
649
+ - `chartreuse-800`
650
+ - `chartreuse-900`
651
+ - `chartreuse-background-color-default`
652
+ - `chartreuse-visual-color`
653
+ - `contextual-help-body-size`
654
+ - `cyan-100`
655
+ - `cyan-1000`
656
+ - `cyan-1100`
657
+ - `cyan-1200`
658
+ - `cyan-1300`
659
+ - `cyan-1400`
660
+ - `cyan-200`
661
+ - `cyan-300`
662
+ - `cyan-400`
663
+ - `cyan-500`
664
+ - `cyan-600`
665
+ - `cyan-700`
666
+ - `cyan-800`
667
+ - `cyan-900`
668
+ - `cyan-background-color-default`
669
+ - `cyan-visual-color`
670
+ - `drop-zone-background-color`
671
+ - `focus-indicator-color`
672
+ - `fuchsia-100`
673
+ - `fuchsia-1000`
674
+ - `fuchsia-1100`
675
+ - `fuchsia-1200`
676
+ - `fuchsia-1300`
677
+ - `fuchsia-1400`
678
+ - `fuchsia-200`
679
+ - `fuchsia-300`
680
+ - `fuchsia-400`
681
+ - `fuchsia-500`
682
+ - `fuchsia-600`
683
+ - `fuchsia-700`
684
+ - `fuchsia-800`
685
+ - `fuchsia-900`
686
+ - `fuchsia-background-color-default`
687
+ - `fuchsia-visual-color`
688
+ - `green-100`
689
+ - `green-1000`
690
+ - `green-1100`
691
+ - `green-1200`
692
+ - `green-1300`
693
+ - `green-1400`
694
+ - `green-200`
695
+ - `green-300`
696
+ - `green-400`
697
+ - `green-500`
698
+ - `green-600`
699
+ - `green-700`
700
+ - `green-800`
701
+ - `green-900`
702
+ - `green-background-color-default`
703
+ - `green-visual-color`
704
+ - `icon-color-blue-primary-default`
705
+ - `icon-color-green-primary-default`
706
+ - `icon-color-red-primary-default`
707
+ - `icon-color-yellow-primary-default`
708
+ - `indigo-100`
709
+ - `indigo-1000`
710
+ - `indigo-1100`
711
+ - `indigo-1200`
712
+ - `indigo-1300`
713
+ - `indigo-1400`
714
+ - `indigo-200`
715
+ - `indigo-300`
716
+ - `indigo-400`
717
+ - `indigo-500`
718
+ - `indigo-600`
719
+ - `indigo-700`
720
+ - `indigo-800`
721
+ - `indigo-900`
722
+ - `indigo-background-color-default`
723
+ - `indigo-visual-color`
724
+ - `informative-background-color-default`
725
+ - `informative-background-color-down`
726
+ - `informative-background-color-hover`
727
+ - `informative-background-color-key-focus`
728
+ - `informative-color-100`
729
+ - `informative-color-1000`
730
+ - `informative-color-1100`
731
+ - `informative-color-1200`
732
+ - `informative-color-1300`
733
+ - `informative-color-1400`
734
+ - `informative-color-200`
735
+ - `informative-color-300`
736
+ - `informative-color-400`
737
+ - `informative-color-500`
738
+ - `informative-color-600`
739
+ - `informative-color-700`
740
+ - `informative-color-800`
741
+ - `informative-color-900`
742
+ - `informative-visual-color`
743
+ - `magenta-100`
744
+ - `magenta-1000`
745
+ - `magenta-1100`
746
+ - `magenta-1200`
747
+ - `magenta-1300`
748
+ - `magenta-1400`
749
+ - `magenta-200`
750
+ - `magenta-300`
751
+ - `magenta-400`
752
+ - `magenta-500`
753
+ - `magenta-600`
754
+ - `magenta-700`
755
+ - `magenta-800`
756
+ - `magenta-900`
757
+ - `magenta-background-color-default`
758
+ - `magenta-visual-color`
759
+ - `navigational-indicator-top-to-back-icon-extra-large`
760
+ - `navigational-indicator-top-to-back-icon-large`
761
+ - `navigational-indicator-top-to-back-icon-medium`
762
+ - `navigational-indicator-top-to-back-icon-small`
763
+ - `negative-background-color-default`
764
+ - `negative-background-color-down`
765
+ - `negative-background-color-hover`
766
+ - `negative-background-color-key-focus`
767
+ - `negative-border-color-default`
768
+ - `negative-border-color-down`
769
+ - `negative-border-color-focus`
770
+ - `negative-border-color-focus-hover`
771
+ - `negative-border-color-hover`
772
+ - `negative-border-color-key-focus`
773
+ - `negative-color-100`
774
+ - `negative-color-1000`
775
+ - `negative-color-1100`
776
+ - `negative-color-1200`
777
+ - `negative-color-1300`
778
+ - `negative-color-1400`
779
+ - `negative-color-200`
780
+ - `negative-color-300`
781
+ - `negative-color-400`
782
+ - `negative-color-500`
783
+ - `negative-color-600`
784
+ - `negative-color-700`
785
+ - `negative-color-800`
786
+ - `negative-color-900`
787
+ - `negative-content-color-default`
788
+ - `negative-content-color-down`
789
+ - `negative-content-color-hover`
790
+ - `negative-content-color-key-focus`
791
+ - `negative-visual-color`
792
+ - `notice-background-color-default`
793
+ - `notice-color-100`
794
+ - `notice-color-1000`
795
+ - `notice-color-1100`
796
+ - `notice-color-1200`
797
+ - `notice-color-1300`
798
+ - `notice-color-1400`
799
+ - `notice-color-200`
800
+ - `notice-color-300`
801
+ - `notice-color-400`
802
+ - `notice-color-500`
803
+ - `notice-color-600`
804
+ - `notice-color-700`
805
+ - `notice-color-800`
806
+ - `notice-color-900`
807
+ - `notice-visual-color`
808
+ - `orange-100`
809
+ - `orange-1000`
810
+ - `orange-1100`
811
+ - `orange-1200`
812
+ - `orange-1300`
813
+ - `orange-1400`
814
+ - `orange-200`
815
+ - `orange-300`
816
+ - `orange-400`
817
+ - `orange-500`
818
+ - `orange-600`
819
+ - `orange-700`
820
+ - `orange-800`
821
+ - `orange-900`
822
+ - `orange-background-color-default`
823
+ - `orange-visual-color`
824
+ - `positive-background-color-default`
825
+ - `positive-background-color-down`
826
+ - `positive-background-color-hover`
827
+ - `positive-background-color-key-focus`
828
+ - `positive-color-100`
829
+ - `positive-color-1000`
830
+ - `positive-color-1100`
831
+ - `positive-color-1200`
832
+ - `positive-color-1300`
833
+ - `positive-color-1400`
834
+ - `positive-color-200`
835
+ - `positive-color-300`
836
+ - `positive-color-400`
837
+ - `positive-color-500`
838
+ - `positive-color-600`
839
+ - `positive-color-700`
840
+ - `positive-color-800`
841
+ - `positive-color-900`
842
+ - `positive-visual-color`
843
+ - `purple-100`
844
+ - `purple-1000`
845
+ - `purple-1100`
846
+ - `purple-1200`
847
+ - `purple-1300`
848
+ - `purple-1400`
849
+ - `purple-200`
850
+ - `purple-300`
851
+ - `purple-400`
852
+ - `purple-500`
853
+ - `purple-600`
854
+ - `purple-700`
855
+ - `purple-800`
856
+ - `purple-900`
857
+ - `purple-background-color-default`
858
+ - `purple-visual-color`
859
+ - `red-100`
860
+ - `red-1000`
861
+ - `red-1100`
862
+ - `red-1200`
863
+ - `red-1300`
864
+ - `red-1400`
865
+ - `red-200`
866
+ - `red-300`
867
+ - `red-400`
868
+ - `red-500`
869
+ - `red-600`
870
+ - `red-700`
871
+ - `red-800`
872
+ - `red-900`
873
+ - `red-background-color-default`
874
+ - `red-visual-color`
875
+ - `seafoam-100`
876
+ - `seafoam-1000`
877
+ - `seafoam-1100`
878
+ - `seafoam-1200`
879
+ - `seafoam-1300`
880
+ - `seafoam-1400`
881
+ - `seafoam-200`
882
+ - `seafoam-300`
883
+ - `seafoam-400`
884
+ - `seafoam-500`
885
+ - `seafoam-600`
886
+ - `seafoam-700`
887
+ - `seafoam-800`
888
+ - `seafoam-900`
889
+ - `seafoam-background-color-default`
890
+ - `seafoam-visual-color`
891
+ - `side-navigation-item-to-header`
892
+ - `table-selected-row-background-color`
893
+ - `yellow-100`
894
+ - `yellow-1000`
895
+ - `yellow-1100`
896
+ - `yellow-1200`
897
+ - `yellow-1300`
898
+ - `yellow-1400`
899
+ - `yellow-200`
900
+ - `yellow-300`
901
+ - `yellow-400`
902
+ - `yellow-500`
903
+ - `yellow-600`
904
+ - `yellow-700`
905
+ - `yellow-800`
906
+ - `yellow-900`
907
+ - `yellow-background-color-default`
908
+ - `yellow-visual-color`
909
+
910
+ ## 13.0.0-beta.6
911
+
912
+ ### Minor Changes
913
+
914
+ - 6d1c661: Added new Spectrum 2 color tokens for both light and dark themes:
915
+
916
+ Cinnamon 100 to 1600
917
+
918
+ ## Design Motivation
919
+
920
+ This is the last new color that is a part of the new color set needed from Premiere Pro. The additional color will also help when creating new data vis color palettes for Spectrum 2.
921
+
922
+ ## Token Diff
923
+
924
+ _Tokens added (17):_
925
+
926
+ - `cinnamon-100`
927
+ - `cinnamon-200`
928
+ - `cinnamon-300`
929
+ - `cinnamon-400`
930
+ - `cinnamon-500`
931
+ - `cinnamon-600`
932
+ - `cinnamon-700`
933
+ - `cinnamon-800`
934
+ - `cinnamon-900`
935
+ - `cinnamon-1000`
936
+ - `cinnamon-1100`
937
+ - `cinnamon-1200`
938
+ - `cinnamon-1300`
939
+ - `cinnamon-1400`
940
+ - `cinnamon-1500`
941
+ - `cinnamon-1600`
942
+
943
+ - 91d7e95: Fixed bug in the light theme value for notice-background-color-default, from notice-color-800 to notice-color-600
944
+
945
+ ## Design Motivation
946
+
947
+ While updating the badge component in Figma, we noticed a bug where notice-background-color-default in S2 was entered incorrectly for light theme, and should instead match the value for S1
948
+
949
+ ## Token Diff
950
+
951
+ _Token values updated (1):_
952
+
953
+ - `notice-background-color-default`: `light`: `notice-color-800` -> `notice-color-600`
954
+
955
+ ## 13.0.0-beta.5
956
+
957
+ ### Major Changes
958
+
959
+ - 0af2674: feat: new color values for spectrum2
960
+
961
+ ## Design Motivation
962
+
963
+ This update addresses several improvements:
964
+
965
+ fuchsia, seafoam: all values shifted to make room for new colors, pink and turquoise
966
+ all other colors: certain values were updated to address accessibility contrast requirements against Spectrum 2 background layer colors
967
+
968
+ ## Token Diff
969
+
970
+ <details><summary><strong>Token values updated (246):</strong></summary>
971
+
972
+ - `accent-background-color-default`
973
+ - `accent-background-color-down`
974
+ - `accent-background-color-hover`
975
+ - `accent-background-color-key-focus`
976
+ - `accent-color-1000`
977
+ - `accent-color-200`
978
+ - `accent-color-300`
979
+ - `accent-color-400`
980
+ - `accent-color-500`
981
+ - `accent-color-600`
982
+ - `accent-color-700`
983
+ - `accent-color-800`
984
+ - `accent-color-900`
985
+ - `accent-content-color-default`
986
+ - `accent-content-color-down`
987
+ - `accent-content-color-hover`
988
+ - `accent-content-color-key-focus`
989
+ - `accent-content-color-selected`
990
+ - `accent-visual-color`
991
+ - `blue-1000`
992
+ - `blue-200`
993
+ - `blue-300`
994
+ - `blue-400`
995
+ - `blue-500`
996
+ - `blue-600`
997
+ - `blue-700`
998
+ - `blue-800`
999
+ - `blue-900`
1000
+ - `blue-background-color-default`
1001
+ - `blue-visual-color`
1002
+ - `celery-1000`
1003
+ - `celery-200`
1004
+ - `celery-300`
1005
+ - `celery-400`
1006
+ - `celery-500`
1007
+ - `celery-600`
1008
+ - `celery-700`
1009
+ - `celery-800`
1010
+ - `celery-900`
1011
+ - `celery-background-color-default`
1012
+ - `celery-visual-color`
1013
+ - `chartreuse-1000`
1014
+ - `chartreuse-200`
1015
+ - `chartreuse-300`
1016
+ - `chartreuse-400`
1017
+ - `chartreuse-500`
1018
+ - `chartreuse-600`
1019
+ - `chartreuse-700`
1020
+ - `chartreuse-800`
1021
+ - `chartreuse-900`
1022
+ - `chartreuse-background-color-default`
1023
+ - `chartreuse-visual-color`
1024
+ - `cyan-1000`
1025
+ - `cyan-300`
1026
+ - `cyan-400`
1027
+ - `cyan-500`
1028
+ - `cyan-600`
1029
+ - `cyan-700`
1030
+ - `cyan-800`
1031
+ - `cyan-900`
1032
+ - `cyan-background-color-default`
1033
+ - `cyan-visual-color`
1034
+ - `drop-zone-background-color`
1035
+ - `focus-indicator-color`
1036
+ - `fuchsia-100`
1037
+ - `fuchsia-1000`
1038
+ - `fuchsia-1100`
1039
+ - `fuchsia-1200`
1040
+ - `fuchsia-1300`
1041
+ - `fuchsia-1400`
1042
+ - `fuchsia-1500`
1043
+ - `fuchsia-1600`
1044
+ - `fuchsia-200`
1045
+ - `fuchsia-300`
1046
+ - `fuchsia-400`
1047
+ - `fuchsia-500`
1048
+ - `fuchsia-600`
1049
+ - `fuchsia-700`
1050
+ - `fuchsia-800`
1051
+ - `fuchsia-900`
1052
+ - `fuchsia-background-color-default`
1053
+ - `fuchsia-visual-color`
1054
+ - `green-100`
1055
+ - `green-1000`
1056
+ - `green-200`
1057
+ - `green-300`
1058
+ - `green-400`
1059
+ - `green-500`
1060
+ - `green-600`
1061
+ - `green-700`
1062
+ - `green-800`
1063
+ - `green-900`
1064
+ - `green-background-color-default`
1065
+ - `green-visual-color`
1066
+ - `icon-color-blue-primary-default`
1067
+ - `icon-color-green-primary-default`
1068
+ - `icon-color-red-primary-default`
1069
+ - `icon-color-yellow-primary-default`
1070
+ - `indigo-1000`
1071
+ - `indigo-300`
1072
+ - `indigo-400`
1073
+ - `indigo-500`
1074
+ - `indigo-600`
1075
+ - `indigo-700`
1076
+ - `indigo-800`
1077
+ - `indigo-900`
1078
+ - `indigo-background-color-default`
1079
+ - `indigo-visual-color`
1080
+ - `informative-background-color-default`
1081
+ - `informative-background-color-down`
1082
+ - `informative-background-color-hover`
1083
+ - `informative-background-color-key-focus`
1084
+ - `informative-color-1000`
1085
+ - `informative-color-200`
1086
+ - `informative-color-300`
1087
+ - `informative-color-400`
1088
+ - `informative-color-500`
1089
+ - `informative-color-600`
1090
+ - `informative-color-700`
1091
+ - `informative-color-800`
1092
+ - `informative-color-900`
1093
+ - `informative-visual-color`
1094
+ - `magenta-100`
1095
+ - `magenta-1000`
1096
+ - `magenta-1100`
1097
+ - `magenta-1200`
1098
+ - `magenta-1300`
1099
+ - `magenta-1400`
1100
+ - `magenta-200`
1101
+ - `magenta-300`
1102
+ - `magenta-400`
1103
+ - `magenta-500`
1104
+ - `magenta-600`
1105
+ - `magenta-700`
1106
+ - `magenta-800`
1107
+ - `magenta-900`
1108
+ - `magenta-background-color-default`
1109
+ - `magenta-visual-color`
1110
+ - `negative-background-color-default`
1111
+ - `negative-background-color-down`
1112
+ - `negative-background-color-hover`
1113
+ - `negative-background-color-key-focus`
1114
+ - `negative-border-color-default`
1115
+ - `negative-border-color-focus`
1116
+ - `negative-border-color-hover`
1117
+ - `negative-border-color-key-focus`
1118
+ - `negative-color-1000`
1119
+ - `negative-color-200`
1120
+ - `negative-color-300`
1121
+ - `negative-color-400`
1122
+ - `negative-color-500`
1123
+ - `negative-color-600`
1124
+ - `negative-color-700`
1125
+ - `negative-color-800`
1126
+ - `negative-color-900`
1127
+ - `negative-content-color-default`
1128
+ - `negative-content-color-down`
1129
+ - `negative-content-color-hover`
1130
+ - `negative-content-color-key-focus`
1131
+ - `negative-visual-color`
1132
+ - `notice-background-color-default`
1133
+ - `notice-color-1000`
1134
+ - `notice-color-200`
1135
+ - `notice-color-400`
1136
+ - `notice-color-500`
1137
+ - `notice-color-600`
1138
+ - `notice-color-700`
1139
+ - `notice-color-800`
1140
+ - `notice-color-900`
1141
+ - `notice-visual-color`
1142
+ - `orange-1000`
1143
+ - `orange-200`
1144
+ - `orange-400`
1145
+ - `orange-500`
1146
+ - `orange-600`
1147
+ - `orange-700`
1148
+ - `orange-800`
1149
+ - `orange-900`
1150
+ - `orange-background-color-default`
1151
+ - `orange-visual-color`
1152
+ - `positive-background-color-default`
1153
+ - `positive-background-color-down`
1154
+ - `positive-background-color-hover`
1155
+ - `positive-background-color-key-focus`
1156
+ - `positive-color-100`
1157
+ - `positive-color-1000`
1158
+ - `positive-color-200`
1159
+ - `positive-color-300`
1160
+ - `positive-color-400`
1161
+ - `positive-color-500`
1162
+ - `positive-color-600`
1163
+ - `positive-color-700`
1164
+ - `positive-color-800`
1165
+ - `positive-color-900`
1166
+ - `positive-visual-color`
1167
+ - `purple-1000`
1168
+ - `purple-200`
1169
+ - `purple-300`
1170
+ - `purple-400`
1171
+ - `purple-500`
1172
+ - `purple-600`
1173
+ - `purple-700`
1174
+ - `purple-800`
1175
+ - `purple-900`
1176
+ - `purple-background-color-default`
1177
+ - `purple-visual-color`
1178
+ - `red-1000`
1179
+ - `red-200`
1180
+ - `red-300`
1181
+ - `red-400`
1182
+ - `red-500`
1183
+ - `red-600`
1184
+ - `red-700`
1185
+ - `red-800`
1186
+ - `red-900`
1187
+ - `red-background-color-default`
1188
+ - `red-visual-color`
1189
+ - `seafoam-100`
1190
+ - `seafoam-1000`
1191
+ - `seafoam-1100`
1192
+ - `seafoam-1200`
1193
+ - `seafoam-1300`
1194
+ - `seafoam-1400`
1195
+ - `seafoam-1500`
1196
+ - `seafoam-1600`
1197
+ - `seafoam-200`
1198
+ - `seafoam-300`
1199
+ - `seafoam-400`
1200
+ - `seafoam-500`
1201
+ - `seafoam-600`
1202
+ - `seafoam-700`
1203
+ - `seafoam-800`
1204
+ - `seafoam-900`
1205
+ - `seafoam-background-color-default`
1206
+ - `seafoam-visual-color`
1207
+ - `table-selected-row-background-color`
1208
+ - `yellow-1000`
1209
+ - `yellow-300`
1210
+ - `yellow-400`
1211
+ - `yellow-500`
1212
+ - `yellow-600`
1213
+ - `yellow-700`
1214
+ - `yellow-800`
1215
+ - `yellow-900`
1216
+ - `yellow-background-color-default`
1217
+ - `yellow-visual-color`
1218
+
1219
+ </details>
1220
+
1221
+ ### Minor Changes
1222
+
1223
+ - 7b5ec24: feat: add new color tokens
1224
+
1225
+ ## Design Motivation
1226
+
1227
+ Added new colors due to needs from Premiere Pro. The additional colors will also help when creating new data vis color palettes for Spectrum 2.
1228
+
1229
+ ## Token Diff
1230
+
1231
+ <details><summary><strong>Tokens added (64):</strong></summary>
1232
+
1233
+ - `brown-100`
1234
+ - `brown-1000`
1235
+ - `brown-1100`
1236
+ - `brown-1200`
1237
+ - `brown-1300`
1238
+ - `brown-1400`
1239
+ - `brown-1500`
1240
+ - `brown-1600`
1241
+ - `brown-200`
1242
+ - `brown-300`
1243
+ - `brown-400`
1244
+ - `brown-500`
1245
+ - `brown-600`
1246
+ - `brown-700`
1247
+ - `brown-800`
1248
+ - `brown-900`
1249
+ - `pink-100`
1250
+ - `pink-1000`
1251
+ - `pink-1100`
1252
+ - `pink-1200`
1253
+ - `pink-1300`
1254
+ - `pink-1400`
1255
+ - `pink-1500`
1256
+ - `pink-1600`
1257
+ - `pink-200`
1258
+ - `pink-300`
1259
+ - `pink-400`
1260
+ - `pink-500`
1261
+ - `pink-600`
1262
+ - `pink-700`
1263
+ - `pink-800`
1264
+ - `pink-900`
1265
+ - `silver-100`
1266
+ - `silver-1000`
1267
+ - `silver-1100`
1268
+ - `silver-1200`
1269
+ - `silver-1300`
1270
+ - `silver-1400`
1271
+ - `silver-1500`
1272
+ - `silver-1600`
1273
+ - `silver-200`
1274
+ - `silver-300`
1275
+ - `silver-400`
1276
+ - `silver-500`
1277
+ - `silver-600`
1278
+ - `silver-700`
1279
+ - `silver-800`
1280
+ - `silver-900`
1281
+ - `turquoise-100`
1282
+ - `turquoise-1000`
1283
+ - `turquoise-1100`
1284
+ - `turquoise-1200`
1285
+ - `turquoise-1300`
1286
+ - `turquoise-1400`
1287
+ - `turquoise-1500`
1288
+ - `turquoise-1600`
1289
+ - `turquoise-200`
1290
+ - `turquoise-300`
1291
+ - `turquoise-400`
1292
+ - `turquoise-500`
1293
+ - `turquoise-600`
1294
+ - `turquoise-700`
1295
+ - `turquoise-800`
1296
+ - `turquoise-900`
1297
+
1298
+ </details>
1299
+
1300
+ ## 13.0.0-beta.4
1301
+
1302
+ ### Major Changes
1303
+
1304
+ - a08dced: A handful of values transitioned from being defined per-set to being constants; set values are deprecated and root values are defined.
1305
+
1306
+ ## Token Diff
1307
+
1308
+ _Token values updated (5):_
1309
+
1310
+ - `neutral-background-color-default`: changed from a color-set to a single value of a reference of `gray-800`
1311
+ - `neutral-background-color-down`: changed from a color-set to a single value of a reference of `gray-900`
1312
+ - `neutral-background-color-hover`: changed from a color-set to a single value of a reference of `gray-900`
1313
+ - `neutral-background-color-key-focus`: changed from a color-set to a single value of a reference of `gray-900`
1314
+ - `notice-background-color-default`: changed from a color-set to a single value of a reference of `notice-color-800`
1315
+
1316
+ ### Patch Changes
1317
+
1318
+ - c0a10b4: fix: rgb used instead of rgba for a couple tokens
1319
+
1320
+ ## 13.0.0-beta.3
1321
+
1322
+ ### Patch Changes
1323
+
1324
+ - a546ef7: Returned some tokens that were removed by accident in the previous merging.
1325
+
1326
+ ## Token Diff
1327
+
1328
+ _Tokens added (51):_
1329
+
1330
+ - `checkbox-control-size-extra-large`
1331
+ - `checkbox-control-size-large`
1332
+ - `checkbox-control-size-medium`
1333
+ - `checkbox-control-size-small`
1334
+ - `checkbox-top-to-control-extra-large`
1335
+ - `checkbox-top-to-control-large`
1336
+ - `checkbox-top-to-control-medium`
1337
+ - `checkbox-top-to-control-small`
1338
+ - `color-area-border-rounding`
1339
+ - `corner-radius-100`
1340
+ - `corner-radius-200`
1341
+ - `corner-radius-75`
1342
+ - `drop-shadow-blur`
1343
+ - `drop-shadow-x`
1344
+ - `drop-shadow-y`
1345
+ - `radio-button-control-size-extra-large`
1346
+ - `radio-button-control-size-large`
1347
+ - `radio-button-control-size-medium`
1348
+ - `radio-button-control-size-small`
1349
+ - `radio-button-top-to-control-extra-large`
1350
+ - `radio-button-top-to-control-large`
1351
+ - `radio-button-top-to-control-medium`
1352
+ - `radio-button-top-to-control-small`
1353
+ - `slider-bottom-to-handle-extra-large`
1354
+ - `slider-bottom-to-handle-large`
1355
+ - `slider-bottom-to-handle-medium`
1356
+ - `slider-bottom-to-handle-small`
1357
+ - `slider-control-height-extra-large`
1358
+ - `slider-control-height-large`
1359
+ - `slider-control-height-medium`
1360
+ - `slider-control-height-small`
1361
+ - `slider-handle-border-width-down-extra-large`
1362
+ - `slider-handle-border-width-down-large`
1363
+ - `slider-handle-border-width-down-medium`
1364
+ - `slider-handle-border-width-down-small`
1365
+ - `slider-handle-size-extra-large`
1366
+ - `slider-handle-size-large`
1367
+ - `slider-handle-size-medium`
1368
+ - `slider-handle-size-small`
1369
+ - `switch-control-height-extra-large`
1370
+ - `switch-control-height-large`
1371
+ - `switch-control-height-medium`
1372
+ - `switch-control-height-small`
1373
+ - `switch-control-width-extra-large`
1374
+ - `switch-control-width-large`
1375
+ - `switch-control-width-medium`
1376
+ - `switch-control-width-small`
1377
+ - `switch-top-to-control-extra-large`
1378
+ - `switch-top-to-control-large`
1379
+ - `switch-top-to-control-medium`
1380
+ - `switch-top-to-control-small`
1381
+
3
1382
  ## 13.0.0-beta.2
4
1383
 
5
1384
  ### Major Changes