@adobe/spectrum-tokens 13.0.0-beta.4 → 13.0.0-beta.41

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 +2060 -0
  2. package/README.md +4 -0
  3. package/dist/json/drover.json +1167 -538
  4. package/dist/json/variables.json +14586 -6446
  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 +678 -75
  77. package/src/color-component.json +201 -19
  78. package/src/color-palette.json +3614 -661
  79. package/src/icons.json +916 -17
  80. package/src/layout-component.json +3948 -603
  81. package/src/layout.json +832 -171
  82. package/src/semantic-color-palette.json +150 -1
  83. package/src/typography.json +285 -0
  84. package/tasks/addIds.js +5 -8
  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,2065 @@
1
1
  # @adobe/spectrum-tokens
2
2
 
3
+ ## 13.0.0-beta.41
4
+
5
+ ### Minor Changes
6
+
7
+ - [#375](https://github.com/adobe/spectrum-tokens/pull/375) [`6e3be6d`](https://github.com/adobe/spectrum-tokens/commit/6e3be6d8a458efa1752a8dd1360f03fa83f84c37) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - [Updated thumbnail size tokens and added new tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/144)
8
+
9
+ - [Updated S2 Action bar tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/149)
10
+
11
+ ## Design Motivation
12
+
13
+ Thumbnail: updated sizes in order for opacity checkerboards to translate better in implementation.
14
+
15
+ ⚠️ Important note: Accepting updates from this release will update the thumbnail sizes. The change in size is no more than 4 px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size:
16
+
17
+ | Former thumbnail size | Available thumbnail size |
18
+ | :-------------------- | :--------------------------------------- |
19
+ | size 50 (16 x 16) | size 50 (16 x 16) |
20
+ | size 75 (18 x 18) | size 75 (20 x 20) |
21
+ | size 100 (20 x 20) | size 75 (20 x 20) |
22
+ | size 200 (22 x 22) | size 100 (24 x 24) |
23
+ | size 300 (26 x 26) | size 200 (28 x 28) |
24
+ | size 400 (28 x 28) | size 200 (28 x 28) |
25
+ | size 500 (32 x 32) | size 300 (32 x 32) |
26
+ | size 600 (36 x 36) | size 400 (36 x 36) |
27
+ | size 700 (40 x 40) | size 500 (40 x 40) |
28
+ | size 800 (44 x 44) | size 600 (44 x 44) |
29
+ | size 900 (50 x 50) | size 700 (48 x 48) or size 800 (52 x 52) |
30
+ | size 1000 (56 x 56) | size 900 (56 x 56) |
31
+ | -- | size 1000 (64 x 64) |
32
+
33
+ Action bar: Updated S2 action bar (non-color) in respective desktop and mobile layout sets.
34
+
35
+ ## Token Diff
36
+
37
+ _Tokens added (8):_
38
+
39
+ - `action-bar-top-to-content-area`
40
+ - `action-bar-bottom-to-content-area`
41
+ - `action-bar-edge-to-content-area`
42
+ - `action-bar-close-button-to-counter`
43
+ - `action-bar-counter-font-size`
44
+ - `thumbnail-opacity-checkerboard-square-size`
45
+ - `thumbnail-corner-radius`
46
+ - `text-to-control-50`
47
+
48
+ _Tokens updated (2):_
49
+
50
+ - `action-bar-height`
51
+ - `action-bar-top-to-item-counter`
52
+
53
+ _Token values updated (11):_
54
+
55
+ - `thumbnail-size-75`
56
+ - `desktop`: `18px` -> `20px`
57
+ - `mobile`: `22px` -> `24px`
58
+ - `thumbnail-size-100`
59
+ - `desktop`: `20px` -> `24px`
60
+ - `mobile`: `26px` -> `28px`
61
+ - `thumbnail-size-200`
62
+ - `desktop`: `22px` -> `28px`
63
+ - `mobile`: `28px` -> `32px`
64
+ - `thumbnail-size-300`
65
+ - `desktop`: `26px` -> `32px`
66
+ - `mobile`: `32px` -> `36px`
67
+ - `thumbnail-size-400`
68
+ - `desktop`: `28px` -> `36px`
69
+ - `mobile`: `36px` -> `40px`
70
+ - `thumbnail-size-500`
71
+ - `desktop`: `32px` -> `40px`
72
+ - `mobile`: `40px` -> `44px`
73
+ - `thumbnail-size-600`
74
+ - `desktop`: `36px` -> `44px`
75
+ - `mobile`: `46px` -> `48px`
76
+ - `thumbnail-size-700`
77
+ - `desktop`: `40px` -> `48px`
78
+ - `mobile`: `50px` -> `52px`
79
+ - `thumbnail-size-800`
80
+ - `desktop`: `44px` -> `52px`
81
+ - `mobile`: `55px` -> `56px`
82
+ - `thumbnail-size-900`
83
+ - `desktop`: `50px` -> `56px`
84
+ - `mobile`: `62px` -> `64px`
85
+ - `thumbnail-size-1000`
86
+ - `desktop`: `56px` -> `64px`
87
+ - `mobile`: `70px` -> `72px`
88
+
89
+ ## 13.0.0-beta.40
90
+
91
+ ### Minor Changes
92
+
93
+ - [#373](https://github.com/adobe/spectrum-tokens/pull/373) [`e04bddf`](https://github.com/adobe/spectrum-tokens/commit/e04bddf65549c87cd314b54966fe066ae649b7f7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Updated S2 accordion tokens (non-color) in respective desktop and mobile layout sets
94
+
95
+ - Added S2 meter tokens, including both color and non-color.
96
+
97
+ ## Design Motivation
98
+
99
+ - Accordion component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing content-area-edge-to-content tokens enhances inclusivity for various design patterns. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13435).
100
+ - Meter component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing static tokens enables us to standardize the use of tokens across various components with indicators and tracks. This includes progress bars, progress circles, and potentially sliders in the future. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13414).
101
+
102
+ ## Token Diff
103
+
104
+ _Tokens added (18):_
105
+
106
+ - `accordion-content-area-edge-to-content-extra-large`
107
+ - `accordion-content-area-edge-to-content-large`
108
+ - `accordion-content-area-edge-to-content-medium`
109
+ - `accordion-content-area-edge-to-content-small`
110
+ - `accordion-disclosure-indicator-to-text-extra-large`
111
+ - `accordion-disclosure-indicator-to-text-large`
112
+ - `accordion-disclosure-indicator-to-text-medium`
113
+ - `accordion-disclosure-indicator-to-text-small`
114
+ - `accordion-item-to-divider`
115
+ - `meter-thickness-extra-large`
116
+ - `meter-thickness-medium`
117
+ - `static-black-text-color`
118
+ - `static-black-track-color`
119
+ - `static-black-track-indicator-color`
120
+ - `static-white-text-color`
121
+ - `static-white-track-color`
122
+ - `static-white-track-indicator-color`
123
+ - `track-color`
124
+
125
+ _Newly deprecated tokens (2):_
126
+
127
+ - `accordion-edge-to-disclosure-indicator`
128
+ - `accordion-disclosure-indicator-to-text`
129
+
130
+ _Tokens updated (1):_
131
+
132
+ - `meter-thickness-large`
133
+
134
+ ## 13.0.0-beta.39
135
+
136
+ ### Minor Changes
137
+
138
+ - [#364](https://github.com/adobe/spectrum-tokens/pull/364) [`f96ffca`](https://github.com/adobe/spectrum-tokens/commit/f96ffca4990547f8ddc8341d141e0edc65b872d9) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added coach-indicator s2 tokens
139
+
140
+ ## Token Diff
141
+
142
+ _Tokens added (8):_
143
+
144
+ - `coach-indicator-collapsed-gap`
145
+ - `coach-indicator-collapsed-ring-rounding-increment`
146
+ - `coach-indicator-collapsed-ring-thickness`
147
+ - `coach-indicator-color`
148
+ - `coach-indicator-expanded-gap`
149
+ - `coach-indicator-expanded-ring-rounding-increment`
150
+ - `coach-indicator-expanded-ring-thickness`
151
+ - `coach-indicator-opacity`
152
+
153
+ ## 13.0.0-beta.38
154
+
155
+ ### Minor Changes
156
+
157
+ - [#360](https://github.com/adobe/spectrum-tokens/pull/360) [`f73a0b4`](https://github.com/adobe/spectrum-tokens/commit/f73a0b40464f1c73f2d9e8f6cf97da926e392ac7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Fixed token type from Sizing to Font size for contextual-help-body-size and `contextual-help-title-size`
158
+
159
+ - Renamed tokens by deprecating previous ones and creating new ones, with font in the token name
160
+ Updated value of `contextual-help-title-font-size`
161
+
162
+ Marked the the following tokens in Tokens Studio for deprecation:
163
+
164
+ - `negative-subdued-background-color-default` ( --> points to `negative-subtle-background-color-default`)
165
+ - `negative-subdued-background-color-hover`
166
+ - `negative-subdued-background-color-down`
167
+ - `negative-subdued-background-color-key-focus`
168
+
169
+ ## Design motivation
170
+
171
+ - The updated type sorts them correctly in the Tokens Studio data
172
+ - The updated value reflects the latest design for Spectrum 2, using the new title style instead of heading
173
+ - The negative-subdued tokens were deprecated because the tag "error" variant has been deprecated and are no longer needed in the system. A new "subtle" token has been added for the in-line alert use case.
174
+
175
+ ## Token diff
176
+
177
+ _Tokens added (2):_
178
+
179
+ - `contextual-help-body-font-size`
180
+ - `contextual-help-title-font-size`
181
+
182
+ _Newly deprecated Tokens (6):_
183
+
184
+ - `contextual-help-body-size`
185
+ - `contextual-help-title-size`
186
+ - `negative-subdued-background-color-default`
187
+ - `negative-subdued-background-color-hover`
188
+ - `negative-subdued-background-color-down`
189
+ - `negative-subdued-background-color-key-focus`
190
+
191
+ ## 13.0.0-beta.37
192
+
193
+ ### Minor Changes
194
+
195
+ - [#355](https://github.com/adobe/spectrum-tokens/pull/355) [`783a200`](https://github.com/adobe/spectrum-tokens/commit/783a200983efa8e1f2cc31fd40ac3ed7298bb312) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated tokens according to updated token spec for Spectrum 2, including new and deprecated tokens
196
+
197
+ ## Design Motivation
198
+
199
+ ### Change 1: Updated terminology to align with t-shirt sizes
200
+
201
+ Previously in S1, the breadcrumb variants were default, compact, and multiline. However, in S2, we have aligned breadcrumb to t-shirt sizes, resulting in the following changes:
202
+
203
+ - Breadcrumbs (default) -> Breadcrumbs (L)
204
+ - Breadcrumbs (compact) -> Breadcrumbs (M)
205
+ - Breadcrumbs (multiline) -> Breadcrumbs (multiline)
206
+
207
+ ### Change 2: Updated truncated menu button sizes and spacing
208
+
209
+ Other structural changes
210
+
211
+ - In S1 all variants used M sized action button – now we use S, M, L sized action buttons for respective sizes.
212
+ - In S1 all variants had same spacing 8px around chevron, now we use different spacings for all the three variants
213
+
214
+ ## Token Diff
215
+
216
+ _Tokens added (11):_
217
+
218
+ - `breadcrumbs-separator-to-bottom-text-multiline`
219
+ - `breadcrumbs-start-edge-to-text-large`
220
+ - `breadcrumbs-start-edge-to-text-medium`
221
+ - `breadcrumbs-start-edge-to-text-multiline`
222
+ - `breadcrumbs-top-to-separator-large`
223
+ - `breadcrumbs-top-to-separator-medium`
224
+ - `breadcrumbs-top-to-separator-multiline`
225
+ - `breadcrumbs-truncated-menu-to-separator`
226
+ - `breadcrumbs-text-to-separator-large`
227
+ - `breadcrumbs-text-to-separator-medium`
228
+ - `breadcrumbs-text-to-separator-multiline`
229
+
230
+ _Newly deprecated tokens (13):_
231
+
232
+ - `breadcrumbs-height`
233
+ - `breadcrumbs-height-compact`
234
+ - `breadcrumbs-top-to-text`
235
+ - `breadcrumbs-top-to-text-compact`
236
+ - `breadcrumbs-bottom-to-text`
237
+ - `breadcrumbs-bottom-to-text-compact`
238
+ - `breadcrumbs-start-edge-to-text`
239
+ - `breadcrumbs-top-to-separator-icon`
240
+ - `breadcrumbs-top-to-separator-icon-compact`
241
+ - `breadcrumbs-top-to-separator-icon-multiline`
242
+ - `breadcrumbs-separator-icon-to-bottom-text-multiline`
243
+ - `breadcrumbs-truncated-menu-to-separator-icon`
244
+ - `breadcrumbs-top-to-truncated-menu-compact`
245
+
246
+ _Token values updated (20):_
247
+
248
+ - `breadcrumbs-top-to-separator-icon-multiline`
249
+ - `breadcrumbs-top-to-text-multiline`
250
+ - `breadcrumbs-bottom-to-text-multiline`
251
+ - `breadcrumbs-height-multiline`
252
+ - `breadcrumbs-top-to-separator-icon-multiline`
253
+ - `breadcrumbs-top-to-text-multiline`
254
+ - `breadcrumbs-height`
255
+ - `breadcrumbs-height-compact`
256
+ - `breadcrumbs-truncated-menu-to-separator-icon`
257
+ - `breadcrumbs-truncated-menu-to-bottom-text`
258
+ - `breadcrumbs-bottom-to-text`
259
+ - `breadcrumbs-bottom-to-text-compact`
260
+ - `breadcrumbs-separator-icon-to-bottom-text-multiline`
261
+ - `breadcrumbs-start-edge-to-text`
262
+ - `breadcrumbs-top-to-separator-icon`
263
+ - `breadcrumbs-top-to-separator-icon-compact`
264
+ - `breadcrumbs-top-to-text`
265
+ - `breadcrumbs-top-to-text-compact`
266
+ - `breadcrumbs-top-to-truncated-menu`
267
+ - `breadcrumbs-top-to-truncated-menu-compact`
268
+
269
+ ## 13.0.0-beta.36
270
+
271
+ ### Minor Changes
272
+
273
+ - [#342](https://github.com/adobe/spectrum-tokens/pull/342) [`9da9532`](https://github.com/adobe/spectrum-tokens/commit/9da9532f1915070d289f7cce6f4e562c2565f889) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Newly defined S2 Icon colors by the Icons team were incorporated into our system. This includes updates to existing colors and new color additions. More details on icon colors can be found [in this document](https://paper.dropbox.com/doc/S2-Icon-colors-May-update--CPQCbAN3uvmfSCYV5UekAgYkAg-BqbGyRAAL87Ehoqm9WrCB) and [this Figma file](https://www.figma.com/design/KRqwJWgLuW4R7HwFUzKWiB/S2-Icon-color?node-id=0%3A1&t=jRZwm9gOH4dyLwL7-1).
274
+
275
+ ## Design motivation
276
+
277
+ Icons team defined new S2 color tokens needed for their iconography assets.
278
+
279
+ ## Token diff
280
+
281
+ _Tokens added (78):_
282
+
283
+ - `icon-color-blue-background`
284
+ - `icon-color-blue-primary-down`
285
+ - `icon-color-blue-primary-hover`
286
+ - `icon-color-brown-background`
287
+ - `icon-color-brown-primary-default`
288
+ - `icon-color-brown-primary-down`
289
+ - `icon-color-brown-primary-hover`
290
+ - `icon-color-celery-background`
291
+ - `icon-color-celery-primary-default`
292
+ - `icon-color-celery-primary-down`
293
+ - `icon-color-celery-primary-hover`
294
+ - `icon-color-chartreuse-background`
295
+ - `icon-color-chartreuse-primary-default`
296
+ - `icon-color-chartreuse-primary-down`
297
+ - `icon-color-chartreuse-primary-hover`
298
+ - `icon-color-cinnamon-background`
299
+ - `icon-color-cinnamon-primary-default`
300
+ - `icon-color-cinnamon-primary-down`
301
+ - `icon-color-cinnamon-primary-hover`
302
+ - `icon-color-cyan-background`
303
+ - `icon-color-cyan-primary-default`
304
+ - `icon-color-cyan-primary-down`
305
+ - `icon-color-cyan-primary-hover`
306
+ - `icon-color-disabled-primary`
307
+ - `icon-color-emphasized-background`
308
+ - `icon-color-fuchsia-background`
309
+ - `icon-color-fuchsia-primary-default`
310
+ - `icon-color-fuchsia-primary-down`
311
+ - `icon-color-fuchsia-primary-hover`
312
+ - `icon-color-green-background`
313
+ - `icon-color-green-primary-down`
314
+ - `icon-color-green-primary-hover`
315
+ - `icon-color-indigo-background`
316
+ - `icon-color-indigo-primary-default`
317
+ - `icon-color-indigo-primary-down`
318
+ - `icon-color-indigo-primary-hover`
319
+ - `icon-color-informative`
320
+ - `icon-color-inverse-background`
321
+ - `icon-color-magenta-background`
322
+ - `icon-color-magenta-primary-default`
323
+ - `icon-color-magenta-primary-down`
324
+ - `icon-color-magenta-primary-hover`
325
+ - `icon-color-negative`
326
+ - `icon-color-neutral`
327
+ - `icon-color-notice`
328
+ - `icon-color-orange-background`
329
+ - `icon-color-orange-primary-default`
330
+ - `icon-color-orange-primary-down`
331
+ - `icon-color-orange-primary-hover`
332
+ - `icon-color-pink-background`
333
+ - `icon-color-pink-primary-default`
334
+ - `icon-color-pink-primary-down`
335
+ - `icon-color-pink-primary-hover`
336
+ - `icon-color-positive`
337
+ - `icon-color-primary-down`
338
+ - `icon-color-primary-hover`
339
+ - `icon-color-purple-background`
340
+ - `icon-color-purple-primary-default`
341
+ - `icon-color-purple-primary-down`
342
+ - `icon-color-purple-primary-hover`
343
+ - `icon-color-red-background`
344
+ - `icon-color-red-primary-down`
345
+ - `icon-color-red-primary-hover`
346
+ - `icon-color-seafoam-background`
347
+ - `icon-color-seafoam-primary-default`
348
+ - `icon-color-seafoam-primary-down`
349
+ - `icon-color-seafoam-primary-hover`
350
+ - `icon-color-silver-background`
351
+ - `icon-color-silver-primary-default`
352
+ - `icon-color-silver-primary-down`
353
+ - `icon-color-silver-primary-hover`
354
+ - `icon-color-turquoise-background`
355
+ - `icon-color-turquoise-primary-default`
356
+ - `icon-color-turquoise-primary-down`
357
+ - `icon-color-turquoise-primary-hover`
358
+ - `icon-color-yellow-background`
359
+ - `icon-color-yellow-primary-down`
360
+ - `icon-color-yellow-primary-hover`
361
+
362
+ ## 13.0.0-beta.35
363
+
364
+ ### Minor Changes
365
+
366
+ - [#337](https://github.com/adobe/spectrum-tokens/pull/337) [`df2ab7e`](https://github.com/adobe/spectrum-tokens/commit/df2ab7ed77d385593342a3ced7bfded94bd8af8e) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated illustrated message and drop zone tokens
367
+
368
+ ## Design Motivation
369
+
370
+ - The previous tokens had the incorrect types. By fixing the type, they can reference the updated tokens that are replacing them.
371
+ - Illustrated message now has three sizes (S, M, L) in Spectrum 2 to cover a wider range of use cases
372
+ - Component font size tokens now specify font in the token name
373
+
374
+ ## Token Diff
375
+
376
+ _Tokens added (12):_
377
+
378
+ - `drop-zone-body-font-size`
379
+ - `drop-zone-cjk-title-font-size`
380
+ - `drop-zone-title-font-size`
381
+ - `illustrated-message-large-body-font-size`
382
+ - `illustrated-message-large-cjk-title-font-size`
383
+ - `illustrated-message-large-title-font-size`
384
+ - `illustrated-message-medium-body-font-size`
385
+ - `illustrated-message-medium-cjk-title-font-size`
386
+ - `illustrated-message-medium-title-font-size`
387
+ - `illustrated-message-small-body-font-size`
388
+ - `illustrated-message-small-cjk-title-font-size`
389
+ - `illustrated-message-small-title-font-size`
390
+
391
+ _Newly deprecated tokens (6):_
392
+
393
+ - `drop-zone-body-size`
394
+ - `drop-zone-cjk-title-size`
395
+ - `drop-zone-title-size`
396
+ - `illustrated-message-body-size`
397
+ - `illustrated-message-cjk-title-size`
398
+ - `illustrated-message-title-size`
399
+
400
+ _Token value updated (1):_
401
+
402
+ - `drop-zone-border-dash-gap`
403
+
404
+ ## 13.0.0-beta.34
405
+
406
+ ### Minor Changes
407
+
408
+ - [#334](https://github.com/adobe/spectrum-tokens/pull/334) [`4d28593`](https://github.com/adobe/spectrum-tokens/commit/4d28593c9d34414d72d78a1cc6c480d9ffdf82ce) Thanks [@nabuhasan](https://github.com/nabuhasan)! - S2 Popover tokens update
409
+
410
+ ## Token Diff
411
+
412
+ _Tokens added (3):_
413
+
414
+ - `popover-border-color`
415
+ - `popover-border-opacity`
416
+ - `popover-edge-to-content-area`
417
+
418
+ _Newly deprecated token (1):_
419
+
420
+ - `popover-top-to-content-area`
421
+
422
+ ## 13.0.0-beta.33
423
+
424
+ ### Minor Changes
425
+
426
+ - [#331](https://github.com/adobe/spectrum-tokens/pull/331) [`0bbfedb`](https://github.com/adobe/spectrum-tokens/commit/0bbfedb9dbb63fdd5b20e91f65b3f958a833313b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - S2 Menu token updates
427
+
428
+ ## Token Diff
429
+
430
+ _Tokens added (23):_
431
+
432
+ - `link-out-icon-size-100`
433
+ - `link-out-icon-size-200`
434
+ - `link-out-icon-size-75`
435
+ - `menu-item-background-color-default`
436
+ - `menu-item-background-color-disabled`
437
+ - `menu-item-background-color-down`
438
+ - `menu-item-background-color-hover`
439
+ - `menu-item-background-color-keyboard-focus`
440
+ - `menu-item-background-opacity`
441
+ - `menu-item-label-to-description`
442
+ - `menu-item-label-to-description-extra-large`
443
+ - `menu-item-label-to-description-large`
444
+ - `menu-item-label-to-description-medium`
445
+ - `menu-item-label-to-description-small`
446
+ - `menu-item-top-to-thumbnail-extra-large`
447
+ - `menu-item-top-to-thumbnail-large`
448
+ - `menu-item-top-to-thumbnail-medium`
449
+ - `menu-item-top-to-thumbnail-small`
450
+ - `menu-section-header-to-description-extra-large`
451
+ - `menu-section-header-to-description-large`
452
+ - `menu-section-header-to-description-medium`
453
+ - `menu-section-header-to-description-small`
454
+ - `text-to-visual-400`
455
+
456
+ _Token values updated (1):_
457
+
458
+ - `menu-item-section-divider-height`
459
+
460
+ ## 13.0.0-beta.32
461
+
462
+ ### Minor Changes
463
+
464
+ - [#325](https://github.com/adobe/spectrum-tokens/pull/325) [`095248e`](https://github.com/adobe/spectrum-tokens/commit/095248e26bdd1c8b65a61f3793646bb44093c38b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added semantic aliases used by in-line alert.
465
+
466
+ ## Token Diff
467
+
468
+ _Tokens added (5):_
469
+
470
+ - `informative-subtle-background-color-default`
471
+ - `negative-subtle-background-color-default`
472
+ - `neutral-subtle-background-color-default`
473
+ - `notice-subtle-background-color-default`
474
+ - `positive-subtle-background-color-default`
475
+
476
+ ## 13.0.0-beta.31
477
+
478
+ ### Minor Changes
479
+
480
+ - [#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.
481
+
482
+ ## 13.0.0-beta.30
483
+
484
+ ### Minor Changes
485
+
486
+ - [#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
487
+
488
+ ## Token Diff
489
+
490
+ _Tokens added (10):_
491
+
492
+ - `standard-dialog-body-font-size`
493
+ - `standard-dialog-maximum-width-large`
494
+ - `standard-dialog-maximum-width-medium`
495
+ - `standard-dialog-maximum-width-small`
496
+ - `standard-dialog-minimum-width`
497
+ - `standard-dialog-title-font-size`
498
+ - `status-light-text-to-visual-100`
499
+ - `status-light-text-to-visual-200`
500
+ - `status-light-text-to-visual-300`
501
+ - `status-light-text-to-visual-75`
502
+
503
+ _Token values updated (10):_
504
+
505
+ - `alert-banner-to-top-workflow-icon`
506
+ - `alert-banner-top-to-workflow-icon`
507
+ - `status-light-dot-size-extra-large`
508
+ - `status-light-dot-size-large`
509
+ - `status-light-dot-size-medium`
510
+ - `status-light-top-to-dot-extra-large`
511
+ - `status-light-top-to-dot-large`
512
+ - `status-light-top-to-dot-medium`
513
+ - `status-light-top-to-dot-small`
514
+ - `status-light-dot-size-small`
515
+
516
+ ## 13.0.0-beta.29
517
+
518
+ ### Minor Changes
519
+
520
+ - [#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.
521
+
522
+ These values are updated based on the new workflow icon size.
523
+
524
+ ## Token Diff
525
+
526
+ _Token values updated (4):_
527
+
528
+ - `component-pill-edge-to-visual-only-100`
529
+ - `component-pill-edge-to-visual-only-200`
530
+ - `component-pill-edge-to-visual-only-300`
531
+ - `component-pill-edge-to-visual-only-75`
532
+
533
+ - [#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)
534
+
535
+ ## Token Diff
536
+
537
+ _Newly deprecated tokens (2):_
538
+
539
+ - `color-loupe-drop-shadow-color`
540
+ - `drop-shadow-color`
541
+
542
+ ## 13.0.0-beta.28
543
+
544
+ ### Patch Changes
545
+
546
+ - 1150331: Removed duplicate tokens from src files.
547
+
548
+ ## 13.0.0-beta.27
549
+
550
+ ### Minor Changes
551
+
552
+ - 3236495: Updated coach mark tokens for both desktop and mobile
553
+
554
+ ## Token Diff
555
+
556
+ _Tokens added (6):_
557
+
558
+ - `coach-mark-body-font-size`
559
+ - `coach-mark-pagination-body-font-size`
560
+ - `coach-mark-title-font-size`
561
+
562
+ _Newly deprecated tokens (3):_
563
+
564
+ - `coach-mark-body-size`
565
+ - `coach-mark-pagination-body-size`
566
+ - `coach-mark-title-size`
567
+
568
+ ## 13.0.0-beta.26
569
+
570
+ ### Minor Changes
571
+
572
+ - b59fa8f: Updated alert dialog tokens
573
+
574
+ ## Token Diff
575
+
576
+ _Tokens added (4):_
577
+
578
+ - `alert-dialog-description-font-size`
579
+ - `alert-dialog-description-size`
580
+ - `alert-dialog-title-font-size`
581
+ - `alert-dialog-title-size`
582
+
583
+ _Newly deprecated tokens (2):_
584
+
585
+ - `alert-dialog-description-size`
586
+ - `alert-dialog-title-size`
587
+
588
+ ## 13.0.0-beta.25
589
+
590
+ ### Minor Changes
591
+
592
+ - e79ddd6: S2 Combo box, In-field button and In-field progress circle updates
593
+
594
+ ## Motivation and context
595
+
596
+ These changes occurred as a result of scaling things for S2 design language and experiences.
597
+
598
+ ## Token Diff
599
+
600
+ _Tokens added (15):_
601
+
602
+ - `combo-box-visual-to-field-button`
603
+ - `combo-box-visual-to-field-button-extra-large`
604
+ - `combo-box-visual-to-field-button-large`
605
+ - `combo-box-visual-to-field-button-medium`
606
+ - `combo-box-visual-to-field-button-quiet`
607
+ - `combo-box-visual-to-field-button-small`
608
+ - `in-field-button-edge-to-fill-extra-large`
609
+ - `in-field-button-edge-to-fill-large`
610
+ - `in-field-button-edge-to-fill-medium`
611
+ - `in-field-button-edge-to-fill-small`
612
+ - `in-field-progress-circle-edge-to-fill`
613
+ - `in-field-progress-circle-size-100`
614
+ - `in-field-progress-circle-size-200`
615
+ - `in-field-progress-circle-size-300`
616
+ - `in-field-progress-circle-size-75`
617
+
618
+ _Newly deprecated tokens (6):_
619
+
620
+ - `combo-box-quiet-minimum-width-multiplier`
621
+ - `combo-box-visual-to-field-button-small`
622
+ - `combo-box-visual-to-field-button-medium`
623
+ - `combo-box-visual-to-field-button-large`
624
+ - `combo-box-visual-to-field-button-extra-large`
625
+ - `in-field-button-edge-to-fill`
626
+
627
+ - e79ddd6: S2 Color loupe tokens update
628
+
629
+ ## Design Motivation
630
+
631
+ These changes occurred as a result of scaling things for S2 design language and experiences.
632
+
633
+ ## Token Diff
634
+
635
+ _Newly deprecated tokens (2):_
636
+
637
+ - `color-loupe-drop-shadow-blur`
638
+ - `color-loupe-drop-shadow-y`
639
+
640
+ ## 13.0.0-beta.24
641
+
642
+ ### Major Changes
643
+
644
+ - 1c8f7ab: Renamed previous drop shadow tokens from S1 and pointed them to the new `100` S2 drop shadow tokens
645
+ Added new drop shadow tokens, `100`, `200`, `emphasized-default`, `emphasized-hover`, `elevated`.
646
+
647
+ ## Design Motivation
648
+
649
+ These tokens reflect the updates to drop tokens foundations in Spectrum 2, allowing more options and flexibility of usage in containers
650
+
651
+ ## Token Diff
652
+
653
+ _Tokens added (24):_
654
+
655
+ - `drop-shadow-blur`
656
+ - `drop-shadow-blur-100`
657
+ - `drop-shadow-blur-200`
658
+ - `drop-shadow-color`
659
+ - `drop-shadow-color-100`
660
+ - `drop-shadow-color-200`
661
+ - `drop-shadow-elevated-blur`
662
+ - `drop-shadow-elevated-color`
663
+ - `drop-shadow-elevated-x`
664
+ - `drop-shadow-elevated-y`
665
+ - `drop-shadow-emphasized-default-blur`
666
+ - `drop-shadow-emphasized-default-color`
667
+ - `drop-shadow-emphasized-default-x`
668
+ - `drop-shadow-emphasized-default-y`
669
+ - `drop-shadow-emphasized-hover-blur`
670
+ - `drop-shadow-emphasized-hover-color`
671
+ - `drop-shadow-emphasized-hover-x`
672
+ - `drop-shadow-emphasized-hover-y`
673
+ - `drop-shadow-x`
674
+ - `drop-shadow-x-100`
675
+ - `drop-shadow-x-200`
676
+ - `drop-shadow-y`
677
+ - `drop-shadow-y-100`
678
+ - `drop-shadow-y-200`
679
+
680
+ _Tokens deleted (2):_
681
+
682
+ - `drop-shadow-blur`
683
+ - `drop-shadow-y`
684
+
685
+ _Token values updated (2):_
686
+
687
+ - `color-handle-drop-shadow-color`
688
+ - `drop-shadow-color`
689
+
690
+ ### Minor Changes
691
+
692
+ - 3230aba: Updated and added S2 drop shadow tokens
693
+
694
+ ## Design Motivation
695
+
696
+ These changes occurred as a result of scaling things for S2 design language and experiences.
697
+
698
+ ## Token Diff
699
+
700
+ _Tokens added (7):_
701
+
702
+ - `field-default-width-extra-large`
703
+ - `field-default-width-large`
704
+ - `field-default-width-medium`
705
+ - `field-default-width-small`
706
+ - `tag-minimum-width-large`
707
+ - `tag-minimum-width-medium`
708
+ - `tag-minimum-width-small`
709
+
710
+ _Token values updated (4):_
711
+
712
+ - `field-top-to-progress-circle-extra-large`
713
+ - `field-top-to-progress-circle-large`
714
+ - `field-top-to-progress-circle-medium`
715
+ - `field-top-to-progress-circle-small`
716
+
717
+ _Newly Deprecated Tokens (4):_
718
+
719
+ - `field-width-extra-large`
720
+ - `field-width-large`
721
+ - `field-width-medium`
722
+ - `field-width-small`
723
+
724
+ ## 13.0.0-beta.23
725
+
726
+ ### Patch Changes
727
+
728
+ - 936f608: Fixed misnamed accordion token.
729
+
730
+ ## Token Diff
731
+
732
+ _Tokens added (1):_
733
+
734
+ - `accordion-top-to-text-spacious-small`
735
+
736
+ _Newly deprecated token (1):_
737
+
738
+ - `accordion-small-top-to-text-spacious`
739
+
740
+ ## 13.0.0-beta.22
741
+
742
+ ### Minor Changes
743
+
744
+ - c42448c: Updated and added alert dialog tokens for both desktop and mobile.
745
+
746
+ ## Design Motivation
747
+
748
+ 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.
749
+
750
+ Title is a new typography style for Spectrum 2, and has a default `title-color` token.
751
+
752
+ ## Token Diff
753
+
754
+ _Tokens added (2):_
755
+
756
+ - `alert-banner-top-to-alert-icon`
757
+ - `title-color`
758
+
759
+ _Token values updated (2):_
760
+
761
+ - `alert-dialog-description-size`
762
+ - `alert-dialog-title-size`
763
+
764
+ - 46a801c: Added tokens for S2 title color
765
+
766
+ ## 13.0.0-beta.21
767
+
768
+ ### Minor Changes
769
+
770
+ - d71bea1: S2 Opacity checkerboard non-color token updates
771
+
772
+ ## Design Motivation
773
+
774
+ These changes occurred as a result of scaling things for S2 design language and experiences.
775
+
776
+ ## Token Diff
777
+
778
+ _Tokens added (2):_
779
+
780
+ - `opacity-checkerboard-square-size-medium`
781
+ - `opacity-checkerboard-square-size-small`
782
+
783
+ _Newly deprecated token (1):_
784
+
785
+ - `opacity-checkerboard-square-size`
786
+
787
+ ## 13.0.0-beta.20
788
+
789
+ ### Minor Changes
790
+
791
+ - fb61f17: Added Title typography tokens
792
+
793
+ ## Design Motivation
794
+
795
+ 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.
796
+
797
+ ## Token Diff
798
+
799
+ _Tokens added (45):_
800
+
801
+ - `title-cjk-emphasized-font-style`
802
+ - `title-cjk-emphasized-font-weight`
803
+ - `title-cjk-font-family`
804
+ - `title-cjk-font-style`
805
+ - `title-cjk-font-weight`
806
+ - `title-cjk-line-height`
807
+ - `title-cjk-size-l`
808
+ - `title-cjk-size-m`
809
+ - `title-cjk-size-s`
810
+ - `title-cjk-size-xl`
811
+ - `title-cjk-size-xs`
812
+ - `title-cjk-size-xxl`
813
+ - `title-cjk-size-xxxl`
814
+ - `title-cjk-strong-emphasized-font-style`
815
+ - `title-cjk-strong-emphasized-font-weight`
816
+ - `title-cjk-strong-font-style`
817
+ - `title-cjk-strong-font-weight`
818
+ - `title-line-height`
819
+ - `title-margin-bottom-multiplier`
820
+ - `title-margin-top-multiplier`
821
+ - `title-sans-serif-emphasized-font-style`
822
+ - `title-sans-serif-emphasized-font-weight`
823
+ - `title-sans-serif-font-family`
824
+ - `title-sans-serif-font-style`
825
+ - `title-sans-serif-font-weight`
826
+ - `title-sans-serif-strong-emphasized-font-style`
827
+ - `title-sans-serif-strong-emphasized-font-weight`
828
+ - `title-sans-serif-strong-font-style`
829
+ - `title-sans-serif-strong-font-weight`
830
+ - `title-serif-emphasized-font-style`
831
+ - `title-serif-emphasized-font-weight`
832
+ - `title-serif-font-family`
833
+ - `title-serif-font-style`
834
+ - `title-serif-font-weight`
835
+ - `title-serif-strong-emphasized-font-style`
836
+ - `title-serif-strong-emphasized-font-weight`
837
+ - `title-serif-strong-font-style`
838
+ - `title-serif-strong-font-weight`
839
+ - `title-size-l`
840
+ - `title-size-m`
841
+ - `title-size-s`
842
+ - `title-size-xl`
843
+ - `title-size-xs`
844
+ - `title-size-xxl`
845
+ - `title-size-xxxl`
846
+
847
+ ## 13.0.0-beta.19
848
+
849
+ ### Minor Changes
850
+
851
+ - 723d3b0: Updated, added, and deprecated tokens for text field and text area.
852
+
853
+ ## Design Motivation
854
+
855
+ Updating text field and text area for Spectrum 2.
856
+
857
+ ## Token Diff
858
+
859
+ _Tokens added (4):_
860
+
861
+ - `field-width-small`
862
+ - `field-width-medium`
863
+ - `field-width-large`
864
+ - `field-width-extra-large`
865
+
866
+ _Updated token values (4):_
867
+
868
+ - `side-label-character-count-top-margin-small`
869
+ - `side-label-character-count-top-margin-medium`
870
+ - `side-label-character-count-top-margin-large`
871
+ - `side-label-character-count-top-margin-extra-large`
872
+
873
+ _Newly deprecated tokens (8):_
874
+
875
+ - `field-width`
876
+ - `field-edge-to-text-quiet`
877
+ - `field-edge-to-border-quiet`
878
+ - `field-edge-to-alert-icon-quiet`
879
+ - `field-edge-to-validation-icon-quiet`
880
+ - `field-label-to-component-quiet-small`
881
+ - `field-label-to-component-quiet-medium`
882
+ - `field-label-to-component-quiet-large`
883
+ - `field-label-to-component-quiet-extra-large`
884
+ - `character-count-to-field-quiet-small`
885
+ - `character-count-to-field-quiet-medium`
886
+ - `character-count-to-field-quiet-large`
887
+ - `character-count-to-field-quiet-extra-large`
888
+
889
+ - 66b1edf: Updated color of color-area-border-color token from gray.900 to gray.1000 in both light and dark sets.
890
+
891
+ ## Design motivation
892
+
893
+ These changes occurred as a result of scaling things for S2 design language and experiences.
894
+
895
+ ## Token Diff
896
+
897
+ _Token value updated (1):_
898
+
899
+ - `color-area-border-color`
900
+
901
+ - 7b5f18b: Update alert banner for Spectrum 2
902
+
903
+ ## Design Motivation
904
+
905
+ These changes occurred as a result of scaling things for S2 design language and experiences.
906
+
907
+ ## Token Diff
908
+
909
+ _Token values updated (5):_
910
+
911
+ - `alert-banner-bottom-to-text`
912
+ - `alert-banner-minimum-height`
913
+ - `alert-banner-top-to-text`
914
+ - `alert-banner-top-to-workflow-icon`
915
+ - `search-field-minimum-width-multiplier`
916
+
917
+ - 4a84fdd: Spectrum 2 Toast Tokens
918
+
919
+ ## Design motivation
920
+
921
+ Updated the `color-area-border-rounding` token type from spacing to borderRadius and adjusted value referenced, desktop and mobile scale.
922
+
923
+ These changes occurred as a result of scaling things for S2 design language and experiences.
924
+
925
+ ## Token Diff
926
+
927
+ _Token values updated (5):_
928
+
929
+ - `toast-height`
930
+ - `toast-top-to-workflow-icon`
931
+ - `toast-top-to-text`
932
+ - `toast-bottom-to-text`
933
+ - `color-area-border-rounding`
934
+
935
+ ## 13.0.0-beta.18
936
+
937
+ ### Minor Changes
938
+
939
+ - 940bd78: Updated background aliases in dark theme; added new non-semantic colors
940
+
941
+ ## Design Motivation
942
+
943
+ 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.
944
+ 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.
945
+
946
+ ## Token Diff
947
+
948
+ _Tokens added (10):_
949
+
950
+ - `brown-background-color-default`
951
+ - `brown-visual-color`
952
+ - `cinnamon-background-color-default`
953
+ - `cinnamon-visual-color`
954
+ - `pink-background-color-default`
955
+ - `pink-visual-color`
956
+ - `silver-background-color-default`
957
+ - `silver-visual-color`
958
+ - `turquoise-background-color-default`
959
+ - `turquoise-visual-color`
960
+
961
+ _Token values updated (27):_
962
+
963
+ - `accent-background-color-default`
964
+ - `accent-background-color-down`
965
+ - `accent-background-color-hover`
966
+ - `accent-background-color-key-focus`
967
+ - `celery-background-color-default`
968
+ - `chartreuse-background-color-default`
969
+ - `gray-background-color-default`
970
+ - `informative-background-color-default`
971
+ - `informative-background-color-down`
972
+ - `informative-background-color-hover`
973
+ - `informative-background-color-key-focus`
974
+ - `negative-background-color-default`
975
+ - `negative-background-color-down`
976
+ - `negative-background-color-hover`
977
+ - `negative-background-color-key-focus`
978
+ - `neutral-subdued-background-color-default`
979
+ - `neutral-subdued-background-color-down`
980
+ - `neutral-subdued-background-color-hover`
981
+ - `neutral-subdued-background-color-key-focus`
982
+ - `notice-background-color-default`
983
+ - `orange-background-color-default`
984
+ - `positive-background-color-default`
985
+ - `positive-background-color-down`
986
+ - `positive-background-color-hover`
987
+ - `positive-background-color-key-focus`
988
+ - `table-selected-row-background-color`
989
+ - `yellow-background-color-default`
990
+
991
+ ## 13.0.0-beta.17
992
+
993
+ ### Minor Changes
994
+
995
+ - 9072ae7: `color-slider-border-color` token was updated to reference `gray-1000` instead of `gray-90`0 in both light and dark themes.
996
+ - 912e307: Updated `color-slider-border-rounding` token to use 7px instead of 4px in desktop only.
997
+ This token value update is the same value used by alias token: `corner-radius-medium-size-small`.
998
+
999
+ ## Design Motivation
1000
+
1001
+ S2 color slider design changes.
1002
+
1003
+ ## Token Diff
1004
+
1005
+ _Token values updated (2):_
1006
+
1007
+ - `color-slider-border-color`
1008
+ - `color-slider-border-rounding`
1009
+
1010
+ ## 13.0.0-beta.16
1011
+
1012
+ ### Minor Changes
1013
+
1014
+ - 80a3fec: New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets.
1015
+
1016
+ ## Design Motivation
1017
+
1018
+ New values for tag component for S2.
1019
+
1020
+ ## Token Diff
1021
+
1022
+ _Tokens added (9):_
1023
+
1024
+ - `tag-edge-to-clear-icon-large`
1025
+ - `tag-edge-to-clear-icon-medium`
1026
+ - `tag-edge-to-clear-icon-small`
1027
+ - `tag-label-clear-icon-large`
1028
+ - `tag-label-to-clear-icon-large`
1029
+ - `tag-label-to-clear-icon-medium`
1030
+ - `tag-label-to-clear-icon-small`
1031
+ - `tag-maximum-width-multiplier`
1032
+ - `tag-minimum-width-multiplier`
1033
+
1034
+ ## 13.0.0-beta.15
1035
+
1036
+ ### Minor Changes
1037
+
1038
+ - c7c1d81: Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes.
1039
+ - 4b78009: Updated values and added new tokens for Switch.
1040
+
1041
+ ## Design Motivation
1042
+
1043
+ New negative-subdued background tokens were needed for negative and not selected tag components.
1044
+
1045
+ Added new tokens: `switch-handle-size-_` and `switch-handle-selected-size-_` for both desktop and mobile.
1046
+ Update token values on: `switch-control-width-_` and `switch-control-height-_` for both desktop and mobile.
1047
+
1048
+ 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.
1049
+
1050
+ ## Token Diff
1051
+
1052
+ _Tokens added (12):_
1053
+
1054
+ - `negative-subdued-background-color-default`
1055
+ - `negative-subdued-background-color-down`
1056
+ - `negative-subdued-background-color-hover`
1057
+ - `negative-subdued-background-color-key-focus`
1058
+ - `switch-handle-selected-size-extra-large`
1059
+ - `switch-handle-selected-size-large`
1060
+ - `switch-handle-selected-size-medium`
1061
+ - `switch-handle-selected-size-small`
1062
+ - `switch-handle-size-extra-large`
1063
+ - `switch-handle-size-large`
1064
+ - `switch-handle-size-medium`
1065
+ - `switch-handle-size-small`
1066
+
1067
+ _Token values updated (8):_
1068
+
1069
+ - `switch-control-height-extra-large`
1070
+ - `switch-control-height-large`
1071
+ - `switch-control-height-medium`
1072
+ - `switch-control-height-small`
1073
+ - `switch-control-width-extra-large`
1074
+ - `switch-control-width-large`
1075
+ - `switch-control-width-medium`
1076
+ - `switch-control-width-small`
1077
+
1078
+ ## 13.0.0-beta.14
1079
+
1080
+ ### Minor Changes
1081
+
1082
+ - f004b0c: The tokens listed in the diff below had identical values between sets and so were merged to single values to simplify the data.
1083
+
1084
+ ## Token Diff
1085
+
1086
+ _Tokens values updated (46):_
1087
+
1088
+ - `accordion-disclosure-indicator-to-text`
1089
+ - `accordion-edge-to-disclosure-indicator`
1090
+ - `accordion-edge-to-text`
1091
+ - `accordion-focus-indicator-gap`
1092
+ - `accordion-top-to-text-compact-medium`
1093
+ - `accordion-top-to-text-compact-small`
1094
+ - `action-button-edge-to-hold-icon-extra-small`
1095
+ - `action-button-edge-to-hold-icon-small`
1096
+ - `asterisk-icon-size-75`
1097
+ - `background-base-color`
1098
+ - `background-layer-1-color`
1099
+ - `color-area-border-rounding`
1100
+ - `corner-radius-0`
1101
+ - `corner-radius-100`
1102
+ - `corner-radius-1000`
1103
+ - `corner-radius-200`
1104
+ - `corner-radius-300`
1105
+ - `corner-radius-400`
1106
+ - `corner-radius-500`
1107
+ - `corner-radius-600`
1108
+ - `corner-radius-700`
1109
+ - `corner-radius-75`
1110
+ - `corner-radius-800`
1111
+ - `corner-radius-extra-large-default`
1112
+ - `corner-radius-full`
1113
+ - `corner-radius-large-default`
1114
+ - `corner-radius-medium-default`
1115
+ - `corner-radius-medium-size-extra-large`
1116
+ - `corner-radius-medium-size-extra-small`
1117
+ - `corner-radius-medium-size-large`
1118
+ - `corner-radius-medium-size-medium`
1119
+ - `corner-radius-medium-size-small`
1120
+ - `corner-radius-none`
1121
+ - `corner-radius-small-default`
1122
+ - `corner-radius-small-size-extra-large`
1123
+ - `corner-radius-small-size-large`
1124
+ - `corner-radius-small-size-medium`
1125
+ - `corner-radius-small-size-small`
1126
+ - `drop-shadow-x`
1127
+ - `field-label-top-margin-extra-large`
1128
+ - `field-label-top-margin-large`
1129
+ - `field-label-top-margin-medium`
1130
+ - `field-label-top-margin-small`
1131
+ - `gray-background-color-default`
1132
+ - `status-light-dot-size-small`
1133
+ - `table-edge-to-content`
1134
+
1135
+ ## 13.0.0-beta.13
1136
+
1137
+ ### Minor Changes
1138
+
1139
+ - ef600c4: ## Design Motivation
1140
+
1141
+ - The updated tooltip component in Spectrum 2 has a larger, slightly rounded tip
1142
+ - Added tokens for horizontal and vertical orientation
1143
+
1144
+ ## Tokens Diff
1145
+
1146
+ _Tokens added (3):_
1147
+
1148
+ - `divider-horizontal-minimum-width`
1149
+ - `divider-vertical-minimum-height`
1150
+ - `tooltip-tip-corner-radius`
1151
+
1152
+ _Token values updated (2):_
1153
+
1154
+ - `tooltip-tip-height`
1155
+ - `tooltip-tip-width`
1156
+
1157
+ ## 13.0.0-beta.12
1158
+
1159
+ ### Minor Changes
1160
+
1161
+ - c87d743: Updates to spacing tokens for the S2 field label component include:
1162
+
1163
+ 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.
1164
+
1165
+ Token: field-label-top-margin-[medium, large, extra-large]. All values were updated to reflect 0px for both desktop and mobile scales
1166
+
1167
+ ## Design Motivation
1168
+
1169
+ These changes occurred as a result of updates to the field label component for S2.
1170
+
1171
+ ## Token Diff
1172
+
1173
+ _Token values updated (4):_
1174
+
1175
+ - `field-label-top-margin-extra-large`
1176
+ - `field-label-top-margin-large`
1177
+ - `field-label-top-margin-medium`
1178
+ - `field-label-top-to-asterisk-extra-large`
1179
+
1180
+ ## Schema Diff
1181
+
1182
+ Adds missing schema information for `corner-radius-1000`. Also added `schemas/token-types/multiplier.json` to the `scale-set` schema.
1183
+
1184
+ ## 13.0.0-beta.11
1185
+
1186
+ ### Minor Changes
1187
+
1188
+ - 3c6303a: Updated text-to-visual-300 mobile value from 11px to 10px.
1189
+
1190
+ ## Design Motivation
1191
+
1192
+ To better follow our logarithmic scale rounding principle.
1193
+
1194
+ ## Token Diff
1195
+
1196
+ _Token values updated (1):_
1197
+
1198
+ - `text-to-visual-300`
1199
+
1200
+ - 6579966: existing corner-radius tokens, adding net-new global corner radius tokens, and introducing new alias names that point to these global values.
1201
+
1202
+ ## Design Motivation
1203
+
1204
+ More on Spectrum 2 rounding: https://s2.spectrum.corp.adobe.com/page/object-styles/#rounding
1205
+
1206
+ 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.
1207
+
1208
+ ## Token Diff
1209
+
1210
+ _Tokens added (23):_
1211
+
1212
+ - `corner-radius-0`
1213
+ - `corner-radius-300`
1214
+ - `corner-radius-400`
1215
+ - `corner-radius-500`
1216
+ - `corner-radius-600`
1217
+ - `corner-radius-700`
1218
+ - `corner-radius-800`
1219
+ - `corner-radius-1000`
1220
+ - `corner-radius-extra-large-default`
1221
+ - `corner-radius-full`
1222
+ - `corner-radius-large-default`
1223
+ - `corner-radius-medium-default`
1224
+ - `corner-radius-medium-size-extra-small`
1225
+ - `corner-radius-medium-size-small`
1226
+ - `corner-radius-medium-size-medium`
1227
+ - `corner-radius-medium-size-large`
1228
+ - `corner-radius-medium-size-extra-large`
1229
+ - `corner-radius-none`
1230
+ - `corner-radius-small-default`
1231
+ - `corner-radius-small-size-small`
1232
+ - `corner-radius-small-size-medium`
1233
+ - `corner-radius-small-size-large`
1234
+ - `corner-radius-small-size-extra-large`
1235
+
1236
+ _Token values updated (3):_
1237
+
1238
+ - `corner-radius-75`
1239
+ - `corner-radius-100`
1240
+ - `corner-radius-200`
1241
+
1242
+ ## 13.0.0-beta.10
1243
+
1244
+ ### Minor Changes
1245
+
1246
+ - 23d9085: Updated desktop and mobile values for component-edge-to-visual-only tokens.
1247
+
1248
+ Spacing changed due to new workflow icon sizes.
1249
+
1250
+ ## Token Diff
1251
+
1252
+ _Token values updated (5):_
1253
+
1254
+ - `component-edge-to-visual-only-100`
1255
+ - `component-edge-to-visual-only-200`
1256
+ - `component-edge-to-visual-only-300`
1257
+ - `component-edge-to-visual-only-50`
1258
+ - `component-edge-to-visual-only-75`
1259
+
1260
+ - c5430b7: Updated help-text-top-to-workflow-icon-_ token values to point to component-top-to-workflow-icon-_ tokens
1261
+
1262
+ ## Token Diff
1263
+
1264
+ _Newly deprecated tokens (4):_
1265
+
1266
+ - `help-text-top-to-workflow-icon-extra-large`: use `component-edge-to-visual-only-300`
1267
+ - `help-text-top-to-workflow-icon-large`: use `component-edge-to-visual-only-200`
1268
+ - `help-text-top-to-workflow-icon-medium`: use `component-edge-to-visual-only-100`
1269
+ - `help-text-top-to-workflow-icon-small`: use `component-edge-to-visual-only-75`
1270
+
1271
+ ## 13.0.0-beta.9
1272
+
1273
+ ### Minor Changes
1274
+
1275
+ - cf09c84: Updated workflow-icon-size-50, 75, 100, 200, 300 with Spectrum 2 values in mobile and desktop.
1276
+ Updated component-top-to-workflow and text-to-visual padding.
1277
+ Added 3 new non-color tokens for S2 component downstates in Tokens Studio.
1278
+
1279
+ ## Design Motivation
1280
+
1281
+ Spectrum 2 icons have a different workflow icon sizing with base sizes 20 px (desktop), 24 px (mobile).
1282
+
1283
+ Updated padding values due to new workflow icon sizes in S2.
1284
+
1285
+ 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.
1286
+
1287
+ ## Tokens Diff
1288
+
1289
+ _Tokens added (3):_
1290
+
1291
+ - `component-size-difference-down`
1292
+ - `component-size-minimum-perspective-down`
1293
+ - `component-size-width-ratio-down`
1294
+
1295
+ _Token values updated (15):_
1296
+
1297
+ - `component-top-to-workflow-icon-100`
1298
+ - `component-top-to-workflow-icon-200`
1299
+ - `component-top-to-workflow-icon-300`
1300
+ - `component-top-to-workflow-icon-50`
1301
+ - `component-top-to-workflow-icon-75`
1302
+ - `text-to-visual-100`
1303
+ - `text-to-visual-200`
1304
+ - `text-to-visual-300`
1305
+ - `text-to-visual-50`
1306
+ - `text-to-visual-75`
1307
+ - `workflow-icon-size-100`
1308
+ - `workflow-icon-size-200`
1309
+ - `workflow-icon-size-300`
1310
+ - `workflow-icon-size-50`
1311
+ - `workflow-icon-size-75`
1312
+
1313
+ ## 13.0.0-beta.8
1314
+
1315
+ ### Minor Changes
1316
+
1317
+ - 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).
1318
+
1319
+ ## Design Motivation
1320
+
1321
+ 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.
1322
+
1323
+ ## Token Diff
1324
+
1325
+ _Tokens added (2):_
1326
+
1327
+ - `background-elevated-color`
1328
+ - `background-pasteboard-color`
1329
+
1330
+ _Token values updated (1):_
1331
+
1332
+ - `background-base-color`
1333
+
1334
+ ## 13.0.0-beta.7
1335
+
1336
+ ### Minor Changes
1337
+
1338
+ - 4853f76: Added schema to all tokens and fixed values that didn't meet schema requirements
1339
+
1340
+ ## Token Diff
1341
+
1342
+ _Token values updated (328):_
1343
+
1344
+ - `accent-background-color-default`
1345
+ - `accent-background-color-down`
1346
+ - `accent-background-color-hover`
1347
+ - `accent-background-color-key-focus`
1348
+ - `accent-color-100`
1349
+ - `accent-color-1000`
1350
+ - `accent-color-1100`
1351
+ - `accent-color-1200`
1352
+ - `accent-color-1300`
1353
+ - `accent-color-1400`
1354
+ - `accent-color-200`
1355
+ - `accent-color-300`
1356
+ - `accent-color-400`
1357
+ - `accent-color-500`
1358
+ - `accent-color-600`
1359
+ - `accent-color-700`
1360
+ - `accent-color-800`
1361
+ - `accent-color-900`
1362
+ - `accent-content-color-default`
1363
+ - `accent-content-color-down`
1364
+ - `accent-content-color-hover`
1365
+ - `accent-content-color-key-focus`
1366
+ - `accent-content-color-selected`
1367
+ - `accent-visual-color`
1368
+ - `blue-100`
1369
+ - `blue-1000`
1370
+ - `blue-1100`
1371
+ - `blue-1200`
1372
+ - `blue-1300`
1373
+ - `blue-1400`
1374
+ - `blue-200`
1375
+ - `blue-300`
1376
+ - `blue-400`
1377
+ - `blue-500`
1378
+ - `blue-600`
1379
+ - `blue-700`
1380
+ - `blue-800`
1381
+ - `blue-900`
1382
+ - `blue-background-color-default`
1383
+ - `blue-visual-color`
1384
+ - `celery-100`
1385
+ - `celery-1000`
1386
+ - `celery-1100`
1387
+ - `celery-1200`
1388
+ - `celery-1300`
1389
+ - `celery-1400`
1390
+ - `celery-200`
1391
+ - `celery-300`
1392
+ - `celery-400`
1393
+ - `celery-500`
1394
+ - `celery-600`
1395
+ - `celery-700`
1396
+ - `celery-800`
1397
+ - `celery-900`
1398
+ - `celery-background-color-default`
1399
+ - `celery-visual-color`
1400
+ - `chartreuse-100`
1401
+ - `chartreuse-1000`
1402
+ - `chartreuse-1100`
1403
+ - `chartreuse-1200`
1404
+ - `chartreuse-1300`
1405
+ - `chartreuse-1400`
1406
+ - `chartreuse-200`
1407
+ - `chartreuse-300`
1408
+ - `chartreuse-400`
1409
+ - `chartreuse-500`
1410
+ - `chartreuse-600`
1411
+ - `chartreuse-700`
1412
+ - `chartreuse-800`
1413
+ - `chartreuse-900`
1414
+ - `chartreuse-background-color-default`
1415
+ - `chartreuse-visual-color`
1416
+ - `contextual-help-body-size`
1417
+ - `cyan-100`
1418
+ - `cyan-1000`
1419
+ - `cyan-1100`
1420
+ - `cyan-1200`
1421
+ - `cyan-1300`
1422
+ - `cyan-1400`
1423
+ - `cyan-200`
1424
+ - `cyan-300`
1425
+ - `cyan-400`
1426
+ - `cyan-500`
1427
+ - `cyan-600`
1428
+ - `cyan-700`
1429
+ - `cyan-800`
1430
+ - `cyan-900`
1431
+ - `cyan-background-color-default`
1432
+ - `cyan-visual-color`
1433
+ - `drop-zone-background-color`
1434
+ - `focus-indicator-color`
1435
+ - `fuchsia-100`
1436
+ - `fuchsia-1000`
1437
+ - `fuchsia-1100`
1438
+ - `fuchsia-1200`
1439
+ - `fuchsia-1300`
1440
+ - `fuchsia-1400`
1441
+ - `fuchsia-200`
1442
+ - `fuchsia-300`
1443
+ - `fuchsia-400`
1444
+ - `fuchsia-500`
1445
+ - `fuchsia-600`
1446
+ - `fuchsia-700`
1447
+ - `fuchsia-800`
1448
+ - `fuchsia-900`
1449
+ - `fuchsia-background-color-default`
1450
+ - `fuchsia-visual-color`
1451
+ - `green-100`
1452
+ - `green-1000`
1453
+ - `green-1100`
1454
+ - `green-1200`
1455
+ - `green-1300`
1456
+ - `green-1400`
1457
+ - `green-200`
1458
+ - `green-300`
1459
+ - `green-400`
1460
+ - `green-500`
1461
+ - `green-600`
1462
+ - `green-700`
1463
+ - `green-800`
1464
+ - `green-900`
1465
+ - `green-background-color-default`
1466
+ - `green-visual-color`
1467
+ - `icon-color-blue-primary-default`
1468
+ - `icon-color-green-primary-default`
1469
+ - `icon-color-red-primary-default`
1470
+ - `icon-color-yellow-primary-default`
1471
+ - `indigo-100`
1472
+ - `indigo-1000`
1473
+ - `indigo-1100`
1474
+ - `indigo-1200`
1475
+ - `indigo-1300`
1476
+ - `indigo-1400`
1477
+ - `indigo-200`
1478
+ - `indigo-300`
1479
+ - `indigo-400`
1480
+ - `indigo-500`
1481
+ - `indigo-600`
1482
+ - `indigo-700`
1483
+ - `indigo-800`
1484
+ - `indigo-900`
1485
+ - `indigo-background-color-default`
1486
+ - `indigo-visual-color`
1487
+ - `informative-background-color-default`
1488
+ - `informative-background-color-down`
1489
+ - `informative-background-color-hover`
1490
+ - `informative-background-color-key-focus`
1491
+ - `informative-color-100`
1492
+ - `informative-color-1000`
1493
+ - `informative-color-1100`
1494
+ - `informative-color-1200`
1495
+ - `informative-color-1300`
1496
+ - `informative-color-1400`
1497
+ - `informative-color-200`
1498
+ - `informative-color-300`
1499
+ - `informative-color-400`
1500
+ - `informative-color-500`
1501
+ - `informative-color-600`
1502
+ - `informative-color-700`
1503
+ - `informative-color-800`
1504
+ - `informative-color-900`
1505
+ - `informative-visual-color`
1506
+ - `magenta-100`
1507
+ - `magenta-1000`
1508
+ - `magenta-1100`
1509
+ - `magenta-1200`
1510
+ - `magenta-1300`
1511
+ - `magenta-1400`
1512
+ - `magenta-200`
1513
+ - `magenta-300`
1514
+ - `magenta-400`
1515
+ - `magenta-500`
1516
+ - `magenta-600`
1517
+ - `magenta-700`
1518
+ - `magenta-800`
1519
+ - `magenta-900`
1520
+ - `magenta-background-color-default`
1521
+ - `magenta-visual-color`
1522
+ - `navigational-indicator-top-to-back-icon-extra-large`
1523
+ - `navigational-indicator-top-to-back-icon-large`
1524
+ - `navigational-indicator-top-to-back-icon-medium`
1525
+ - `navigational-indicator-top-to-back-icon-small`
1526
+ - `negative-background-color-default`
1527
+ - `negative-background-color-down`
1528
+ - `negative-background-color-hover`
1529
+ - `negative-background-color-key-focus`
1530
+ - `negative-border-color-default`
1531
+ - `negative-border-color-down`
1532
+ - `negative-border-color-focus`
1533
+ - `negative-border-color-focus-hover`
1534
+ - `negative-border-color-hover`
1535
+ - `negative-border-color-key-focus`
1536
+ - `negative-color-100`
1537
+ - `negative-color-1000`
1538
+ - `negative-color-1100`
1539
+ - `negative-color-1200`
1540
+ - `negative-color-1300`
1541
+ - `negative-color-1400`
1542
+ - `negative-color-200`
1543
+ - `negative-color-300`
1544
+ - `negative-color-400`
1545
+ - `negative-color-500`
1546
+ - `negative-color-600`
1547
+ - `negative-color-700`
1548
+ - `negative-color-800`
1549
+ - `negative-color-900`
1550
+ - `negative-content-color-default`
1551
+ - `negative-content-color-down`
1552
+ - `negative-content-color-hover`
1553
+ - `negative-content-color-key-focus`
1554
+ - `negative-visual-color`
1555
+ - `notice-background-color-default`
1556
+ - `notice-color-100`
1557
+ - `notice-color-1000`
1558
+ - `notice-color-1100`
1559
+ - `notice-color-1200`
1560
+ - `notice-color-1300`
1561
+ - `notice-color-1400`
1562
+ - `notice-color-200`
1563
+ - `notice-color-300`
1564
+ - `notice-color-400`
1565
+ - `notice-color-500`
1566
+ - `notice-color-600`
1567
+ - `notice-color-700`
1568
+ - `notice-color-800`
1569
+ - `notice-color-900`
1570
+ - `notice-visual-color`
1571
+ - `orange-100`
1572
+ - `orange-1000`
1573
+ - `orange-1100`
1574
+ - `orange-1200`
1575
+ - `orange-1300`
1576
+ - `orange-1400`
1577
+ - `orange-200`
1578
+ - `orange-300`
1579
+ - `orange-400`
1580
+ - `orange-500`
1581
+ - `orange-600`
1582
+ - `orange-700`
1583
+ - `orange-800`
1584
+ - `orange-900`
1585
+ - `orange-background-color-default`
1586
+ - `orange-visual-color`
1587
+ - `positive-background-color-default`
1588
+ - `positive-background-color-down`
1589
+ - `positive-background-color-hover`
1590
+ - `positive-background-color-key-focus`
1591
+ - `positive-color-100`
1592
+ - `positive-color-1000`
1593
+ - `positive-color-1100`
1594
+ - `positive-color-1200`
1595
+ - `positive-color-1300`
1596
+ - `positive-color-1400`
1597
+ - `positive-color-200`
1598
+ - `positive-color-300`
1599
+ - `positive-color-400`
1600
+ - `positive-color-500`
1601
+ - `positive-color-600`
1602
+ - `positive-color-700`
1603
+ - `positive-color-800`
1604
+ - `positive-color-900`
1605
+ - `positive-visual-color`
1606
+ - `purple-100`
1607
+ - `purple-1000`
1608
+ - `purple-1100`
1609
+ - `purple-1200`
1610
+ - `purple-1300`
1611
+ - `purple-1400`
1612
+ - `purple-200`
1613
+ - `purple-300`
1614
+ - `purple-400`
1615
+ - `purple-500`
1616
+ - `purple-600`
1617
+ - `purple-700`
1618
+ - `purple-800`
1619
+ - `purple-900`
1620
+ - `purple-background-color-default`
1621
+ - `purple-visual-color`
1622
+ - `red-100`
1623
+ - `red-1000`
1624
+ - `red-1100`
1625
+ - `red-1200`
1626
+ - `red-1300`
1627
+ - `red-1400`
1628
+ - `red-200`
1629
+ - `red-300`
1630
+ - `red-400`
1631
+ - `red-500`
1632
+ - `red-600`
1633
+ - `red-700`
1634
+ - `red-800`
1635
+ - `red-900`
1636
+ - `red-background-color-default`
1637
+ - `red-visual-color`
1638
+ - `seafoam-100`
1639
+ - `seafoam-1000`
1640
+ - `seafoam-1100`
1641
+ - `seafoam-1200`
1642
+ - `seafoam-1300`
1643
+ - `seafoam-1400`
1644
+ - `seafoam-200`
1645
+ - `seafoam-300`
1646
+ - `seafoam-400`
1647
+ - `seafoam-500`
1648
+ - `seafoam-600`
1649
+ - `seafoam-700`
1650
+ - `seafoam-800`
1651
+ - `seafoam-900`
1652
+ - `seafoam-background-color-default`
1653
+ - `seafoam-visual-color`
1654
+ - `side-navigation-item-to-header`
1655
+ - `table-selected-row-background-color`
1656
+ - `yellow-100`
1657
+ - `yellow-1000`
1658
+ - `yellow-1100`
1659
+ - `yellow-1200`
1660
+ - `yellow-1300`
1661
+ - `yellow-1400`
1662
+ - `yellow-200`
1663
+ - `yellow-300`
1664
+ - `yellow-400`
1665
+ - `yellow-500`
1666
+ - `yellow-600`
1667
+ - `yellow-700`
1668
+ - `yellow-800`
1669
+ - `yellow-900`
1670
+ - `yellow-background-color-default`
1671
+ - `yellow-visual-color`
1672
+
1673
+ ## 13.0.0-beta.6
1674
+
1675
+ ### Minor Changes
1676
+
1677
+ - 6d1c661: Added new Spectrum 2 color tokens for both light and dark themes:
1678
+
1679
+ Cinnamon 100 to 1600
1680
+
1681
+ ## Design Motivation
1682
+
1683
+ 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.
1684
+
1685
+ ## Token Diff
1686
+
1687
+ _Tokens added (17):_
1688
+
1689
+ - `cinnamon-100`
1690
+ - `cinnamon-200`
1691
+ - `cinnamon-300`
1692
+ - `cinnamon-400`
1693
+ - `cinnamon-500`
1694
+ - `cinnamon-600`
1695
+ - `cinnamon-700`
1696
+ - `cinnamon-800`
1697
+ - `cinnamon-900`
1698
+ - `cinnamon-1000`
1699
+ - `cinnamon-1100`
1700
+ - `cinnamon-1200`
1701
+ - `cinnamon-1300`
1702
+ - `cinnamon-1400`
1703
+ - `cinnamon-1500`
1704
+ - `cinnamon-1600`
1705
+
1706
+ - 91d7e95: Fixed bug in the light theme value for notice-background-color-default, from notice-color-800 to notice-color-600
1707
+
1708
+ ## Design Motivation
1709
+
1710
+ 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
1711
+
1712
+ ## Token Diff
1713
+
1714
+ _Token values updated (1):_
1715
+
1716
+ - `notice-background-color-default`: `light`: `notice-color-800` -> `notice-color-600`
1717
+
1718
+ ## 13.0.0-beta.5
1719
+
1720
+ ### Major Changes
1721
+
1722
+ - 0af2674: feat: new color values for spectrum2
1723
+
1724
+ ## Design Motivation
1725
+
1726
+ This update addresses several improvements:
1727
+
1728
+ fuchsia, seafoam: all values shifted to make room for new colors, pink and turquoise
1729
+ all other colors: certain values were updated to address accessibility contrast requirements against Spectrum 2 background layer colors
1730
+
1731
+ ## Token Diff
1732
+
1733
+ <details><summary><strong>Token values updated (246):</strong></summary>
1734
+
1735
+ - `accent-background-color-default`
1736
+ - `accent-background-color-down`
1737
+ - `accent-background-color-hover`
1738
+ - `accent-background-color-key-focus`
1739
+ - `accent-color-1000`
1740
+ - `accent-color-200`
1741
+ - `accent-color-300`
1742
+ - `accent-color-400`
1743
+ - `accent-color-500`
1744
+ - `accent-color-600`
1745
+ - `accent-color-700`
1746
+ - `accent-color-800`
1747
+ - `accent-color-900`
1748
+ - `accent-content-color-default`
1749
+ - `accent-content-color-down`
1750
+ - `accent-content-color-hover`
1751
+ - `accent-content-color-key-focus`
1752
+ - `accent-content-color-selected`
1753
+ - `accent-visual-color`
1754
+ - `blue-1000`
1755
+ - `blue-200`
1756
+ - `blue-300`
1757
+ - `blue-400`
1758
+ - `blue-500`
1759
+ - `blue-600`
1760
+ - `blue-700`
1761
+ - `blue-800`
1762
+ - `blue-900`
1763
+ - `blue-background-color-default`
1764
+ - `blue-visual-color`
1765
+ - `celery-1000`
1766
+ - `celery-200`
1767
+ - `celery-300`
1768
+ - `celery-400`
1769
+ - `celery-500`
1770
+ - `celery-600`
1771
+ - `celery-700`
1772
+ - `celery-800`
1773
+ - `celery-900`
1774
+ - `celery-background-color-default`
1775
+ - `celery-visual-color`
1776
+ - `chartreuse-1000`
1777
+ - `chartreuse-200`
1778
+ - `chartreuse-300`
1779
+ - `chartreuse-400`
1780
+ - `chartreuse-500`
1781
+ - `chartreuse-600`
1782
+ - `chartreuse-700`
1783
+ - `chartreuse-800`
1784
+ - `chartreuse-900`
1785
+ - `chartreuse-background-color-default`
1786
+ - `chartreuse-visual-color`
1787
+ - `cyan-1000`
1788
+ - `cyan-300`
1789
+ - `cyan-400`
1790
+ - `cyan-500`
1791
+ - `cyan-600`
1792
+ - `cyan-700`
1793
+ - `cyan-800`
1794
+ - `cyan-900`
1795
+ - `cyan-background-color-default`
1796
+ - `cyan-visual-color`
1797
+ - `drop-zone-background-color`
1798
+ - `focus-indicator-color`
1799
+ - `fuchsia-100`
1800
+ - `fuchsia-1000`
1801
+ - `fuchsia-1100`
1802
+ - `fuchsia-1200`
1803
+ - `fuchsia-1300`
1804
+ - `fuchsia-1400`
1805
+ - `fuchsia-1500`
1806
+ - `fuchsia-1600`
1807
+ - `fuchsia-200`
1808
+ - `fuchsia-300`
1809
+ - `fuchsia-400`
1810
+ - `fuchsia-500`
1811
+ - `fuchsia-600`
1812
+ - `fuchsia-700`
1813
+ - `fuchsia-800`
1814
+ - `fuchsia-900`
1815
+ - `fuchsia-background-color-default`
1816
+ - `fuchsia-visual-color`
1817
+ - `green-100`
1818
+ - `green-1000`
1819
+ - `green-200`
1820
+ - `green-300`
1821
+ - `green-400`
1822
+ - `green-500`
1823
+ - `green-600`
1824
+ - `green-700`
1825
+ - `green-800`
1826
+ - `green-900`
1827
+ - `green-background-color-default`
1828
+ - `green-visual-color`
1829
+ - `icon-color-blue-primary-default`
1830
+ - `icon-color-green-primary-default`
1831
+ - `icon-color-red-primary-default`
1832
+ - `icon-color-yellow-primary-default`
1833
+ - `indigo-1000`
1834
+ - `indigo-300`
1835
+ - `indigo-400`
1836
+ - `indigo-500`
1837
+ - `indigo-600`
1838
+ - `indigo-700`
1839
+ - `indigo-800`
1840
+ - `indigo-900`
1841
+ - `indigo-background-color-default`
1842
+ - `indigo-visual-color`
1843
+ - `informative-background-color-default`
1844
+ - `informative-background-color-down`
1845
+ - `informative-background-color-hover`
1846
+ - `informative-background-color-key-focus`
1847
+ - `informative-color-1000`
1848
+ - `informative-color-200`
1849
+ - `informative-color-300`
1850
+ - `informative-color-400`
1851
+ - `informative-color-500`
1852
+ - `informative-color-600`
1853
+ - `informative-color-700`
1854
+ - `informative-color-800`
1855
+ - `informative-color-900`
1856
+ - `informative-visual-color`
1857
+ - `magenta-100`
1858
+ - `magenta-1000`
1859
+ - `magenta-1100`
1860
+ - `magenta-1200`
1861
+ - `magenta-1300`
1862
+ - `magenta-1400`
1863
+ - `magenta-200`
1864
+ - `magenta-300`
1865
+ - `magenta-400`
1866
+ - `magenta-500`
1867
+ - `magenta-600`
1868
+ - `magenta-700`
1869
+ - `magenta-800`
1870
+ - `magenta-900`
1871
+ - `magenta-background-color-default`
1872
+ - `magenta-visual-color`
1873
+ - `negative-background-color-default`
1874
+ - `negative-background-color-down`
1875
+ - `negative-background-color-hover`
1876
+ - `negative-background-color-key-focus`
1877
+ - `negative-border-color-default`
1878
+ - `negative-border-color-focus`
1879
+ - `negative-border-color-hover`
1880
+ - `negative-border-color-key-focus`
1881
+ - `negative-color-1000`
1882
+ - `negative-color-200`
1883
+ - `negative-color-300`
1884
+ - `negative-color-400`
1885
+ - `negative-color-500`
1886
+ - `negative-color-600`
1887
+ - `negative-color-700`
1888
+ - `negative-color-800`
1889
+ - `negative-color-900`
1890
+ - `negative-content-color-default`
1891
+ - `negative-content-color-down`
1892
+ - `negative-content-color-hover`
1893
+ - `negative-content-color-key-focus`
1894
+ - `negative-visual-color`
1895
+ - `notice-background-color-default`
1896
+ - `notice-color-1000`
1897
+ - `notice-color-200`
1898
+ - `notice-color-400`
1899
+ - `notice-color-500`
1900
+ - `notice-color-600`
1901
+ - `notice-color-700`
1902
+ - `notice-color-800`
1903
+ - `notice-color-900`
1904
+ - `notice-visual-color`
1905
+ - `orange-1000`
1906
+ - `orange-200`
1907
+ - `orange-400`
1908
+ - `orange-500`
1909
+ - `orange-600`
1910
+ - `orange-700`
1911
+ - `orange-800`
1912
+ - `orange-900`
1913
+ - `orange-background-color-default`
1914
+ - `orange-visual-color`
1915
+ - `positive-background-color-default`
1916
+ - `positive-background-color-down`
1917
+ - `positive-background-color-hover`
1918
+ - `positive-background-color-key-focus`
1919
+ - `positive-color-100`
1920
+ - `positive-color-1000`
1921
+ - `positive-color-200`
1922
+ - `positive-color-300`
1923
+ - `positive-color-400`
1924
+ - `positive-color-500`
1925
+ - `positive-color-600`
1926
+ - `positive-color-700`
1927
+ - `positive-color-800`
1928
+ - `positive-color-900`
1929
+ - `positive-visual-color`
1930
+ - `purple-1000`
1931
+ - `purple-200`
1932
+ - `purple-300`
1933
+ - `purple-400`
1934
+ - `purple-500`
1935
+ - `purple-600`
1936
+ - `purple-700`
1937
+ - `purple-800`
1938
+ - `purple-900`
1939
+ - `purple-background-color-default`
1940
+ - `purple-visual-color`
1941
+ - `red-1000`
1942
+ - `red-200`
1943
+ - `red-300`
1944
+ - `red-400`
1945
+ - `red-500`
1946
+ - `red-600`
1947
+ - `red-700`
1948
+ - `red-800`
1949
+ - `red-900`
1950
+ - `red-background-color-default`
1951
+ - `red-visual-color`
1952
+ - `seafoam-100`
1953
+ - `seafoam-1000`
1954
+ - `seafoam-1100`
1955
+ - `seafoam-1200`
1956
+ - `seafoam-1300`
1957
+ - `seafoam-1400`
1958
+ - `seafoam-1500`
1959
+ - `seafoam-1600`
1960
+ - `seafoam-200`
1961
+ - `seafoam-300`
1962
+ - `seafoam-400`
1963
+ - `seafoam-500`
1964
+ - `seafoam-600`
1965
+ - `seafoam-700`
1966
+ - `seafoam-800`
1967
+ - `seafoam-900`
1968
+ - `seafoam-background-color-default`
1969
+ - `seafoam-visual-color`
1970
+ - `table-selected-row-background-color`
1971
+ - `yellow-1000`
1972
+ - `yellow-300`
1973
+ - `yellow-400`
1974
+ - `yellow-500`
1975
+ - `yellow-600`
1976
+ - `yellow-700`
1977
+ - `yellow-800`
1978
+ - `yellow-900`
1979
+ - `yellow-background-color-default`
1980
+ - `yellow-visual-color`
1981
+
1982
+ </details>
1983
+
1984
+ ### Minor Changes
1985
+
1986
+ - 7b5ec24: feat: add new color tokens
1987
+
1988
+ ## Design Motivation
1989
+
1990
+ 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.
1991
+
1992
+ ## Token Diff
1993
+
1994
+ <details><summary><strong>Tokens added (64):</strong></summary>
1995
+
1996
+ - `brown-100`
1997
+ - `brown-1000`
1998
+ - `brown-1100`
1999
+ - `brown-1200`
2000
+ - `brown-1300`
2001
+ - `brown-1400`
2002
+ - `brown-1500`
2003
+ - `brown-1600`
2004
+ - `brown-200`
2005
+ - `brown-300`
2006
+ - `brown-400`
2007
+ - `brown-500`
2008
+ - `brown-600`
2009
+ - `brown-700`
2010
+ - `brown-800`
2011
+ - `brown-900`
2012
+ - `pink-100`
2013
+ - `pink-1000`
2014
+ - `pink-1100`
2015
+ - `pink-1200`
2016
+ - `pink-1300`
2017
+ - `pink-1400`
2018
+ - `pink-1500`
2019
+ - `pink-1600`
2020
+ - `pink-200`
2021
+ - `pink-300`
2022
+ - `pink-400`
2023
+ - `pink-500`
2024
+ - `pink-600`
2025
+ - `pink-700`
2026
+ - `pink-800`
2027
+ - `pink-900`
2028
+ - `silver-100`
2029
+ - `silver-1000`
2030
+ - `silver-1100`
2031
+ - `silver-1200`
2032
+ - `silver-1300`
2033
+ - `silver-1400`
2034
+ - `silver-1500`
2035
+ - `silver-1600`
2036
+ - `silver-200`
2037
+ - `silver-300`
2038
+ - `silver-400`
2039
+ - `silver-500`
2040
+ - `silver-600`
2041
+ - `silver-700`
2042
+ - `silver-800`
2043
+ - `silver-900`
2044
+ - `turquoise-100`
2045
+ - `turquoise-1000`
2046
+ - `turquoise-1100`
2047
+ - `turquoise-1200`
2048
+ - `turquoise-1300`
2049
+ - `turquoise-1400`
2050
+ - `turquoise-1500`
2051
+ - `turquoise-1600`
2052
+ - `turquoise-200`
2053
+ - `turquoise-300`
2054
+ - `turquoise-400`
2055
+ - `turquoise-500`
2056
+ - `turquoise-600`
2057
+ - `turquoise-700`
2058
+ - `turquoise-800`
2059
+ - `turquoise-900`
2060
+
2061
+ </details>
2062
+
3
2063
  ## 13.0.0-beta.4
4
2064
 
5
2065
  ### Major Changes