@aurodesignsystem/design-tokens 4.1.0 → 4.2.0
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 +15 -0
- package/README.md +17 -0
- package/dist/tokens/CSSCustomProperties.css +241 -95
- package/dist/tokens/CSSSizeCustomProperties.css +1 -1
- package/dist/tokens/JSData--color.js +150 -1
- package/dist/tokens/JSObject--allTokens.js +150 -1
- package/dist/tokens/JSObject--deprecated.js +1 -1
- package/dist/tokens/JSVariables--color.js +6 -1
- package/dist/tokens/SCSSVariableMap.scss +1 -1
- package/dist/tokens/SCSSVariables.scss +147 -95
- package/dist/tokens/SCSSVariablesMapFlat.scss +8 -1
- package/dist/tokens/SassCustomProperties.scss +241 -95
- package/dist/tokens/SassSizeCustomProperties.scss +1 -1
- package/dist/tokens/darkmode/CSSCustomProperties.css +11 -5
- package/dist/tokens/darkmode/JSDataColor.js +1 -1
- package/dist/tokens/darkmode/JSObject--allDarkTokens.js +1 -1
- package/dist/tokens/darkmode/JSVariablesColor.js +1 -1
- package/dist/tokens/darkmode/SCSSVariables.scss +7 -5
- package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +1 -1
- package/dist/tokens/darkmode/SassCustomProperties.scss +11 -5
- package/package.json +2 -2
- package/src/color/background.json +10 -0
- package/src/color/base.json +14 -0
- package/src/color/ui.json +16 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 07 Nov 2023 23:11:08 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -162,11 +162,20 @@
|
|
|
162
162
|
--ds-color-background-lighter: #f8f8f8;
|
|
163
163
|
--ds-color-background-darker: #01426a;
|
|
164
164
|
--ds-color-background-darkest: #00274a;
|
|
165
|
-
--ds-color-
|
|
166
|
-
|
|
165
|
+
--ds-color-background-gradient-default: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
|
|
166
|
+
/**
|
|
167
|
+
*
|
|
168
|
+
* // Base value for token support; should not use in code!
|
|
169
|
+
*/
|
|
170
|
+
--ds-color-base-white: #ffffff;
|
|
171
|
+
--ds-color-base-white-opacity-50: rgba(255, 255, 255, 0.5); /* white @ 50% */
|
|
167
172
|
--ds-color-base-white-opacity-40: rgba(255, 255, 255, 0.4); /* white @ 40% */
|
|
168
|
-
--ds-color-base-
|
|
169
|
-
|
|
173
|
+
--ds-color-base-white-opacity-0: rgba(255, 255, 255, 0); /* white @ 0% */
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* // Base value for token support; should not use in code!
|
|
177
|
+
*/
|
|
178
|
+
--ds-color-base-black: #000000;
|
|
170
179
|
--ds-color-base-black-opacity-15: rgba(0, 0, 0, 0.15); /* black @ 15% */
|
|
171
180
|
--ds-color-state-error-100: #ff999b;
|
|
172
181
|
--ds-color-state-error-500: #df0b37;
|
|
@@ -181,96 +190,231 @@
|
|
|
181
190
|
--ds-color-border-focus-default: #222222;
|
|
182
191
|
--ds-color-border-divider-default: rgba(0, 0, 0, 0.15);
|
|
183
192
|
--ds-color-border-divider-inverse: #ffffff;
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
--ds-color-brand-midnight-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
--ds-color-brand-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
--ds-color-brand-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
--ds-color-brand-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
--ds-color-brand-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
--ds-color-brand-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
--ds-color-brand-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
--ds-color-brand-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
--ds-color-brand-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* // Please consider descriptive token prior to using brand token
|
|
196
|
+
*/
|
|
197
|
+
--ds-color-brand-midnight-100: #c1daf0;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* // Please consider descriptive token prior to using brand token
|
|
201
|
+
*/
|
|
202
|
+
--ds-color-brand-midnight-200: #569ed7;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* // Please consider descriptive token prior to using brand token
|
|
206
|
+
*/
|
|
207
|
+
--ds-color-brand-midnight-300: #156fad;
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* // Please consider descriptive token prior to using brand token
|
|
211
|
+
*/
|
|
212
|
+
--ds-color-brand-midnight-400: #01426a;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* // Please consider descriptive token prior to using brand token
|
|
216
|
+
*/
|
|
217
|
+
--ds-color-brand-midnight-500: #00274a;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* // Please consider descriptive token prior to using brand token
|
|
221
|
+
*/
|
|
222
|
+
--ds-color-brand-atlas-100: #cde6ff;
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* // Please consider descriptive token prior to using brand token
|
|
226
|
+
*/
|
|
227
|
+
--ds-color-brand-atlas-200: #6bb7fb;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* // Please consider descriptive token prior to using brand token
|
|
231
|
+
*/
|
|
232
|
+
--ds-color-brand-atlas-300: #2492eb;
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* // Please consider descriptive token prior to using brand token
|
|
236
|
+
*/
|
|
237
|
+
--ds-color-brand-atlas-400: #0074c8;
|
|
238
|
+
/**
|
|
239
|
+
*
|
|
240
|
+
* // Please consider descriptive token prior to using brand token
|
|
241
|
+
*/
|
|
242
|
+
--ds-color-brand-atlas-500: #054687;
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* // Please consider descriptive token prior to using brand token
|
|
246
|
+
*/
|
|
247
|
+
--ds-color-brand-breeze-100: #c0f7ff;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* // Please consider descriptive token prior to using brand token
|
|
251
|
+
*/
|
|
252
|
+
--ds-color-brand-breeze-200: #5de3f7;
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* // Please consider descriptive token prior to using brand token
|
|
256
|
+
*/
|
|
257
|
+
--ds-color-brand-breeze-300: #00cff0;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* // Please consider descriptive token prior to using brand token
|
|
261
|
+
*/
|
|
262
|
+
--ds-color-brand-breeze-400: #099dc5;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* // Please consider descriptive token prior to using brand token
|
|
266
|
+
*/
|
|
267
|
+
--ds-color-brand-breeze-500: #0b5575;
|
|
268
|
+
/**
|
|
269
|
+
*
|
|
270
|
+
* // Please consider descriptive token prior to using brand token
|
|
271
|
+
*/
|
|
272
|
+
--ds-color-brand-tropical-100: #e2ffcd;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* // Please consider descriptive token prior to using brand token
|
|
276
|
+
*/
|
|
277
|
+
--ds-color-brand-tropical-200: #d0fba6;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* // Please consider descriptive token prior to using brand token
|
|
281
|
+
*/
|
|
282
|
+
--ds-color-brand-tropical-300: #c0e585;
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* // Please consider descriptive token prior to using brand token
|
|
286
|
+
*/
|
|
287
|
+
--ds-color-brand-tropical-400: #91be62;
|
|
288
|
+
/**
|
|
289
|
+
*
|
|
290
|
+
* // Please consider descriptive token prior to using brand token
|
|
291
|
+
*/
|
|
292
|
+
--ds-color-brand-tropical-500: #5e8741;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* // Please consider descriptive token prior to using brand token
|
|
296
|
+
*/
|
|
297
|
+
--ds-color-brand-alpine-100: #bcaae6;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* // Please consider descriptive token prior to using brand token
|
|
301
|
+
*/
|
|
302
|
+
--ds-color-brand-alpine-200: #9e73ea;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* // Please consider descriptive token prior to using brand token
|
|
306
|
+
*/
|
|
307
|
+
--ds-color-brand-alpine-300: #8439ef;
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* // Please consider descriptive token prior to using brand token
|
|
311
|
+
*/
|
|
312
|
+
--ds-color-brand-alpine-400: #631db8;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* // Please consider descriptive token prior to using brand token
|
|
316
|
+
*/
|
|
317
|
+
--ds-color-brand-alpine-500: #39115c;
|
|
318
|
+
/**
|
|
319
|
+
*
|
|
320
|
+
* // Please consider descriptive token prior to using brand token
|
|
321
|
+
*/
|
|
322
|
+
--ds-color-brand-flamingo-100: #ffebee;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* // Please consider descriptive token prior to using brand token
|
|
326
|
+
*/
|
|
327
|
+
--ds-color-brand-flamingo-200: #ffc0ca;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* // Please consider descriptive token prior to using brand token
|
|
331
|
+
*/
|
|
332
|
+
--ds-color-brand-flamingo-300: #ff94a7;
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* // Please consider descriptive token prior to using brand token
|
|
336
|
+
*/
|
|
337
|
+
--ds-color-brand-flamingo-400: #f65b7b;
|
|
338
|
+
/**
|
|
339
|
+
*
|
|
340
|
+
* // Please consider descriptive token prior to using brand token
|
|
341
|
+
*/
|
|
342
|
+
--ds-color-brand-flamingo-500: #b82b47;
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* // Please consider descriptive token prior to using brand token
|
|
346
|
+
*/
|
|
347
|
+
--ds-color-brand-canyon-100: #ffcab6;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* // Please consider descriptive token prior to using brand token
|
|
351
|
+
*/
|
|
352
|
+
--ds-color-brand-canyon-200: #f99574;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* // Please consider descriptive token prior to using brand token
|
|
356
|
+
*/
|
|
357
|
+
--ds-color-brand-canyon-300: #f26135;
|
|
358
|
+
/**
|
|
359
|
+
*
|
|
360
|
+
* // Please consider descriptive token prior to using brand token
|
|
361
|
+
*/
|
|
362
|
+
--ds-color-brand-canyon-400: #de3e09;
|
|
363
|
+
/**
|
|
364
|
+
*
|
|
365
|
+
* // Please consider descriptive token prior to using brand token
|
|
366
|
+
*/
|
|
367
|
+
--ds-color-brand-canyon-500: #b83302;
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* // Please consider descriptive token prior to using brand token
|
|
371
|
+
*/
|
|
372
|
+
--ds-color-brand-goldcoast-100: #fff0cd;
|
|
373
|
+
/**
|
|
374
|
+
*
|
|
375
|
+
* // Please consider descriptive token prior to using brand token
|
|
376
|
+
*/
|
|
377
|
+
--ds-color-brand-goldcoast-200: #ffdb67;
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* // Please consider descriptive token prior to using brand token
|
|
381
|
+
*/
|
|
382
|
+
--ds-color-brand-goldcoast-300: #ffd200;
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* // Please consider descriptive token prior to using brand token
|
|
386
|
+
*/
|
|
387
|
+
--ds-color-brand-goldcoast-400: #e5ad07;
|
|
388
|
+
/**
|
|
389
|
+
*
|
|
390
|
+
* // Please consider descriptive token prior to using brand token
|
|
391
|
+
*/
|
|
392
|
+
--ds-color-brand-goldcoast-500: #b88624;
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* // Please consider descriptive token prior to using brand token
|
|
396
|
+
*/
|
|
397
|
+
--ds-color-brand-neutral-100: #f9fbfc;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* // Please consider descriptive token prior to using brand token
|
|
401
|
+
*/
|
|
402
|
+
--ds-color-brand-neutral-200: #e2eaef;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* // Please consider descriptive token prior to using brand token
|
|
406
|
+
*/
|
|
407
|
+
--ds-color-brand-neutral-300: #cbd8e2;
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* // Please consider descriptive token prior to using brand token
|
|
411
|
+
*/
|
|
412
|
+
--ds-color-brand-neutral-400: #9fabbb;
|
|
413
|
+
/**
|
|
414
|
+
*
|
|
415
|
+
* // Please consider descriptive token prior to using brand token
|
|
416
|
+
*/
|
|
417
|
+
--ds-color-brand-neutral-500: #626b79;
|
|
274
418
|
--ds-color-brand-gray-100: #f8f8f8;
|
|
275
419
|
--ds-color-brand-gray-200: #dbdbdb;
|
|
276
420
|
--ds-color-brand-gray-300: #b2b2b2;
|
|
@@ -308,7 +452,9 @@
|
|
|
308
452
|
--ds-color-tier-oneworld-sapphire: #015daa;
|
|
309
453
|
--ds-color-tier-oneworld-ruby: #a41d4a;
|
|
310
454
|
--ds-color-ui-default-default: #0074c8;
|
|
455
|
+
--ds-color-ui-default-inverse: #00cff0;
|
|
311
456
|
--ds-color-ui-hover-default: #054687;
|
|
457
|
+
--ds-color-ui-hover-inverse: #5de3f7;
|
|
312
458
|
--ds-color-ui-active-default: #054687;
|
|
313
459
|
--ds-color-ui-disabled-default: rgba(0, 116, 200, 0.2);
|
|
314
460
|
--ds-color-ui-bkg-hover-default: rgba(0, 0, 0, 0.06);
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 07 Nov 2023 23:11:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* // Base value for token support; should not use in code!
|
|
10
|
+
*/
|
|
11
|
+
--ds-color-base-white: #000000;
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* // Base value for token support; should not use in code!
|
|
15
|
+
*/
|
|
16
|
+
--ds-color-base-black: #ffffff;
|
|
11
17
|
--ds-color-border-primary-default: #9fabbb;
|
|
12
18
|
--ds-color-border-divider-default: #000000;
|
|
13
19
|
--ds-color-icon-primary-default: #9fabbb;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 07 Nov 2023 23:11:09 GMT
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
$ds-color-base-
|
|
8
|
-
|
|
5
|
+
//
|
|
6
|
+
// // Base value for token support; should not use in code!
|
|
7
|
+
$ds-color-base-white: #000000;
|
|
8
|
+
//
|
|
9
|
+
// // Base value for token support; should not use in code!
|
|
10
|
+
$ds-color-base-black: #ffffff;
|
|
9
11
|
$ds-color-border-primary-default: #9fabbb;
|
|
10
12
|
$ds-color-border-divider-default: #000000;
|
|
11
13
|
$ds-color-icon-primary-default: #9fabbb;
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 07 Nov 2023 23:11:09 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* // Base value for token support; should not use in code!
|
|
10
|
+
*/
|
|
11
|
+
--ds-color-base-white: #000000;
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* // Base value for token support; should not use in code!
|
|
15
|
+
*/
|
|
16
|
+
--ds-color-base-black: #ffffff;
|
|
11
17
|
--ds-color-border-primary-default: #9fabbb;
|
|
12
18
|
--ds-color-border-divider-default: #000000;
|
|
13
19
|
--ds-color-icon-primary-default: #9fabbb;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem/design-tokens",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Alaska Air Auro Design System token repository",
|
|
5
5
|
"homepage": "https://github.com/AlaskaAirlines/DesignTokens",
|
|
6
6
|
"author": "Alaska Airlines Product design and engineering",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"husky": "^8.0.0",
|
|
26
26
|
"npm-run-all": "^4.1.5",
|
|
27
27
|
"semantic-release": "^21.0.7",
|
|
28
|
-
"style-dictionary": "^3.
|
|
28
|
+
"style-dictionary": "^3.9.0"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"postinstall": "node packageScripts/postinstall.mjs",
|
|
@@ -32,6 +32,16 @@
|
|
|
32
32
|
"usage": "Used for creating dark backgrounds @ 20% darker",
|
|
33
33
|
"wcag": "n/a",
|
|
34
34
|
"deprecated": false
|
|
35
|
+
},
|
|
36
|
+
"gradient": {
|
|
37
|
+
"default": {
|
|
38
|
+
"value": "linear-gradient(180deg, {color.base.white-opacity-0}, {color.base.white-opacity-50})",
|
|
39
|
+
"public": true,
|
|
40
|
+
"neutral": true,
|
|
41
|
+
"usage": "Used for creating a gradient against all backgrounds",
|
|
42
|
+
"wcag": "n/a",
|
|
43
|
+
"deprecated": false
|
|
44
|
+
}
|
|
35
45
|
}
|
|
36
46
|
}
|
|
37
47
|
}
|
package/src/color/base.json
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"public": true,
|
|
8
8
|
"deprecated": false
|
|
9
9
|
},
|
|
10
|
+
"white-opacity-50": {
|
|
11
|
+
"value": "ffffff80",
|
|
12
|
+
"comment": "white @ 50%",
|
|
13
|
+
"public": true,
|
|
14
|
+
"opacity": true,
|
|
15
|
+
"deprecated": false
|
|
16
|
+
},
|
|
10
17
|
"white-opacity-40": {
|
|
11
18
|
"value": "ffffff66",
|
|
12
19
|
"comment": "white @ 40%",
|
|
@@ -14,6 +21,13 @@
|
|
|
14
21
|
"opacity": true,
|
|
15
22
|
"deprecated": false
|
|
16
23
|
},
|
|
24
|
+
"white-opacity-0": {
|
|
25
|
+
"value": "ffffff00",
|
|
26
|
+
"comment": "white @ 0%",
|
|
27
|
+
"public": true,
|
|
28
|
+
"opacity": true,
|
|
29
|
+
"deprecated": false
|
|
30
|
+
},
|
|
17
31
|
"black": {
|
|
18
32
|
"value": "000000",
|
|
19
33
|
"comment": "{comments.color.base.value.comment}",
|
package/src/color/ui.json
CHANGED
|
@@ -31,6 +31,14 @@
|
|
|
31
31
|
"comment": "Deprecated token",
|
|
32
32
|
"reference": "n/a",
|
|
33
33
|
"version": "3.12.0"
|
|
34
|
+
},
|
|
35
|
+
"inverse": {
|
|
36
|
+
"value": "{color.brand.breeze.300.value}",
|
|
37
|
+
"public": true,
|
|
38
|
+
"inverse": true,
|
|
39
|
+
"usage": "OnDark interaction color affordance",
|
|
40
|
+
"wcag": "AAA",
|
|
41
|
+
"deprecated": false
|
|
34
42
|
}
|
|
35
43
|
},
|
|
36
44
|
"hover": {
|
|
@@ -63,6 +71,14 @@
|
|
|
63
71
|
"comment": "Deprecated token",
|
|
64
72
|
"reference": "n/a",
|
|
65
73
|
"version": "3.12.0"
|
|
74
|
+
},
|
|
75
|
+
"inverse": {
|
|
76
|
+
"value": "{color.brand.breeze.200.value}",
|
|
77
|
+
"public": true,
|
|
78
|
+
"inverse": true,
|
|
79
|
+
"usage": "Hover interaction color on dark backgrounds",
|
|
80
|
+
"wcag": "AAA",
|
|
81
|
+
"deprecated": false
|
|
66
82
|
}
|
|
67
83
|
},
|
|
68
84
|
"active": {
|