@adobe/spectrum-tokens 13.0.0-beta.6 → 13.0.0-beta.8
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.
- package/CHANGELOG.md +360 -0
- package/dist/json/drover.json +58 -11
- package/dist/json/variables.json +1712 -542
- package/moon.yml +1 -1
- package/package.json +1 -1
- package/schemas/components/action-bar.json +1 -1
- package/schemas/components/action-button.json +1 -1
- package/schemas/components/action-group.json +1 -1
- package/schemas/components/alert-banner.json +1 -1
- package/schemas/components/alert-dialog.json +1 -1
- package/schemas/components/avatar.json +1 -1
- package/schemas/components/badge.json +1 -1
- package/schemas/components/body.json +1 -1
- package/schemas/components/bottom-navigation-android.json +1 -1
- package/schemas/components/breadcrumbs.json +1 -1
- package/schemas/components/button-group.json +1 -1
- package/schemas/components/button.json +1 -1
- package/schemas/components/checkbox-group.json +1 -1
- package/schemas/components/checkbox.json +1 -1
- package/schemas/components/close-button.json +1 -1
- package/schemas/components/code.json +1 -1
- package/schemas/components/color-area.json +1 -1
- package/schemas/components/color-loupe.json +1 -1
- package/schemas/components/color-slider.json +1 -1
- package/schemas/components/color-wheel.json +1 -1
- package/schemas/components/combo-box.json +1 -1
- package/schemas/components/contextual-help.json +1 -1
- package/schemas/components/detail.json +1 -1
- package/schemas/components/divider.json +1 -1
- package/schemas/components/field-label.json +1 -1
- package/schemas/components/heading.json +1 -1
- package/schemas/components/help-text.json +1 -1
- package/schemas/components/in-line-alert.json +1 -1
- package/schemas/components/link.json +1 -1
- package/schemas/components/menu.json +1 -1
- package/schemas/components/meter.json +1 -1
- package/schemas/components/picker.json +1 -1
- package/schemas/components/popover.json +1 -1
- package/schemas/components/progress-bar.json +1 -1
- package/schemas/components/progress-circle.json +1 -1
- package/schemas/components/radio-group.json +1 -1
- package/schemas/components/rating.json +1 -1
- package/schemas/components/scroll-zoom-bar.json +1 -1
- package/schemas/components/side-navigation.json +1 -1
- package/schemas/components/slider.json +1 -1
- package/schemas/components/status-light.json +1 -1
- package/schemas/components/swatch-group.json +1 -1
- package/schemas/components/swatch.json +1 -1
- package/schemas/components/switch.json +1 -1
- package/schemas/components/tab-bar-ios.json +1 -1
- package/schemas/components/tabs.json +1 -1
- package/schemas/components/tag.json +1 -1
- package/schemas/components/text-area.json +1 -1
- package/schemas/components/text-field.json +1 -1
- package/schemas/components/toast.json +1 -1
- package/schemas/components/tooltip.json +1 -1
- package/schemas/components/tray.json +1 -1
- package/schemas/components/tree-view.json +1 -1
- package/schemas/token-types/alias.json +25 -0
- package/schemas/token-types/color-set.json +69 -0
- package/schemas/token-types/color.json +25 -0
- package/schemas/token-types/dimension.json +25 -0
- package/schemas/token-types/font-family.json +25 -0
- package/schemas/token-types/font-size.json +25 -0
- package/schemas/token-types/font-style.json +25 -0
- package/schemas/token-types/font-weight.json +25 -0
- package/schemas/token-types/multiplier.json +25 -0
- package/schemas/token-types/opacity.json +25 -0
- package/schemas/token-types/scale-set.json +54 -0
- package/schemas/token-types/set.json +22 -0
- package/schemas/token-types/text-transform.json +25 -0
- package/schemas/token-types/token.json +27 -0
- package/src/color-aliases.json +334 -1
- package/src/color-component.json +49 -9
- package/src/color-palette.json +1800 -184
- package/src/icons.json +18 -0
- package/src/layout-component.json +1866 -26
- package/src/layout.json +489 -8
- package/src/semantic-color-palette.json +80 -0
- package/src/typography.json +285 -0
- package/test/checkId.test.js +55 -33
- package/test/componentSchemaValidator.test.js +74 -0
- package/test/schemaValidators/alias.test.js +41 -0
- package/test/tokenSchemaValidator.test.js +97 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,365 @@
|
|
|
1
1
|
# @adobe/spectrum-tokens
|
|
2
2
|
|
|
3
|
+
## 13.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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).
|
|
8
|
+
|
|
9
|
+
## Design Motivation
|
|
10
|
+
|
|
11
|
+
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.
|
|
12
|
+
|
|
13
|
+
## Token Diff
|
|
14
|
+
|
|
15
|
+
_Tokens added (2):_
|
|
16
|
+
|
|
17
|
+
- `background-elevated-color`
|
|
18
|
+
- `background-pasteboard-color`
|
|
19
|
+
|
|
20
|
+
_Token values updated (1):_
|
|
21
|
+
|
|
22
|
+
- `background-base-color`
|
|
23
|
+
|
|
24
|
+
## 13.0.0-beta.7
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- 4853f76: Added schema to all tokens and fixed values that didn't meet schema requirements
|
|
29
|
+
|
|
30
|
+
## Token Diff
|
|
31
|
+
|
|
32
|
+
_Token values updated (328):_
|
|
33
|
+
|
|
34
|
+
- `accent-background-color-default`
|
|
35
|
+
- `accent-background-color-down`
|
|
36
|
+
- `accent-background-color-hover`
|
|
37
|
+
- `accent-background-color-key-focus`
|
|
38
|
+
- `accent-color-100`
|
|
39
|
+
- `accent-color-1000`
|
|
40
|
+
- `accent-color-1100`
|
|
41
|
+
- `accent-color-1200`
|
|
42
|
+
- `accent-color-1300`
|
|
43
|
+
- `accent-color-1400`
|
|
44
|
+
- `accent-color-200`
|
|
45
|
+
- `accent-color-300`
|
|
46
|
+
- `accent-color-400`
|
|
47
|
+
- `accent-color-500`
|
|
48
|
+
- `accent-color-600`
|
|
49
|
+
- `accent-color-700`
|
|
50
|
+
- `accent-color-800`
|
|
51
|
+
- `accent-color-900`
|
|
52
|
+
- `accent-content-color-default`
|
|
53
|
+
- `accent-content-color-down`
|
|
54
|
+
- `accent-content-color-hover`
|
|
55
|
+
- `accent-content-color-key-focus`
|
|
56
|
+
- `accent-content-color-selected`
|
|
57
|
+
- `accent-visual-color`
|
|
58
|
+
- `blue-100`
|
|
59
|
+
- `blue-1000`
|
|
60
|
+
- `blue-1100`
|
|
61
|
+
- `blue-1200`
|
|
62
|
+
- `blue-1300`
|
|
63
|
+
- `blue-1400`
|
|
64
|
+
- `blue-200`
|
|
65
|
+
- `blue-300`
|
|
66
|
+
- `blue-400`
|
|
67
|
+
- `blue-500`
|
|
68
|
+
- `blue-600`
|
|
69
|
+
- `blue-700`
|
|
70
|
+
- `blue-800`
|
|
71
|
+
- `blue-900`
|
|
72
|
+
- `blue-background-color-default`
|
|
73
|
+
- `blue-visual-color`
|
|
74
|
+
- `celery-100`
|
|
75
|
+
- `celery-1000`
|
|
76
|
+
- `celery-1100`
|
|
77
|
+
- `celery-1200`
|
|
78
|
+
- `celery-1300`
|
|
79
|
+
- `celery-1400`
|
|
80
|
+
- `celery-200`
|
|
81
|
+
- `celery-300`
|
|
82
|
+
- `celery-400`
|
|
83
|
+
- `celery-500`
|
|
84
|
+
- `celery-600`
|
|
85
|
+
- `celery-700`
|
|
86
|
+
- `celery-800`
|
|
87
|
+
- `celery-900`
|
|
88
|
+
- `celery-background-color-default`
|
|
89
|
+
- `celery-visual-color`
|
|
90
|
+
- `chartreuse-100`
|
|
91
|
+
- `chartreuse-1000`
|
|
92
|
+
- `chartreuse-1100`
|
|
93
|
+
- `chartreuse-1200`
|
|
94
|
+
- `chartreuse-1300`
|
|
95
|
+
- `chartreuse-1400`
|
|
96
|
+
- `chartreuse-200`
|
|
97
|
+
- `chartreuse-300`
|
|
98
|
+
- `chartreuse-400`
|
|
99
|
+
- `chartreuse-500`
|
|
100
|
+
- `chartreuse-600`
|
|
101
|
+
- `chartreuse-700`
|
|
102
|
+
- `chartreuse-800`
|
|
103
|
+
- `chartreuse-900`
|
|
104
|
+
- `chartreuse-background-color-default`
|
|
105
|
+
- `chartreuse-visual-color`
|
|
106
|
+
- `contextual-help-body-size`
|
|
107
|
+
- `cyan-100`
|
|
108
|
+
- `cyan-1000`
|
|
109
|
+
- `cyan-1100`
|
|
110
|
+
- `cyan-1200`
|
|
111
|
+
- `cyan-1300`
|
|
112
|
+
- `cyan-1400`
|
|
113
|
+
- `cyan-200`
|
|
114
|
+
- `cyan-300`
|
|
115
|
+
- `cyan-400`
|
|
116
|
+
- `cyan-500`
|
|
117
|
+
- `cyan-600`
|
|
118
|
+
- `cyan-700`
|
|
119
|
+
- `cyan-800`
|
|
120
|
+
- `cyan-900`
|
|
121
|
+
- `cyan-background-color-default`
|
|
122
|
+
- `cyan-visual-color`
|
|
123
|
+
- `drop-zone-background-color`
|
|
124
|
+
- `focus-indicator-color`
|
|
125
|
+
- `fuchsia-100`
|
|
126
|
+
- `fuchsia-1000`
|
|
127
|
+
- `fuchsia-1100`
|
|
128
|
+
- `fuchsia-1200`
|
|
129
|
+
- `fuchsia-1300`
|
|
130
|
+
- `fuchsia-1400`
|
|
131
|
+
- `fuchsia-200`
|
|
132
|
+
- `fuchsia-300`
|
|
133
|
+
- `fuchsia-400`
|
|
134
|
+
- `fuchsia-500`
|
|
135
|
+
- `fuchsia-600`
|
|
136
|
+
- `fuchsia-700`
|
|
137
|
+
- `fuchsia-800`
|
|
138
|
+
- `fuchsia-900`
|
|
139
|
+
- `fuchsia-background-color-default`
|
|
140
|
+
- `fuchsia-visual-color`
|
|
141
|
+
- `green-100`
|
|
142
|
+
- `green-1000`
|
|
143
|
+
- `green-1100`
|
|
144
|
+
- `green-1200`
|
|
145
|
+
- `green-1300`
|
|
146
|
+
- `green-1400`
|
|
147
|
+
- `green-200`
|
|
148
|
+
- `green-300`
|
|
149
|
+
- `green-400`
|
|
150
|
+
- `green-500`
|
|
151
|
+
- `green-600`
|
|
152
|
+
- `green-700`
|
|
153
|
+
- `green-800`
|
|
154
|
+
- `green-900`
|
|
155
|
+
- `green-background-color-default`
|
|
156
|
+
- `green-visual-color`
|
|
157
|
+
- `icon-color-blue-primary-default`
|
|
158
|
+
- `icon-color-green-primary-default`
|
|
159
|
+
- `icon-color-red-primary-default`
|
|
160
|
+
- `icon-color-yellow-primary-default`
|
|
161
|
+
- `indigo-100`
|
|
162
|
+
- `indigo-1000`
|
|
163
|
+
- `indigo-1100`
|
|
164
|
+
- `indigo-1200`
|
|
165
|
+
- `indigo-1300`
|
|
166
|
+
- `indigo-1400`
|
|
167
|
+
- `indigo-200`
|
|
168
|
+
- `indigo-300`
|
|
169
|
+
- `indigo-400`
|
|
170
|
+
- `indigo-500`
|
|
171
|
+
- `indigo-600`
|
|
172
|
+
- `indigo-700`
|
|
173
|
+
- `indigo-800`
|
|
174
|
+
- `indigo-900`
|
|
175
|
+
- `indigo-background-color-default`
|
|
176
|
+
- `indigo-visual-color`
|
|
177
|
+
- `informative-background-color-default`
|
|
178
|
+
- `informative-background-color-down`
|
|
179
|
+
- `informative-background-color-hover`
|
|
180
|
+
- `informative-background-color-key-focus`
|
|
181
|
+
- `informative-color-100`
|
|
182
|
+
- `informative-color-1000`
|
|
183
|
+
- `informative-color-1100`
|
|
184
|
+
- `informative-color-1200`
|
|
185
|
+
- `informative-color-1300`
|
|
186
|
+
- `informative-color-1400`
|
|
187
|
+
- `informative-color-200`
|
|
188
|
+
- `informative-color-300`
|
|
189
|
+
- `informative-color-400`
|
|
190
|
+
- `informative-color-500`
|
|
191
|
+
- `informative-color-600`
|
|
192
|
+
- `informative-color-700`
|
|
193
|
+
- `informative-color-800`
|
|
194
|
+
- `informative-color-900`
|
|
195
|
+
- `informative-visual-color`
|
|
196
|
+
- `magenta-100`
|
|
197
|
+
- `magenta-1000`
|
|
198
|
+
- `magenta-1100`
|
|
199
|
+
- `magenta-1200`
|
|
200
|
+
- `magenta-1300`
|
|
201
|
+
- `magenta-1400`
|
|
202
|
+
- `magenta-200`
|
|
203
|
+
- `magenta-300`
|
|
204
|
+
- `magenta-400`
|
|
205
|
+
- `magenta-500`
|
|
206
|
+
- `magenta-600`
|
|
207
|
+
- `magenta-700`
|
|
208
|
+
- `magenta-800`
|
|
209
|
+
- `magenta-900`
|
|
210
|
+
- `magenta-background-color-default`
|
|
211
|
+
- `magenta-visual-color`
|
|
212
|
+
- `navigational-indicator-top-to-back-icon-extra-large`
|
|
213
|
+
- `navigational-indicator-top-to-back-icon-large`
|
|
214
|
+
- `navigational-indicator-top-to-back-icon-medium`
|
|
215
|
+
- `navigational-indicator-top-to-back-icon-small`
|
|
216
|
+
- `negative-background-color-default`
|
|
217
|
+
- `negative-background-color-down`
|
|
218
|
+
- `negative-background-color-hover`
|
|
219
|
+
- `negative-background-color-key-focus`
|
|
220
|
+
- `negative-border-color-default`
|
|
221
|
+
- `negative-border-color-down`
|
|
222
|
+
- `negative-border-color-focus`
|
|
223
|
+
- `negative-border-color-focus-hover`
|
|
224
|
+
- `negative-border-color-hover`
|
|
225
|
+
- `negative-border-color-key-focus`
|
|
226
|
+
- `negative-color-100`
|
|
227
|
+
- `negative-color-1000`
|
|
228
|
+
- `negative-color-1100`
|
|
229
|
+
- `negative-color-1200`
|
|
230
|
+
- `negative-color-1300`
|
|
231
|
+
- `negative-color-1400`
|
|
232
|
+
- `negative-color-200`
|
|
233
|
+
- `negative-color-300`
|
|
234
|
+
- `negative-color-400`
|
|
235
|
+
- `negative-color-500`
|
|
236
|
+
- `negative-color-600`
|
|
237
|
+
- `negative-color-700`
|
|
238
|
+
- `negative-color-800`
|
|
239
|
+
- `negative-color-900`
|
|
240
|
+
- `negative-content-color-default`
|
|
241
|
+
- `negative-content-color-down`
|
|
242
|
+
- `negative-content-color-hover`
|
|
243
|
+
- `negative-content-color-key-focus`
|
|
244
|
+
- `negative-visual-color`
|
|
245
|
+
- `notice-background-color-default`
|
|
246
|
+
- `notice-color-100`
|
|
247
|
+
- `notice-color-1000`
|
|
248
|
+
- `notice-color-1100`
|
|
249
|
+
- `notice-color-1200`
|
|
250
|
+
- `notice-color-1300`
|
|
251
|
+
- `notice-color-1400`
|
|
252
|
+
- `notice-color-200`
|
|
253
|
+
- `notice-color-300`
|
|
254
|
+
- `notice-color-400`
|
|
255
|
+
- `notice-color-500`
|
|
256
|
+
- `notice-color-600`
|
|
257
|
+
- `notice-color-700`
|
|
258
|
+
- `notice-color-800`
|
|
259
|
+
- `notice-color-900`
|
|
260
|
+
- `notice-visual-color`
|
|
261
|
+
- `orange-100`
|
|
262
|
+
- `orange-1000`
|
|
263
|
+
- `orange-1100`
|
|
264
|
+
- `orange-1200`
|
|
265
|
+
- `orange-1300`
|
|
266
|
+
- `orange-1400`
|
|
267
|
+
- `orange-200`
|
|
268
|
+
- `orange-300`
|
|
269
|
+
- `orange-400`
|
|
270
|
+
- `orange-500`
|
|
271
|
+
- `orange-600`
|
|
272
|
+
- `orange-700`
|
|
273
|
+
- `orange-800`
|
|
274
|
+
- `orange-900`
|
|
275
|
+
- `orange-background-color-default`
|
|
276
|
+
- `orange-visual-color`
|
|
277
|
+
- `positive-background-color-default`
|
|
278
|
+
- `positive-background-color-down`
|
|
279
|
+
- `positive-background-color-hover`
|
|
280
|
+
- `positive-background-color-key-focus`
|
|
281
|
+
- `positive-color-100`
|
|
282
|
+
- `positive-color-1000`
|
|
283
|
+
- `positive-color-1100`
|
|
284
|
+
- `positive-color-1200`
|
|
285
|
+
- `positive-color-1300`
|
|
286
|
+
- `positive-color-1400`
|
|
287
|
+
- `positive-color-200`
|
|
288
|
+
- `positive-color-300`
|
|
289
|
+
- `positive-color-400`
|
|
290
|
+
- `positive-color-500`
|
|
291
|
+
- `positive-color-600`
|
|
292
|
+
- `positive-color-700`
|
|
293
|
+
- `positive-color-800`
|
|
294
|
+
- `positive-color-900`
|
|
295
|
+
- `positive-visual-color`
|
|
296
|
+
- `purple-100`
|
|
297
|
+
- `purple-1000`
|
|
298
|
+
- `purple-1100`
|
|
299
|
+
- `purple-1200`
|
|
300
|
+
- `purple-1300`
|
|
301
|
+
- `purple-1400`
|
|
302
|
+
- `purple-200`
|
|
303
|
+
- `purple-300`
|
|
304
|
+
- `purple-400`
|
|
305
|
+
- `purple-500`
|
|
306
|
+
- `purple-600`
|
|
307
|
+
- `purple-700`
|
|
308
|
+
- `purple-800`
|
|
309
|
+
- `purple-900`
|
|
310
|
+
- `purple-background-color-default`
|
|
311
|
+
- `purple-visual-color`
|
|
312
|
+
- `red-100`
|
|
313
|
+
- `red-1000`
|
|
314
|
+
- `red-1100`
|
|
315
|
+
- `red-1200`
|
|
316
|
+
- `red-1300`
|
|
317
|
+
- `red-1400`
|
|
318
|
+
- `red-200`
|
|
319
|
+
- `red-300`
|
|
320
|
+
- `red-400`
|
|
321
|
+
- `red-500`
|
|
322
|
+
- `red-600`
|
|
323
|
+
- `red-700`
|
|
324
|
+
- `red-800`
|
|
325
|
+
- `red-900`
|
|
326
|
+
- `red-background-color-default`
|
|
327
|
+
- `red-visual-color`
|
|
328
|
+
- `seafoam-100`
|
|
329
|
+
- `seafoam-1000`
|
|
330
|
+
- `seafoam-1100`
|
|
331
|
+
- `seafoam-1200`
|
|
332
|
+
- `seafoam-1300`
|
|
333
|
+
- `seafoam-1400`
|
|
334
|
+
- `seafoam-200`
|
|
335
|
+
- `seafoam-300`
|
|
336
|
+
- `seafoam-400`
|
|
337
|
+
- `seafoam-500`
|
|
338
|
+
- `seafoam-600`
|
|
339
|
+
- `seafoam-700`
|
|
340
|
+
- `seafoam-800`
|
|
341
|
+
- `seafoam-900`
|
|
342
|
+
- `seafoam-background-color-default`
|
|
343
|
+
- `seafoam-visual-color`
|
|
344
|
+
- `side-navigation-item-to-header`
|
|
345
|
+
- `table-selected-row-background-color`
|
|
346
|
+
- `yellow-100`
|
|
347
|
+
- `yellow-1000`
|
|
348
|
+
- `yellow-1100`
|
|
349
|
+
- `yellow-1200`
|
|
350
|
+
- `yellow-1300`
|
|
351
|
+
- `yellow-1400`
|
|
352
|
+
- `yellow-200`
|
|
353
|
+
- `yellow-300`
|
|
354
|
+
- `yellow-400`
|
|
355
|
+
- `yellow-500`
|
|
356
|
+
- `yellow-600`
|
|
357
|
+
- `yellow-700`
|
|
358
|
+
- `yellow-800`
|
|
359
|
+
- `yellow-900`
|
|
360
|
+
- `yellow-background-color-default`
|
|
361
|
+
- `yellow-visual-color`
|
|
362
|
+
|
|
3
363
|
## 13.0.0-beta.6
|
|
4
364
|
|
|
5
365
|
### Minor Changes
|
package/dist/json/drover.json
CHANGED
|
@@ -38,9 +38,11 @@
|
|
|
38
38
|
"accent-content-color-key-focus": "rgb(39, 77, 234)",
|
|
39
39
|
"accent-content-color-selected": "rgb(39, 77, 234)",
|
|
40
40
|
"accent-visual-color": "rgb(75, 117, 255)",
|
|
41
|
-
"background-base-color": "rgb(
|
|
41
|
+
"background-base-color": "rgb(255, 255, 255)",
|
|
42
|
+
"background-elevated-color": "rgb(255, 255, 255)",
|
|
42
43
|
"background-layer-1-color": "rgb(248, 248, 248)",
|
|
43
44
|
"background-layer-2-color": "rgb(255, 255, 255)",
|
|
45
|
+
"background-pasteboard-color": "rgb(233, 233, 233)",
|
|
44
46
|
"black": "rgb(0, 0, 0)",
|
|
45
47
|
"blue-100": "rgb(245, 249, 255)",
|
|
46
48
|
"blue-1000": "rgb(39, 77, 234)",
|
|
@@ -383,7 +385,6 @@
|
|
|
383
385
|
"orange-visual-color": "rgb(232, 106, 0)",
|
|
384
386
|
"overlay-color": "rgb(0, 0, 0)",
|
|
385
387
|
"overlay-opacity": "0.4",
|
|
386
|
-
"picker-border-width": "1px",
|
|
387
388
|
"pink-100": "rgb(255, 246, 252)",
|
|
388
389
|
"pink-1000": "rgb(176, 31, 123)",
|
|
389
390
|
"pink-1100": "rgb(152, 22, 104)",
|
|
@@ -589,8 +590,10 @@
|
|
|
589
590
|
"accent-content-color-selected": "rgb(105, 149, 254)",
|
|
590
591
|
"accent-visual-color": "rgb(86, 129, 255)",
|
|
591
592
|
"background-base-color": "rgb(17, 17, 17)",
|
|
593
|
+
"background-elevated-color": "rgb(34, 34, 34)",
|
|
592
594
|
"background-layer-1-color": "rgb(27, 27, 27)",
|
|
593
595
|
"background-layer-2-color": "rgb(34, 34, 34)",
|
|
596
|
+
"background-pasteboard-color": "rgb(17, 17, 17)",
|
|
594
597
|
"black": "rgb(0, 0, 0)",
|
|
595
598
|
"blue-100": "rgb(14, 23, 63)",
|
|
596
599
|
"blue-1000": "rgb(105, 149, 254)",
|
|
@@ -933,7 +936,6 @@
|
|
|
933
936
|
"orange-visual-color": "rgb(224, 100, 0)",
|
|
934
937
|
"overlay-color": "rgb(0, 0, 0)",
|
|
935
938
|
"overlay-opacity": "0.6",
|
|
936
|
-
"picker-border-width": "1px",
|
|
937
939
|
"pink-100": "rgb(58, 0, 37)",
|
|
938
940
|
"pink-1000": "rgb(251, 90, 196)",
|
|
939
941
|
"pink-1100": "rgb(255, 122, 210)",
|
|
@@ -1128,7 +1130,6 @@
|
|
|
1128
1130
|
"floating-action-button-shadow-color": "rgba(0, 0, 0, 0.15)",
|
|
1129
1131
|
"opacity-checkerboard-square-light": "rgb(255, 255, 255)",
|
|
1130
1132
|
"overlay-color": "rgb(0, 0, 0)",
|
|
1131
|
-
"picker-border-width": "1px",
|
|
1132
1133
|
"static-black-focus-indicator-color": "rgb(0, 0, 0)",
|
|
1133
1134
|
"static-white-focus-indicator-color": "rgb(255, 255, 255)",
|
|
1134
1135
|
"swatch-disabled-icon-border-color": "rgb(0, 0, 0)",
|
|
@@ -1214,6 +1215,17 @@
|
|
|
1214
1215
|
"alert-dialog-maximum-width": "480px",
|
|
1215
1216
|
"alert-dialog-minimum-width": "288px",
|
|
1216
1217
|
"alert-dialog-title-size": "18px",
|
|
1218
|
+
"arrow-icon-size-100": "10px",
|
|
1219
|
+
"arrow-icon-size-200": "12px",
|
|
1220
|
+
"arrow-icon-size-300": "14px",
|
|
1221
|
+
"arrow-icon-size-400": "16px",
|
|
1222
|
+
"arrow-icon-size-500": "18px",
|
|
1223
|
+
"arrow-icon-size-600": "20px",
|
|
1224
|
+
"arrow-icon-size-75": "10px",
|
|
1225
|
+
"asterisk-icon-size-100": "8px",
|
|
1226
|
+
"asterisk-icon-size-200": "10px",
|
|
1227
|
+
"asterisk-icon-size-300": "10px",
|
|
1228
|
+
"asterisk-icon-size-75": "8px",
|
|
1217
1229
|
"avatar-opacity-disabled": "0.3",
|
|
1218
1230
|
"avatar-size-100": "20px",
|
|
1219
1231
|
"avatar-size-200": "22px",
|
|
@@ -1278,6 +1290,22 @@
|
|
|
1278
1290
|
"checkbox-top-to-control-large": "12px",
|
|
1279
1291
|
"checkbox-top-to-control-medium": "9px",
|
|
1280
1292
|
"checkbox-top-to-control-small": "6px",
|
|
1293
|
+
"checkmark-icon-size-100": "10px",
|
|
1294
|
+
"checkmark-icon-size-200": "12px",
|
|
1295
|
+
"checkmark-icon-size-300": "14px",
|
|
1296
|
+
"checkmark-icon-size-400": "16px",
|
|
1297
|
+
"checkmark-icon-size-50": "10px",
|
|
1298
|
+
"checkmark-icon-size-500": "16px",
|
|
1299
|
+
"checkmark-icon-size-600": "18px",
|
|
1300
|
+
"checkmark-icon-size-75": "10px",
|
|
1301
|
+
"chevron-icon-size-100": "10px",
|
|
1302
|
+
"chevron-icon-size-200": "12px",
|
|
1303
|
+
"chevron-icon-size-300": "14px",
|
|
1304
|
+
"chevron-icon-size-400": "16px",
|
|
1305
|
+
"chevron-icon-size-50": "6px",
|
|
1306
|
+
"chevron-icon-size-500": "16px",
|
|
1307
|
+
"chevron-icon-size-600": "18px",
|
|
1308
|
+
"chevron-icon-size-75": "10px",
|
|
1281
1309
|
"cjk-letter-spacing": "0.05em",
|
|
1282
1310
|
"cjk-line-height-100": "1.5",
|
|
1283
1311
|
"cjk-line-height-200": "1.7",
|
|
@@ -1309,7 +1337,6 @@
|
|
|
1309
1337
|
"color-handle-border-width": "2px",
|
|
1310
1338
|
"color-handle-inner-border-opacity": "0.42",
|
|
1311
1339
|
"color-handle-inner-border-width": "1px",
|
|
1312
|
-
"color-handle-outer-border-color": "rgb(0, 0, 0)",
|
|
1313
1340
|
"color-handle-outer-border-opacity": "0.42",
|
|
1314
1341
|
"color-handle-outer-border-width": "1px",
|
|
1315
1342
|
"color-handle-size": "16px",
|
|
@@ -1388,12 +1415,31 @@
|
|
|
1388
1415
|
"component-top-to-workflow-icon-300": "13px",
|
|
1389
1416
|
"component-top-to-workflow-icon-50": "3px",
|
|
1390
1417
|
"component-top-to-workflow-icon-75": "4px",
|
|
1391
|
-
"contextual-help-body-size": "
|
|
1418
|
+
"contextual-help-body-size": "14px",
|
|
1392
1419
|
"contextual-help-minimum-width": "268px",
|
|
1393
1420
|
"contextual-help-title-size": "16px",
|
|
1394
1421
|
"corner-radius-100": "4px",
|
|
1395
1422
|
"corner-radius-200": "8px",
|
|
1396
1423
|
"corner-radius-75": "2px",
|
|
1424
|
+
"corner-triangle-icon-size-100": "5px",
|
|
1425
|
+
"corner-triangle-icon-size-200": "6px",
|
|
1426
|
+
"corner-triangle-icon-size-300": "7px",
|
|
1427
|
+
"corner-triangle-icon-size-75": "5px",
|
|
1428
|
+
"cross-icon-size-100": "8px",
|
|
1429
|
+
"cross-icon-size-200": "10px",
|
|
1430
|
+
"cross-icon-size-300": "12px",
|
|
1431
|
+
"cross-icon-size-400": "12px",
|
|
1432
|
+
"cross-icon-size-500": "14px",
|
|
1433
|
+
"cross-icon-size-600": "16px",
|
|
1434
|
+
"cross-icon-size-75": "8px",
|
|
1435
|
+
"dash-icon-size-100": "10px",
|
|
1436
|
+
"dash-icon-size-200": "12px",
|
|
1437
|
+
"dash-icon-size-300": "12px",
|
|
1438
|
+
"dash-icon-size-400": "14px",
|
|
1439
|
+
"dash-icon-size-50": "8px",
|
|
1440
|
+
"dash-icon-size-500": "16px",
|
|
1441
|
+
"dash-icon-size-600": "18px",
|
|
1442
|
+
"dash-icon-size-75": "8px",
|
|
1397
1443
|
"detail-cjk-line-height": "1.5",
|
|
1398
1444
|
"detail-letter-spacing": "0.06em",
|
|
1399
1445
|
"detail-line-height": "1.3",
|
|
@@ -1575,10 +1621,10 @@
|
|
|
1575
1621
|
"meter-thickness-large": "6px",
|
|
1576
1622
|
"meter-thickness-small": "4px",
|
|
1577
1623
|
"meter-width": "192px",
|
|
1578
|
-
"navigational-indicator-top-to-back-icon-extra-large": "
|
|
1579
|
-
"navigational-indicator-top-to-back-icon-large": "
|
|
1580
|
-
"navigational-indicator-top-to-back-icon-medium": "
|
|
1581
|
-
"navigational-indicator-top-to-back-icon-small": "
|
|
1624
|
+
"navigational-indicator-top-to-back-icon-extra-large": "15px",
|
|
1625
|
+
"navigational-indicator-top-to-back-icon-large": "12px",
|
|
1626
|
+
"navigational-indicator-top-to-back-icon-medium": "9px",
|
|
1627
|
+
"navigational-indicator-top-to-back-icon-small": "6px",
|
|
1582
1628
|
"opacity-checkerboard-square-size": "8px",
|
|
1583
1629
|
"opacity-disabled": "0.3",
|
|
1584
1630
|
"picker-border-width": "1px",
|
|
@@ -1620,7 +1666,8 @@
|
|
|
1620
1666
|
"side-label-character-count-top-margin-medium": "8px",
|
|
1621
1667
|
"side-label-character-count-top-margin-small": "4px",
|
|
1622
1668
|
"side-navigation-bottom-to-text": "8px",
|
|
1623
|
-
"side-navigation-
|
|
1669
|
+
"side-navigation-header-to-item": "8px",
|
|
1670
|
+
"side-navigation-item-to-header": "24px",
|
|
1624
1671
|
"side-navigation-item-to-item": "4px",
|
|
1625
1672
|
"side-navigation-maximum-width": "240px",
|
|
1626
1673
|
"side-navigation-minimum-width": "160px",
|