@adobe/spectrum-tokens 13.0.0-beta.3 → 13.0.0-beta.31

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