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

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