@aurodesignsystem/design-tokens 4.3.1 → 4.5.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 +26 -0
- package/README.md +54 -41
- package/dist/tokens/CSSCustomProperties.css +1542 -64
- package/dist/tokens/CSSSizeCustomProperties.css +2 -1
- package/dist/tokens/JSData--color.js +16599 -2192
- package/dist/tokens/JSONVariablesFlat.json +711 -0
- package/dist/tokens/JSONVariablesNested.json +1207 -0
- package/dist/tokens/JSObject--allTokens.js +13782 -2488
- package/dist/tokens/JSObject--deprecated.js +2294 -1925
- package/dist/tokens/JSVariables--color.js +736 -39
- package/dist/tokens/SCSSVariableMap.scss +3 -1
- package/dist/tokens/SCSSVariables.scss +1004 -46
- package/dist/tokens/SCSSVariablesMapFlat.scss +1008 -47
- package/dist/tokens/SassCustomProperties.scss +1542 -64
- package/dist/tokens/SassSizeCustomProperties.scss +2 -1
- package/dist/tokens/darkmode/CSSCustomProperties.css +4 -4
- package/dist/tokens/darkmode/JSDataColor.js +107 -43
- package/dist/tokens/darkmode/{JSObject--allDarkTokens.js → JSObject--deprecatedDark.js} +120 -56
- package/dist/tokens/darkmode/JSVariablesColor.js +4 -4
- package/dist/tokens/darkmode/SCSSVariables.scss +4 -4
- package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +4 -4
- package/dist/tokens/darkmode/SassCustomProperties.scss +4 -4
- package/dist/tokens/excursion/JSONVariablesFlat.json +67 -0
- package/dist/tokens/excursion/JSONVariablesNested.json +105 -0
- package/package.json +13 -12
- package/src/color/alert.json +18 -103
- package/src/color/background.json +213 -10
- package/src/color/base.json +1219 -70
- package/src/color/border.json +253 -133
- package/src/color/brand.json +1204 -185
- package/src/color/container.json +464 -0
- package/src/color/icon.json +449 -91
- package/src/color/text.json +200 -145
- package/src/color/tier.json +118 -52
- package/src/color/ui.json +29 -115
- package/src/color-darkmode/base.json +6 -2
- package/src/color-darkmode/border.json +6 -2
- package/src/color-darkmode/icon.json +6 -2
- package/src/color-darkmode/text.json +15 -5
- package/src/color-darkmode/tier.json +6 -2
- package/src/depth.json +0 -7
- package/src/size/radius.json +1 -1
- package/src/size/scale.json +6 -80
- package/src/themes/excursion/color/background.json +73 -0
- package/src/themes/excursion/color/base.json +234 -0
- package/src/themes/excursion/color/brand.json +254 -0
- package/src/breakpoint.json +0 -28
- package/src/shadow.json +0 -13
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Thu, 23 May 2024 18:24:57 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
--ds-border-radius: 0.375rem;
|
|
13
13
|
--ds-size-25: 0.125rem; /* 2px */
|
|
14
14
|
--ds-size-50: 0.25rem; /* 4px */
|
|
15
|
+
--ds-size-75: 0.375rem; /* 6px */
|
|
15
16
|
--ds-size-100: 0.5rem; /* 8px */
|
|
16
17
|
--ds-size-150: 0.75rem; /* 12px */
|
|
17
18
|
--ds-size-200: 1rem; /* 16px */
|
|
@@ -158,8 +159,30 @@
|
|
|
158
159
|
--ds-color-alert-advisory-default: #fff0cd;
|
|
159
160
|
--ds-color-alert-bkg-success-default: #ddf6e8;
|
|
160
161
|
--ds-color-alert-bkg-error-default: #ffedf1;
|
|
162
|
+
--ds-color-background-100-default: #ffffff;
|
|
163
|
+
--ds-color-background-100-inverse: #0e2b4f;
|
|
164
|
+
--ds-color-background-200-default: #f7f7f7;
|
|
165
|
+
--ds-color-background-200-inverse: #194069;
|
|
166
|
+
--ds-color-background-300-default: #e4e8ec;
|
|
167
|
+
--ds-color-background-300-inverse: #265688;
|
|
168
|
+
--ds-color-background-400-default: #dddddd;
|
|
169
|
+
--ds-color-background-400-inverse: #326aa5;
|
|
170
|
+
--ds-color-background-success-default: #eef8f5;
|
|
171
|
+
--ds-color-background-success-inverse: #173c30;
|
|
172
|
+
--ds-color-background-error-default: #fff4f4;
|
|
173
|
+
--ds-color-background-error-inverse: #74110e;
|
|
174
|
+
--ds-color-background-warning-default: #fef8e9;
|
|
175
|
+
--ds-color-background-warning-inverse: #5d4514;
|
|
176
|
+
--ds-color-background-info-default: #f0f7fd;
|
|
177
|
+
--ds-color-background-info-inverse: #193d73;
|
|
178
|
+
--ds-color-background-subtle-default: #f7f8fa;
|
|
179
|
+
--ds-color-background-subtle-inverse: #2a2a2a;
|
|
180
|
+
--ds-color-background-accent-default: #ebfafd;
|
|
181
|
+
--ds-color-background-accent-inverse: #275b72;
|
|
182
|
+
--ds-color-background-emphasis-default: #c9e0f7;
|
|
183
|
+
--ds-color-background-emphasis-inverse: #225296;
|
|
161
184
|
--ds-color-background-lightest: #ffffff;
|
|
162
|
-
--ds-color-background-lighter: #
|
|
185
|
+
--ds-color-background-lighter: #f7f7f7;
|
|
163
186
|
--ds-color-background-darker: #01426a;
|
|
164
187
|
--ds-color-background-darkest: #00274a;
|
|
165
188
|
--ds-color-background-gradient-default: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
|
|
@@ -168,29 +191,1381 @@
|
|
|
168
191
|
* // Base value for token support; should not use in code!
|
|
169
192
|
*/
|
|
170
193
|
--ds-color-base-white: #ffffff;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* // Base value for token support; should not use in code!
|
|
197
|
+
*/
|
|
198
|
+
--ds-color-base-white-100: rgba(255, 255, 255, 0.03);
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* // Base value for token support; should not use in code!
|
|
202
|
+
*/
|
|
203
|
+
--ds-color-base-white-200: rgba(255, 255, 255, 0.06);
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* // Base value for token support; should not use in code!
|
|
207
|
+
*/
|
|
208
|
+
--ds-color-base-white-300: rgba(255, 255, 255, 0.12);
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* // Base value for token support; should not use in code!
|
|
212
|
+
*/
|
|
213
|
+
--ds-color-base-white-400: rgba(255, 255, 255, 0.25);
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* // Base value for token support; should not use in code!
|
|
217
|
+
*/
|
|
218
|
+
--ds-color-base-white-500: rgba(255, 255, 255, 0.5);
|
|
171
219
|
--ds-color-base-white-opacity-50: rgba(255, 255, 255, 0.5); /* white @ 50% */
|
|
172
220
|
--ds-color-base-white-opacity-40: rgba(255, 255, 255, 0.4); /* white @ 40% */
|
|
173
221
|
--ds-color-base-white-opacity-0: rgba(255, 255, 255, 0); /* white @ 0% */
|
|
174
222
|
/**
|
|
175
223
|
*
|
|
176
|
-
* // Base value for token support; should not use in code!
|
|
224
|
+
* // Base value for token support; should not use in code!
|
|
225
|
+
*/
|
|
226
|
+
--ds-color-base-black: #000000;
|
|
227
|
+
/**
|
|
228
|
+
*
|
|
229
|
+
* // Base value for token support; should not use in code!
|
|
230
|
+
*/
|
|
231
|
+
--ds-color-base-black-100: rgba(0, 0, 0, 0.03);
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* // Base value for token support; should not use in code!
|
|
235
|
+
*/
|
|
236
|
+
--ds-color-base-black-200: rgba(0, 0, 0, 0.06);
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* // Base value for token support; should not use in code!
|
|
240
|
+
*/
|
|
241
|
+
--ds-color-base-black-300: rgba(0, 0, 0, 0.12);
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* // Base value for token support; should not use in code!
|
|
245
|
+
*/
|
|
246
|
+
--ds-color-base-black-400: rgba(0, 0, 0, 0.25);
|
|
247
|
+
/**
|
|
248
|
+
*
|
|
249
|
+
* // Base value for token support; should not use in code!
|
|
250
|
+
*/
|
|
251
|
+
--ds-color-base-black-500: rgba(0, 0, 0, 0.5);
|
|
252
|
+
--ds-color-base-black-opacity-15: rgba(0, 0, 0, 0.15); /* black @ 15% */
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* // Base value for token support; should not use in code!
|
|
256
|
+
*/
|
|
257
|
+
--ds-color-base-blue-100: #f0f7fd;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* // Base value for token support; should not use in code!
|
|
261
|
+
*/
|
|
262
|
+
--ds-color-base-blue-200: #c9e0f7;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* // Base value for token support; should not use in code!
|
|
266
|
+
*/
|
|
267
|
+
--ds-color-base-blue-300: #a0c9f1;
|
|
268
|
+
/**
|
|
269
|
+
*
|
|
270
|
+
* // Base value for token support; should not use in code!
|
|
271
|
+
*/
|
|
272
|
+
--ds-color-base-blue-400: #79b2ec;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* // Base value for token support; should not use in code!
|
|
276
|
+
*/
|
|
277
|
+
--ds-color-base-blue-500: #5398e6;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* // Base value for token support; should not use in code!
|
|
281
|
+
*/
|
|
282
|
+
--ds-color-base-blue-600: #3b7fd2;
|
|
283
|
+
/**
|
|
284
|
+
*
|
|
285
|
+
* // Base value for token support; should not use in code!
|
|
286
|
+
*/
|
|
287
|
+
--ds-color-base-blue-700: #2c67b5;
|
|
288
|
+
/**
|
|
289
|
+
*
|
|
290
|
+
* // Base value for token support; should not use in code!
|
|
291
|
+
*/
|
|
292
|
+
--ds-color-base-blue-800: #225296;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* // Base value for token support; should not use in code!
|
|
296
|
+
*/
|
|
297
|
+
--ds-color-base-blue-900: #193d73;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* // Base value for token support; should not use in code!
|
|
301
|
+
*/
|
|
302
|
+
--ds-color-base-blue-1000: #102a51;
|
|
303
|
+
/**
|
|
304
|
+
*
|
|
305
|
+
* // Base value for token support; should not use in code!
|
|
306
|
+
*/
|
|
307
|
+
--ds-color-base-cyan-100: #ebfafd;
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* // Base value for token support; should not use in code!
|
|
311
|
+
*/
|
|
312
|
+
--ds-color-base-cyan-200: #a8e9f7;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* // Base value for token support; should not use in code!
|
|
316
|
+
*/
|
|
317
|
+
--ds-color-base-cyan-300: #6ad5ef;
|
|
318
|
+
/**
|
|
319
|
+
*
|
|
320
|
+
* // Base value for token support; should not use in code!
|
|
321
|
+
*/
|
|
322
|
+
--ds-color-base-cyan-400: #56bbde;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* // Base value for token support; should not use in code!
|
|
326
|
+
*/
|
|
327
|
+
--ds-color-base-cyan-500: #4aa2c7;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* // Base value for token support; should not use in code!
|
|
331
|
+
*/
|
|
332
|
+
--ds-color-base-cyan-600: #3e89aa;
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* // Base value for token support; should not use in code!
|
|
336
|
+
*/
|
|
337
|
+
--ds-color-base-cyan-700: #32718e;
|
|
338
|
+
/**
|
|
339
|
+
*
|
|
340
|
+
* // Base value for token support; should not use in code!
|
|
341
|
+
*/
|
|
342
|
+
--ds-color-base-cyan-800: #275b72;
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* // Base value for token support; should not use in code!
|
|
346
|
+
*/
|
|
347
|
+
--ds-color-base-cyan-900: #1d4658;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* // Base value for token support; should not use in code!
|
|
351
|
+
*/
|
|
352
|
+
--ds-color-base-cyan-1000: #12303d;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* // Base value for token support; should not use in code!
|
|
356
|
+
*/
|
|
357
|
+
--ds-color-base-error-100: #fff4f4;
|
|
358
|
+
/**
|
|
359
|
+
*
|
|
360
|
+
* // Base value for token support; should not use in code!
|
|
361
|
+
*/
|
|
362
|
+
--ds-color-base-error-200: #f9aca6;
|
|
363
|
+
/**
|
|
364
|
+
*
|
|
365
|
+
* // Base value for token support; should not use in code!
|
|
366
|
+
*/
|
|
367
|
+
--ds-color-base-error-300: #f16359;
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* // Base value for token support; should not use in code!
|
|
371
|
+
*/
|
|
372
|
+
--ds-color-base-error-400: #cc1816;
|
|
373
|
+
/**
|
|
374
|
+
*
|
|
375
|
+
* // Base value for token support; should not use in code!
|
|
376
|
+
*/
|
|
377
|
+
--ds-color-base-error-500: #74110e;
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* // Base value for token support; should not use in code!
|
|
381
|
+
*/
|
|
382
|
+
--ds-color-base-gray-100: #f7f7f7;
|
|
383
|
+
/**
|
|
384
|
+
*
|
|
385
|
+
* // Base value for token support; should not use in code!
|
|
386
|
+
*/
|
|
387
|
+
--ds-color-base-gray-200: #dddddd;
|
|
388
|
+
/**
|
|
389
|
+
*
|
|
390
|
+
* // Base value for token support; should not use in code!
|
|
391
|
+
*/
|
|
392
|
+
--ds-color-base-gray-300: #c5c5c5;
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* // Base value for token support; should not use in code!
|
|
396
|
+
*/
|
|
397
|
+
--ds-color-base-gray-400: #adadad;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* // Base value for token support; should not use in code!
|
|
401
|
+
*/
|
|
402
|
+
--ds-color-base-gray-500: #959595;
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* // Base value for token support; should not use in code!
|
|
406
|
+
*/
|
|
407
|
+
--ds-color-base-gray-600: #7e7e7e;
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* // Base value for token support; should not use in code!
|
|
411
|
+
*/
|
|
412
|
+
--ds-color-base-gray-700: #676767;
|
|
413
|
+
/**
|
|
414
|
+
*
|
|
415
|
+
* // Base value for token support; should not use in code!
|
|
416
|
+
*/
|
|
417
|
+
--ds-color-base-gray-800: #525252;
|
|
418
|
+
/**
|
|
419
|
+
*
|
|
420
|
+
* // Base value for token support; should not use in code!
|
|
421
|
+
*/
|
|
422
|
+
--ds-color-base-gray-900: #3d3d3d;
|
|
423
|
+
/**
|
|
424
|
+
*
|
|
425
|
+
* // Base value for token support; should not use in code!
|
|
426
|
+
*/
|
|
427
|
+
--ds-color-base-gray-1000: #2a2a2a;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* // Base value for token support; should not use in code!
|
|
431
|
+
*/
|
|
432
|
+
--ds-color-base-green-100: #f3faf7;
|
|
433
|
+
/**
|
|
434
|
+
*
|
|
435
|
+
* // Base value for token support; should not use in code!
|
|
436
|
+
*/
|
|
437
|
+
--ds-color-base-green-200: #000000;
|
|
438
|
+
/**
|
|
439
|
+
*
|
|
440
|
+
* // Base value for token support; should not use in code!
|
|
441
|
+
*/
|
|
442
|
+
--ds-color-base-green-300: #addbca;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* // Base value for token support; should not use in code!
|
|
446
|
+
*/
|
|
447
|
+
--ds-color-base-green-400: #7ec6ac;
|
|
448
|
+
/**
|
|
449
|
+
*
|
|
450
|
+
* // Base value for token support; should not use in code!
|
|
451
|
+
*/
|
|
452
|
+
--ds-color-base-green-500: #51ae8c;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* // Base value for token support; should not use in code!
|
|
456
|
+
*/
|
|
457
|
+
--ds-color-base-green-600: #459578;
|
|
458
|
+
/**
|
|
459
|
+
*
|
|
460
|
+
* // Base value for token support; should not use in code!
|
|
461
|
+
*/
|
|
462
|
+
--ds-color-base-green-700: #3a7d64;
|
|
463
|
+
/**
|
|
464
|
+
*
|
|
465
|
+
* // Base value for token support; should not use in code!
|
|
466
|
+
*/
|
|
467
|
+
--ds-color-base-green-800: #306854;
|
|
468
|
+
/**
|
|
469
|
+
*
|
|
470
|
+
* // Base value for token support; should not use in code!
|
|
471
|
+
*/
|
|
472
|
+
--ds-color-base-green-900: #285545;
|
|
473
|
+
/**
|
|
474
|
+
*
|
|
475
|
+
* // Base value for token support; should not use in code!
|
|
476
|
+
*/
|
|
477
|
+
--ds-color-base-green-1000: #1f4436;
|
|
478
|
+
/**
|
|
479
|
+
*
|
|
480
|
+
* // Base value for token support; should not use in code!
|
|
481
|
+
*/
|
|
482
|
+
--ds-color-base-lime-100: #f5fbeb;
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
* // Base value for token support; should not use in code!
|
|
486
|
+
*/
|
|
487
|
+
--ds-color-base-lime-200: #d8efb4;
|
|
488
|
+
/**
|
|
489
|
+
*
|
|
490
|
+
* // Base value for token support; should not use in code!
|
|
491
|
+
*/
|
|
492
|
+
--ds-color-base-lime-300: #badd81;
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* // Base value for token support; should not use in code!
|
|
496
|
+
*/
|
|
497
|
+
--ds-color-base-lime-400: #a2c270;
|
|
498
|
+
/**
|
|
499
|
+
*
|
|
500
|
+
* // Base value for token support; should not use in code!
|
|
501
|
+
*/
|
|
502
|
+
--ds-color-base-lime-500: #8ca761;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* // Base value for token support; should not use in code!
|
|
506
|
+
*/
|
|
507
|
+
--ds-color-base-lime-600: #778f53;
|
|
508
|
+
/**
|
|
509
|
+
*
|
|
510
|
+
* // Base value for token support; should not use in code!
|
|
511
|
+
*/
|
|
512
|
+
--ds-color-base-lime-700: #647845;
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* // Base value for token support; should not use in code!
|
|
516
|
+
*/
|
|
517
|
+
--ds-color-base-lime-800: #53643a;
|
|
518
|
+
/**
|
|
519
|
+
*
|
|
520
|
+
* // Base value for token support; should not use in code!
|
|
521
|
+
*/
|
|
522
|
+
--ds-color-base-lime-900: #44522f;
|
|
523
|
+
/**
|
|
524
|
+
*
|
|
525
|
+
* // Base value for token support; should not use in code!
|
|
526
|
+
*/
|
|
527
|
+
--ds-color-base-lime-1000: #364126;
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* // Base value for token support; should not use in code!
|
|
531
|
+
*/
|
|
532
|
+
--ds-color-base-navy-100: #f2f7fb;
|
|
533
|
+
/**
|
|
534
|
+
*
|
|
535
|
+
* // Base value for token support; should not use in code!
|
|
536
|
+
*/
|
|
537
|
+
--ds-color-base-navy-200: #cfe0ef;
|
|
538
|
+
/**
|
|
539
|
+
*
|
|
540
|
+
* // Base value for token support; should not use in code!
|
|
541
|
+
*/
|
|
542
|
+
--ds-color-base-navy-300: #acc9e2;
|
|
543
|
+
/**
|
|
544
|
+
*
|
|
545
|
+
* // Base value for token support; should not use in code!
|
|
546
|
+
*/
|
|
547
|
+
--ds-color-base-navy-400: #89b2d4;
|
|
548
|
+
/**
|
|
549
|
+
*
|
|
550
|
+
* // Base value for token support; should not use in code!
|
|
551
|
+
*/
|
|
552
|
+
--ds-color-base-navy-500: #6899c6;
|
|
553
|
+
/**
|
|
554
|
+
*
|
|
555
|
+
* // Base value for token support; should not use in code!
|
|
556
|
+
*/
|
|
557
|
+
--ds-color-base-navy-600: #4a82b7;
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* // Base value for token support; should not use in code!
|
|
561
|
+
*/
|
|
562
|
+
--ds-color-base-navy-700: #326aa5;
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* // Base value for token support; should not use in code!
|
|
566
|
+
*/
|
|
567
|
+
--ds-color-base-navy-800: #265688;
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* // Base value for token support; should not use in code!
|
|
571
|
+
*/
|
|
572
|
+
--ds-color-base-navy-900: #194069;
|
|
573
|
+
/**
|
|
574
|
+
*
|
|
575
|
+
* // Base value for token support; should not use in code!
|
|
576
|
+
*/
|
|
577
|
+
--ds-color-base-navy-1000: #0e2b4f;
|
|
578
|
+
/**
|
|
579
|
+
*
|
|
580
|
+
* // Base value for token support; should not use in code!
|
|
581
|
+
*/
|
|
582
|
+
--ds-color-base-neutral-100: #f7f8fa;
|
|
583
|
+
/**
|
|
584
|
+
*
|
|
585
|
+
* // Base value for token support; should not use in code!
|
|
586
|
+
*/
|
|
587
|
+
--ds-color-base-neutral-200: #e4e8ec;
|
|
588
|
+
/**
|
|
589
|
+
*
|
|
590
|
+
* // Base value for token support; should not use in code!
|
|
591
|
+
*/
|
|
592
|
+
--ds-color-base-neutral-300: #ccd2db;
|
|
593
|
+
/**
|
|
594
|
+
*
|
|
595
|
+
* // Base value for token support; should not use in code!
|
|
596
|
+
*/
|
|
597
|
+
--ds-color-base-neutral-400: #afb9c6;
|
|
598
|
+
/**
|
|
599
|
+
*
|
|
600
|
+
* // Base value for token support; should not use in code!
|
|
601
|
+
*/
|
|
602
|
+
--ds-color-base-neutral-500: #939fad;
|
|
603
|
+
/**
|
|
604
|
+
*
|
|
605
|
+
* // Base value for token support; should not use in code!
|
|
606
|
+
*/
|
|
607
|
+
--ds-color-base-neutral-600: #7e8894;
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
* // Base value for token support; should not use in code!
|
|
611
|
+
*/
|
|
612
|
+
--ds-color-base-neutral-700: #6a717c;
|
|
613
|
+
/**
|
|
614
|
+
*
|
|
615
|
+
* // Base value for token support; should not use in code!
|
|
616
|
+
*/
|
|
617
|
+
--ds-color-base-neutral-800: #585e67;
|
|
618
|
+
/**
|
|
619
|
+
*
|
|
620
|
+
* // Base value for token support; should not use in code!
|
|
621
|
+
*/
|
|
622
|
+
--ds-color-base-neutral-900: #484d55;
|
|
623
|
+
/**
|
|
624
|
+
*
|
|
625
|
+
* // Base value for token support; should not use in code!
|
|
626
|
+
*/
|
|
627
|
+
--ds-color-base-neutral-1000: #393d43;
|
|
628
|
+
/**
|
|
629
|
+
*
|
|
630
|
+
* // Base value for token support; should not use in code!
|
|
631
|
+
*/
|
|
632
|
+
--ds-color-base-pink-100: #fff7f8;
|
|
633
|
+
/**
|
|
634
|
+
*
|
|
635
|
+
* // Base value for token support; should not use in code!
|
|
636
|
+
*/
|
|
637
|
+
--ds-color-base-pink-200: #fde0e6;
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* // Base value for token support; should not use in code!
|
|
641
|
+
*/
|
|
642
|
+
--ds-color-base-pink-300: #fcc2ce;
|
|
643
|
+
/**
|
|
644
|
+
*
|
|
645
|
+
* // Base value for token support; should not use in code!
|
|
646
|
+
*/
|
|
647
|
+
--ds-color-base-pink-400: #fa9db0;
|
|
648
|
+
/**
|
|
649
|
+
*
|
|
650
|
+
* // Base value for token support; should not use in code!
|
|
651
|
+
*/
|
|
652
|
+
--ds-color-base-pink-500: #f7738e;
|
|
653
|
+
/**
|
|
654
|
+
*
|
|
655
|
+
* // Base value for token support; should not use in code!
|
|
656
|
+
*/
|
|
657
|
+
--ds-color-base-pink-600: #e45472;
|
|
658
|
+
/**
|
|
659
|
+
*
|
|
660
|
+
* // Base value for token support; should not use in code!
|
|
661
|
+
*/
|
|
662
|
+
--ds-color-base-pink-700: #bf475f;
|
|
663
|
+
/**
|
|
664
|
+
*
|
|
665
|
+
* // Base value for token support; should not use in code!
|
|
666
|
+
*/
|
|
667
|
+
--ds-color-base-pink-800: #a03b50;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* // Base value for token support; should not use in code!
|
|
671
|
+
*/
|
|
672
|
+
--ds-color-base-pink-900: #833142;
|
|
673
|
+
/**
|
|
674
|
+
*
|
|
675
|
+
* // Base value for token support; should not use in code!
|
|
676
|
+
*/
|
|
677
|
+
--ds-color-base-pink-1000: #692734;
|
|
678
|
+
/**
|
|
679
|
+
*
|
|
680
|
+
* // Base value for token support; should not use in code!
|
|
681
|
+
*/
|
|
682
|
+
--ds-color-base-purple-100: #fbf8fe;
|
|
683
|
+
/**
|
|
684
|
+
*
|
|
685
|
+
* // Base value for token support; should not use in code!
|
|
686
|
+
*/
|
|
687
|
+
--ds-color-base-purple-200: #ede3fd;
|
|
688
|
+
/**
|
|
689
|
+
*
|
|
690
|
+
* // Base value for token support; should not use in code!
|
|
691
|
+
*/
|
|
692
|
+
--ds-color-base-purple-300: #ddc9fb;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* // Base value for token support; should not use in code!
|
|
696
|
+
*/
|
|
697
|
+
--ds-color-base-purple-400: #c9a9f8;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* // Base value for token support; should not use in code!
|
|
701
|
+
*/
|
|
702
|
+
--ds-color-base-purple-500: #b588f5;
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* // Base value for token support; should not use in code!
|
|
706
|
+
*/
|
|
707
|
+
--ds-color-base-purple-600: #a268f3;
|
|
708
|
+
/**
|
|
709
|
+
*
|
|
710
|
+
* // Base value for token support; should not use in code!
|
|
711
|
+
*/
|
|
712
|
+
--ds-color-base-purple-700: #8d47f0;
|
|
713
|
+
/**
|
|
714
|
+
*
|
|
715
|
+
* // Base value for token support; should not use in code!
|
|
716
|
+
*/
|
|
717
|
+
--ds-color-base-purple-800: #7633d7;
|
|
718
|
+
/**
|
|
719
|
+
*
|
|
720
|
+
* // Base value for token support; should not use in code!
|
|
721
|
+
*/
|
|
722
|
+
--ds-color-base-purple-900: #622ab2;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* // Base value for token support; should not use in code!
|
|
726
|
+
*/
|
|
727
|
+
--ds-color-base-purple-1000: #4e228d;
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* // Base value for token support; should not use in code!
|
|
731
|
+
*/
|
|
732
|
+
--ds-color-base-red-100: #fef7f5;
|
|
733
|
+
/**
|
|
734
|
+
*
|
|
735
|
+
* // Base value for token support; should not use in code!
|
|
736
|
+
*/
|
|
737
|
+
--ds-color-base-red-200: #fae2da;
|
|
738
|
+
/**
|
|
739
|
+
*
|
|
740
|
+
* // Base value for token support; should not use in code!
|
|
741
|
+
*/
|
|
742
|
+
--ds-color-base-red-300: #f5c7b8;
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* // Base value for token support; should not use in code!
|
|
746
|
+
*/
|
|
747
|
+
--ds-color-base-red-400: #f0a68d;
|
|
748
|
+
/**
|
|
749
|
+
*
|
|
750
|
+
* // Base value for token support; should not use in code!
|
|
751
|
+
*/
|
|
752
|
+
--ds-color-base-red-500: #e9815e;
|
|
753
|
+
/**
|
|
754
|
+
*
|
|
755
|
+
* // Base value for token support; should not use in code!
|
|
756
|
+
*/
|
|
757
|
+
--ds-color-base-red-600: #e35c2f;
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* // Base value for token support; should not use in code!
|
|
761
|
+
*/
|
|
762
|
+
--ds-color-base-red-700: #d03a08;
|
|
763
|
+
/**
|
|
764
|
+
*
|
|
765
|
+
* // Base value for token support; should not use in code!
|
|
766
|
+
*/
|
|
767
|
+
--ds-color-base-red-800: #ae3007;
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* // Base value for token support; should not use in code!
|
|
771
|
+
*/
|
|
772
|
+
--ds-color-base-red-900: #902806;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* // Base value for token support; should not use in code!
|
|
776
|
+
*/
|
|
777
|
+
--ds-color-base-red-1000: #732005;
|
|
778
|
+
/**
|
|
779
|
+
*
|
|
780
|
+
* // Base value for token support; should not use in code!
|
|
781
|
+
*/
|
|
782
|
+
--ds-color-base-success-100: #eef8f5;
|
|
783
|
+
/**
|
|
784
|
+
*
|
|
785
|
+
* // Base value for token support; should not use in code!
|
|
786
|
+
*/
|
|
787
|
+
--ds-color-base-success-200: #8eceb9;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* // Base value for token support; should not use in code!
|
|
791
|
+
*/
|
|
792
|
+
--ds-color-base-success-300: #40a080;
|
|
793
|
+
/**
|
|
794
|
+
*
|
|
795
|
+
* // Base value for token support; should not use in code!
|
|
796
|
+
*/
|
|
797
|
+
--ds-color-base-success-400: #0b6f4d;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* // Base value for token support; should not use in code!
|
|
801
|
+
*/
|
|
802
|
+
--ds-color-base-success-500: #173c30;
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* // Base value for token support; should not use in code!
|
|
806
|
+
*/
|
|
807
|
+
--ds-color-base-turquoise-100: #f7fafa;
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* // Base value for token support; should not use in code!
|
|
811
|
+
*/
|
|
812
|
+
--ds-color-base-turquoise-200: #dfe9ea;
|
|
813
|
+
/**
|
|
814
|
+
*
|
|
815
|
+
* // Base value for token support; should not use in code!
|
|
816
|
+
*/
|
|
817
|
+
--ds-color-base-turquoise-300: #c2d5d6;
|
|
818
|
+
/**
|
|
819
|
+
*
|
|
820
|
+
* // Base value for token support; should not use in code!
|
|
821
|
+
*/
|
|
822
|
+
--ds-color-base-turquoise-400: #9fbdbe;
|
|
823
|
+
/**
|
|
824
|
+
*
|
|
825
|
+
* // Base value for token support; should not use in code!
|
|
826
|
+
*/
|
|
827
|
+
--ds-color-base-turquoise-500: #7ba5a6;
|
|
828
|
+
/**
|
|
829
|
+
*
|
|
830
|
+
* // Base value for token support; should not use in code!
|
|
831
|
+
*/
|
|
832
|
+
--ds-color-base-turquoise-600: #5c8f91;
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* // Base value for token support; should not use in code!
|
|
836
|
+
*/
|
|
837
|
+
--ds-color-base-turquoise-700: #3d7a7d;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* // Base value for token support; should not use in code!
|
|
841
|
+
*/
|
|
842
|
+
--ds-color-base-turquoise-800: #21686a;
|
|
843
|
+
/**
|
|
844
|
+
*
|
|
845
|
+
* // Base value for token support; should not use in code!
|
|
846
|
+
*/
|
|
847
|
+
--ds-color-base-turquoise-900: #085659;
|
|
848
|
+
/**
|
|
849
|
+
*
|
|
850
|
+
* // Base value for token support; should not use in code!
|
|
851
|
+
*/
|
|
852
|
+
--ds-color-base-turquoise-1000: #004447;
|
|
853
|
+
/**
|
|
854
|
+
*
|
|
855
|
+
* // Base value for token support; should not use in code!
|
|
856
|
+
*/
|
|
857
|
+
--ds-color-base-yellow-100: #fff9df;
|
|
858
|
+
/**
|
|
859
|
+
*
|
|
860
|
+
* // Base value for token support; should not use in code!
|
|
861
|
+
*/
|
|
862
|
+
--ds-color-base-yellow-200: #ffe87e;
|
|
863
|
+
/**
|
|
864
|
+
*
|
|
865
|
+
* // Base value for token support; should not use in code!
|
|
866
|
+
*/
|
|
867
|
+
--ds-color-base-yellow-300: #f9ce06;
|
|
868
|
+
/**
|
|
869
|
+
*
|
|
870
|
+
* // Base value for token support; should not use in code!
|
|
871
|
+
*/
|
|
872
|
+
--ds-color-base-yellow-400: #d6b622;
|
|
873
|
+
/**
|
|
874
|
+
*
|
|
875
|
+
* // Base value for token support; should not use in code!
|
|
876
|
+
*/
|
|
877
|
+
--ds-color-base-yellow-500: #b49d35;
|
|
878
|
+
/**
|
|
879
|
+
*
|
|
880
|
+
* // Base value for token support; should not use in code!
|
|
881
|
+
*/
|
|
882
|
+
--ds-color-base-yellow-600: #96873e;
|
|
883
|
+
/**
|
|
884
|
+
*
|
|
885
|
+
* // Base value for token support; should not use in code!
|
|
886
|
+
*/
|
|
887
|
+
--ds-color-base-yellow-700: #7c7140;
|
|
888
|
+
/**
|
|
889
|
+
*
|
|
890
|
+
* // Base value for token support; should not use in code!
|
|
891
|
+
*/
|
|
892
|
+
--ds-color-base-yellow-800: #665e3d;
|
|
893
|
+
/**
|
|
894
|
+
*
|
|
895
|
+
* // Base value for token support; should not use in code!
|
|
896
|
+
*/
|
|
897
|
+
--ds-color-base-yellow-900: #524e38;
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* // Base value for token support; should not use in code!
|
|
901
|
+
*/
|
|
902
|
+
--ds-color-base-yellow-1000: #403d30;
|
|
903
|
+
/**
|
|
904
|
+
*
|
|
905
|
+
* // Base value for token support; should not use in code!
|
|
906
|
+
*/
|
|
907
|
+
--ds-color-base-warning-100: #fef8e9;
|
|
908
|
+
/**
|
|
909
|
+
*
|
|
910
|
+
* // Base value for token support; should not use in code!
|
|
911
|
+
*/
|
|
912
|
+
--ds-color-base-warning-200: #f2c153;
|
|
913
|
+
/**
|
|
914
|
+
*
|
|
915
|
+
* // Base value for token support; should not use in code!
|
|
916
|
+
*/
|
|
917
|
+
--ds-color-base-warning-300: #c49432;
|
|
918
|
+
/**
|
|
919
|
+
*
|
|
920
|
+
* // Base value for token support; should not use in code!
|
|
921
|
+
*/
|
|
922
|
+
--ds-color-base-warning-400: #8e6b22;
|
|
923
|
+
/**
|
|
924
|
+
*
|
|
925
|
+
* // Base value for token support; should not use in code!
|
|
926
|
+
*/
|
|
927
|
+
--ds-color-base-warning-500: #5d4514;
|
|
928
|
+
--ds-color-state-error-100: #ff999b;
|
|
929
|
+
--ds-color-state-error-500: #df0b37;
|
|
930
|
+
--ds-color-state-success-100: #69cf96;
|
|
931
|
+
--ds-color-state-success-500: #00805d;
|
|
932
|
+
--ds-color-state-warning-500: #de750c;
|
|
933
|
+
--ds-color-border-primary-default: #585e67;
|
|
934
|
+
--ds-color-border-primary-inverse: #afb9c6;
|
|
935
|
+
--ds-color-border-secondary-default: #939fad;
|
|
936
|
+
--ds-color-border-secondary-inverse: #7e8894;
|
|
937
|
+
--ds-color-border-tertiary-default: #dddddd;
|
|
938
|
+
--ds-color-border-tertiary-inverse: #676767;
|
|
939
|
+
--ds-color-border-error-default: #cc1816;
|
|
940
|
+
--ds-color-border-error-inverse: #f9aca6;
|
|
941
|
+
--ds-color-border-divider-default: rgba(0, 0, 0, 0.06);
|
|
942
|
+
--ds-color-border-divider-inverse: rgba(255, 255, 255, 0.06);
|
|
943
|
+
--ds-color-border-subtle-default: #f0f7fd;
|
|
944
|
+
--ds-color-border-subtle-inverse: #326aa5;
|
|
945
|
+
--ds-color-border-emphasis-default: #194069;
|
|
946
|
+
--ds-color-border-emphasis-inverse: #f2d7fb;
|
|
947
|
+
--ds-color-border-accent-default: #badd81;
|
|
948
|
+
--ds-color-border-accent-inverse: #a2c270;
|
|
949
|
+
--ds-color-border-success-default: #0b6f4d;
|
|
950
|
+
--ds-color-border-success-inverse: #8eceb9;
|
|
951
|
+
--ds-color-border-warning-default: #fef8e9;
|
|
952
|
+
--ds-color-border-warning-inverse: #f2c153;
|
|
953
|
+
--ds-color-border-info-default: #326aa5;
|
|
954
|
+
--ds-color-border-info-inverse: #89b2d4;
|
|
955
|
+
--ds-color-border-ui-default-default: #2c67b5;
|
|
956
|
+
--ds-color-border-ui-default-inverse: #56bbde;
|
|
957
|
+
--ds-color-border-ui-hover-default: #193d73;
|
|
958
|
+
--ds-color-border-ui-hover-inverse: #a8e9f7;
|
|
959
|
+
--ds-color-border-ui-active-default: #225296;
|
|
960
|
+
--ds-color-border-ui-active-inverse: #6ad5ef;
|
|
961
|
+
--ds-color-border-ui-focus-default: #2c67b5;
|
|
962
|
+
--ds-color-border-ui-focus-inverse: #56bbde;
|
|
963
|
+
--ds-color-border-ui-disabled-default: #adadad;
|
|
964
|
+
--ds-color-border-ui-disabled-inverse: #7e7e7e;
|
|
965
|
+
--ds-color-border-active-default: #0074c8;
|
|
966
|
+
--ds-color-border-active-inverse: #00cff0;
|
|
967
|
+
--ds-color-border-disabled-default: #dddddd;
|
|
968
|
+
--ds-color-border-focus-default: #959595;
|
|
969
|
+
/**
|
|
970
|
+
*
|
|
971
|
+
* // Please consider descriptive token prior to using brand token
|
|
972
|
+
*/
|
|
973
|
+
--ds-color-brand-neutral-100: #f7f8fa;
|
|
974
|
+
/**
|
|
975
|
+
*
|
|
976
|
+
* // Please consider descriptive token prior to using brand token
|
|
977
|
+
*/
|
|
978
|
+
--ds-color-brand-neutral-200: #e4e8ec;
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
* // Please consider descriptive token prior to using brand token
|
|
982
|
+
*/
|
|
983
|
+
--ds-color-brand-neutral-300: #ccd2db;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* // Please consider descriptive token prior to using brand token
|
|
987
|
+
*/
|
|
988
|
+
--ds-color-brand-neutral-400: #afb9c6;
|
|
989
|
+
/**
|
|
990
|
+
*
|
|
991
|
+
* // Please consider descriptive token prior to using brand token
|
|
992
|
+
*/
|
|
993
|
+
--ds-color-brand-neutral-500: #939fad;
|
|
994
|
+
/**
|
|
995
|
+
*
|
|
996
|
+
* // Please consider descriptive token prior to using brand token
|
|
997
|
+
*/
|
|
998
|
+
--ds-color-brand-neutral-600: #7e8894;
|
|
999
|
+
/**
|
|
1000
|
+
*
|
|
1001
|
+
* // Please consider descriptive token prior to using brand token
|
|
1002
|
+
*/
|
|
1003
|
+
--ds-color-brand-neutral-700: #6a717c;
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* // Please consider descriptive token prior to using brand token
|
|
1007
|
+
*/
|
|
1008
|
+
--ds-color-brand-neutral-800: #585e67;
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* // Please consider descriptive token prior to using brand token
|
|
1012
|
+
*/
|
|
1013
|
+
--ds-color-brand-neutral-900: #484d55;
|
|
1014
|
+
/**
|
|
1015
|
+
*
|
|
1016
|
+
* // Please consider descriptive token prior to using brand token
|
|
1017
|
+
*/
|
|
1018
|
+
--ds-color-brand-neutral-1000: #393d43;
|
|
1019
|
+
/**
|
|
1020
|
+
*
|
|
1021
|
+
* // Please consider descriptive token prior to using brand token
|
|
1022
|
+
*/
|
|
1023
|
+
--ds-color-brand-gray-100: #f7f7f7;
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* // Please consider descriptive token prior to using brand token
|
|
1027
|
+
*/
|
|
1028
|
+
--ds-color-brand-gray-200: #dddddd;
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* // Please consider descriptive token prior to using brand token
|
|
1032
|
+
*/
|
|
1033
|
+
--ds-color-brand-gray-300: #c5c5c5;
|
|
1034
|
+
/**
|
|
1035
|
+
*
|
|
1036
|
+
* // Please consider descriptive token prior to using brand token
|
|
1037
|
+
*/
|
|
1038
|
+
--ds-color-brand-gray-400: #adadad;
|
|
1039
|
+
/**
|
|
1040
|
+
*
|
|
1041
|
+
* // Please consider descriptive token prior to using brand token
|
|
1042
|
+
*/
|
|
1043
|
+
--ds-color-brand-gray-500: #959595;
|
|
1044
|
+
/**
|
|
1045
|
+
*
|
|
1046
|
+
* // Please consider descriptive token prior to using brand token
|
|
1047
|
+
*/
|
|
1048
|
+
--ds-color-brand-gray-600: #7e7e7e;
|
|
1049
|
+
/**
|
|
1050
|
+
*
|
|
1051
|
+
* // Please consider descriptive token prior to using brand token
|
|
1052
|
+
*/
|
|
1053
|
+
--ds-color-brand-gray-700: #676767;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* // Please consider descriptive token prior to using brand token
|
|
1057
|
+
*/
|
|
1058
|
+
--ds-color-brand-gray-800: #525252;
|
|
1059
|
+
/**
|
|
1060
|
+
*
|
|
1061
|
+
* // Please consider descriptive token prior to using brand token
|
|
1062
|
+
*/
|
|
1063
|
+
--ds-color-brand-gray-900: #3d3d3d;
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* // Please consider descriptive token prior to using brand token
|
|
1067
|
+
*/
|
|
1068
|
+
--ds-color-brand-gray-1000: #2a2a2a;
|
|
1069
|
+
/**
|
|
1070
|
+
*
|
|
1071
|
+
* // Please consider descriptive token prior to using brand token
|
|
1072
|
+
*/
|
|
1073
|
+
--ds-color-brand-red-100: #fef7f5;
|
|
1074
|
+
/**
|
|
1075
|
+
*
|
|
1076
|
+
* // Please consider descriptive token prior to using brand token
|
|
1077
|
+
*/
|
|
1078
|
+
--ds-color-brand-red-200: #fae2da;
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* // Please consider descriptive token prior to using brand token
|
|
1082
|
+
*/
|
|
1083
|
+
--ds-color-brand-red-300: #f5c7b8;
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* // Please consider descriptive token prior to using brand token
|
|
1087
|
+
*/
|
|
1088
|
+
--ds-color-brand-red-400: #f0a68d;
|
|
1089
|
+
/**
|
|
1090
|
+
*
|
|
1091
|
+
* // Please consider descriptive token prior to using brand token
|
|
1092
|
+
*/
|
|
1093
|
+
--ds-color-brand-red-500: #e9815e;
|
|
1094
|
+
/**
|
|
1095
|
+
*
|
|
1096
|
+
* // Please consider descriptive token prior to using brand token
|
|
1097
|
+
*/
|
|
1098
|
+
--ds-color-brand-red-600: #e35c2f;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* // Please consider descriptive token prior to using brand token
|
|
1102
|
+
*/
|
|
1103
|
+
--ds-color-brand-red-700: #d03a08;
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* // Please consider descriptive token prior to using brand token
|
|
1107
|
+
*/
|
|
1108
|
+
--ds-color-brand-red-800: #ae3007;
|
|
1109
|
+
/**
|
|
1110
|
+
*
|
|
1111
|
+
* // Please consider descriptive token prior to using brand token
|
|
1112
|
+
*/
|
|
1113
|
+
--ds-color-brand-red-900: #902806;
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* // Please consider descriptive token prior to using brand token
|
|
1117
|
+
*/
|
|
1118
|
+
--ds-color-brand-red-1000: #732005;
|
|
1119
|
+
/**
|
|
1120
|
+
*
|
|
1121
|
+
* // Please consider descriptive token prior to using brand token
|
|
1122
|
+
*/
|
|
1123
|
+
--ds-color-brand-yellow-100: #fff9df;
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* // Please consider descriptive token prior to using brand token
|
|
1127
|
+
*/
|
|
1128
|
+
--ds-color-brand-yellow-200: #ffe87e;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* // Please consider descriptive token prior to using brand token
|
|
1132
|
+
*/
|
|
1133
|
+
--ds-color-brand-yellow-300: #f9ce06;
|
|
1134
|
+
/**
|
|
1135
|
+
*
|
|
1136
|
+
* // Please consider descriptive token prior to using brand token
|
|
1137
|
+
*/
|
|
1138
|
+
--ds-color-brand-yellow-400: #d6b622;
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* // Please consider descriptive token prior to using brand token
|
|
1142
|
+
*/
|
|
1143
|
+
--ds-color-brand-yellow-500: #b49d35;
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* // Please consider descriptive token prior to using brand token
|
|
1147
|
+
*/
|
|
1148
|
+
--ds-color-brand-yellow-600: #96873e;
|
|
1149
|
+
/**
|
|
1150
|
+
*
|
|
1151
|
+
* // Please consider descriptive token prior to using brand token
|
|
1152
|
+
*/
|
|
1153
|
+
--ds-color-brand-yellow-700: #7c7140;
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* // Please consider descriptive token prior to using brand token
|
|
1157
|
+
*/
|
|
1158
|
+
--ds-color-brand-yellow-800: #665e3d;
|
|
1159
|
+
/**
|
|
1160
|
+
*
|
|
1161
|
+
* // Please consider descriptive token prior to using brand token
|
|
1162
|
+
*/
|
|
1163
|
+
--ds-color-brand-yellow-900: #524e38;
|
|
1164
|
+
/**
|
|
1165
|
+
*
|
|
1166
|
+
* // Please consider descriptive token prior to using brand token
|
|
1167
|
+
*/
|
|
1168
|
+
--ds-color-brand-yellow-1000: #403d30;
|
|
1169
|
+
/**
|
|
1170
|
+
*
|
|
1171
|
+
* // Please consider descriptive token prior to using brand token
|
|
1172
|
+
*/
|
|
1173
|
+
--ds-color-brand-lime-100: #f5fbeb;
|
|
1174
|
+
/**
|
|
1175
|
+
*
|
|
1176
|
+
* // Please consider descriptive token prior to using brand token
|
|
1177
|
+
*/
|
|
1178
|
+
--ds-color-brand-lime-200: #d8efb4;
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* // Please consider descriptive token prior to using brand token
|
|
1182
|
+
*/
|
|
1183
|
+
--ds-color-brand-lime-300: #badd81;
|
|
1184
|
+
/**
|
|
1185
|
+
*
|
|
1186
|
+
* // Please consider descriptive token prior to using brand token
|
|
1187
|
+
*/
|
|
1188
|
+
--ds-color-brand-lime-400: #a2c270;
|
|
1189
|
+
/**
|
|
1190
|
+
*
|
|
1191
|
+
* // Please consider descriptive token prior to using brand token
|
|
1192
|
+
*/
|
|
1193
|
+
--ds-color-brand-lime-500: #8ca761;
|
|
1194
|
+
/**
|
|
1195
|
+
*
|
|
1196
|
+
* // Please consider descriptive token prior to using brand token
|
|
1197
|
+
*/
|
|
1198
|
+
--ds-color-brand-lime-600: #778f53;
|
|
1199
|
+
/**
|
|
1200
|
+
*
|
|
1201
|
+
* // Please consider descriptive token prior to using brand token
|
|
1202
|
+
*/
|
|
1203
|
+
--ds-color-brand-lime-700: #647845;
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* // Please consider descriptive token prior to using brand token
|
|
1207
|
+
*/
|
|
1208
|
+
--ds-color-brand-lime-800: #53643a;
|
|
1209
|
+
/**
|
|
1210
|
+
*
|
|
1211
|
+
* // Please consider descriptive token prior to using brand token
|
|
1212
|
+
*/
|
|
1213
|
+
--ds-color-brand-lime-900: #44522f;
|
|
1214
|
+
/**
|
|
1215
|
+
*
|
|
1216
|
+
* // Please consider descriptive token prior to using brand token
|
|
1217
|
+
*/
|
|
1218
|
+
--ds-color-brand-lime-1000: #364126;
|
|
1219
|
+
/**
|
|
1220
|
+
*
|
|
1221
|
+
* // Please consider descriptive token prior to using brand token
|
|
1222
|
+
*/
|
|
1223
|
+
--ds-color-brand-green-100: #f3faf7;
|
|
1224
|
+
/**
|
|
1225
|
+
*
|
|
1226
|
+
* // Please consider descriptive token prior to using brand token
|
|
1227
|
+
*/
|
|
1228
|
+
--ds-color-brand-green-200: #d4ece4;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* // Please consider descriptive token prior to using brand token
|
|
1232
|
+
*/
|
|
1233
|
+
--ds-color-brand-green-300: #addbca;
|
|
1234
|
+
/**
|
|
1235
|
+
*
|
|
1236
|
+
* // Please consider descriptive token prior to using brand token
|
|
1237
|
+
*/
|
|
1238
|
+
--ds-color-brand-green-400: #7ec6ac;
|
|
1239
|
+
/**
|
|
1240
|
+
*
|
|
1241
|
+
* // Please consider descriptive token prior to using brand token
|
|
1242
|
+
*/
|
|
1243
|
+
--ds-color-brand-green-500: #51ae8c;
|
|
1244
|
+
/**
|
|
1245
|
+
*
|
|
1246
|
+
* // Please consider descriptive token prior to using brand token
|
|
1247
|
+
*/
|
|
1248
|
+
--ds-color-brand-green-600: #459578;
|
|
1249
|
+
/**
|
|
1250
|
+
*
|
|
1251
|
+
* // Please consider descriptive token prior to using brand token
|
|
1252
|
+
*/
|
|
1253
|
+
--ds-color-brand-green-700: #3a7d64;
|
|
1254
|
+
/**
|
|
1255
|
+
*
|
|
1256
|
+
* // Please consider descriptive token prior to using brand token
|
|
1257
|
+
*/
|
|
1258
|
+
--ds-color-brand-green-800: #306854;
|
|
1259
|
+
/**
|
|
1260
|
+
*
|
|
1261
|
+
* // Please consider descriptive token prior to using brand token
|
|
1262
|
+
*/
|
|
1263
|
+
--ds-color-brand-green-900: #285545;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* // Please consider descriptive token prior to using brand token
|
|
1267
|
+
*/
|
|
1268
|
+
--ds-color-brand-green-1000: #1f4436;
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* // Please consider descriptive token prior to using brand token
|
|
1272
|
+
*/
|
|
1273
|
+
--ds-color-brand-turquoise-100: #f7fafa;
|
|
1274
|
+
/**
|
|
1275
|
+
*
|
|
1276
|
+
* // Please consider descriptive token prior to using brand token
|
|
1277
|
+
*/
|
|
1278
|
+
--ds-color-brand-turquoise-200: #dfe9ea;
|
|
1279
|
+
/**
|
|
1280
|
+
*
|
|
1281
|
+
* // Please consider descriptive token prior to using brand token
|
|
1282
|
+
*/
|
|
1283
|
+
--ds-color-brand-turquoise-300: #c2d5d6;
|
|
1284
|
+
/**
|
|
1285
|
+
*
|
|
1286
|
+
* // Please consider descriptive token prior to using brand token
|
|
177
1287
|
*/
|
|
178
|
-
--ds-color-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
--ds-color-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
--ds-color-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
--ds-color-
|
|
1288
|
+
--ds-color-brand-turquoise-400: #9fbdbe;
|
|
1289
|
+
/**
|
|
1290
|
+
*
|
|
1291
|
+
* // Please consider descriptive token prior to using brand token
|
|
1292
|
+
*/
|
|
1293
|
+
--ds-color-brand-turquoise-500: #7ba5a6;
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* // Please consider descriptive token prior to using brand token
|
|
1297
|
+
*/
|
|
1298
|
+
--ds-color-brand-turquoise-600: #5c8f91;
|
|
1299
|
+
/**
|
|
1300
|
+
*
|
|
1301
|
+
* // Please consider descriptive token prior to using brand token
|
|
1302
|
+
*/
|
|
1303
|
+
--ds-color-brand-turquoise-700: #3d7a7d;
|
|
1304
|
+
/**
|
|
1305
|
+
*
|
|
1306
|
+
* // Please consider descriptive token prior to using brand token
|
|
1307
|
+
*/
|
|
1308
|
+
--ds-color-brand-turquoise-800: #21686a;
|
|
1309
|
+
/**
|
|
1310
|
+
*
|
|
1311
|
+
* // Please consider descriptive token prior to using brand token
|
|
1312
|
+
*/
|
|
1313
|
+
--ds-color-brand-turquoise-900: #085659;
|
|
1314
|
+
/**
|
|
1315
|
+
*
|
|
1316
|
+
* // Please consider descriptive token prior to using brand token
|
|
1317
|
+
*/
|
|
1318
|
+
--ds-color-brand-turquoise-1000: #004447;
|
|
1319
|
+
/**
|
|
1320
|
+
*
|
|
1321
|
+
* // Please consider descriptive token prior to using brand token
|
|
1322
|
+
*/
|
|
1323
|
+
--ds-color-brand-cyan-100: #ebfafd;
|
|
1324
|
+
/**
|
|
1325
|
+
*
|
|
1326
|
+
* // Please consider descriptive token prior to using brand token
|
|
1327
|
+
*/
|
|
1328
|
+
--ds-color-brand-cyan-200: #a8e9f7;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* // Please consider descriptive token prior to using brand token
|
|
1332
|
+
*/
|
|
1333
|
+
--ds-color-brand-cyan-300: #6ad5ef;
|
|
1334
|
+
/**
|
|
1335
|
+
*
|
|
1336
|
+
* // Please consider descriptive token prior to using brand token
|
|
1337
|
+
*/
|
|
1338
|
+
--ds-color-brand-cyan-400: #56bbde;
|
|
1339
|
+
/**
|
|
1340
|
+
*
|
|
1341
|
+
* // Please consider descriptive token prior to using brand token
|
|
1342
|
+
*/
|
|
1343
|
+
--ds-color-brand-cyan-500: #4aa2c7;
|
|
1344
|
+
/**
|
|
1345
|
+
*
|
|
1346
|
+
* // Please consider descriptive token prior to using brand token
|
|
1347
|
+
*/
|
|
1348
|
+
--ds-color-brand-cyan-600: #3e89aa;
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* // Please consider descriptive token prior to using brand token
|
|
1352
|
+
*/
|
|
1353
|
+
--ds-color-brand-cyan-700: #32718e;
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* // Please consider descriptive token prior to using brand token
|
|
1357
|
+
*/
|
|
1358
|
+
--ds-color-brand-cyan-800: #275b72;
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* // Please consider descriptive token prior to using brand token
|
|
1362
|
+
*/
|
|
1363
|
+
--ds-color-brand-cyan-900: #1d4658;
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* // Please consider descriptive token prior to using brand token
|
|
1367
|
+
*/
|
|
1368
|
+
--ds-color-brand-cyan-1000: #12303d;
|
|
1369
|
+
/**
|
|
1370
|
+
*
|
|
1371
|
+
* // Please consider descriptive token prior to using brand token
|
|
1372
|
+
*/
|
|
1373
|
+
--ds-color-brand-blue-100: #f0f7fd;
|
|
1374
|
+
/**
|
|
1375
|
+
*
|
|
1376
|
+
* // Please consider descriptive token prior to using brand token
|
|
1377
|
+
*/
|
|
1378
|
+
--ds-color-brand-blue-200: #c9e0f7;
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* // Please consider descriptive token prior to using brand token
|
|
1382
|
+
*/
|
|
1383
|
+
--ds-color-brand-blue-300: #a0c9f1;
|
|
1384
|
+
/**
|
|
1385
|
+
*
|
|
1386
|
+
* // Please consider descriptive token prior to using brand token
|
|
1387
|
+
*/
|
|
1388
|
+
--ds-color-brand-blue-400: #79b2ec;
|
|
1389
|
+
/**
|
|
1390
|
+
*
|
|
1391
|
+
* // Please consider descriptive token prior to using brand token
|
|
1392
|
+
*/
|
|
1393
|
+
--ds-color-brand-blue-500: #5398e6;
|
|
1394
|
+
/**
|
|
1395
|
+
*
|
|
1396
|
+
* // Please consider descriptive token prior to using brand token
|
|
1397
|
+
*/
|
|
1398
|
+
--ds-color-brand-blue-600: #3b7fd2;
|
|
1399
|
+
/**
|
|
1400
|
+
*
|
|
1401
|
+
* // Please consider descriptive token prior to using brand token
|
|
1402
|
+
*/
|
|
1403
|
+
--ds-color-brand-blue-700: #2c67b5;
|
|
1404
|
+
/**
|
|
1405
|
+
*
|
|
1406
|
+
* // Please consider descriptive token prior to using brand token
|
|
1407
|
+
*/
|
|
1408
|
+
--ds-color-brand-blue-800: #225296;
|
|
1409
|
+
/**
|
|
1410
|
+
*
|
|
1411
|
+
* // Please consider descriptive token prior to using brand token
|
|
1412
|
+
*/
|
|
1413
|
+
--ds-color-brand-blue-900: #193d73;
|
|
1414
|
+
/**
|
|
1415
|
+
*
|
|
1416
|
+
* // Please consider descriptive token prior to using brand token
|
|
1417
|
+
*/
|
|
1418
|
+
--ds-color-brand-blue-1000: #102a51;
|
|
1419
|
+
/**
|
|
1420
|
+
*
|
|
1421
|
+
* // Please consider descriptive token prior to using brand token
|
|
1422
|
+
*/
|
|
1423
|
+
--ds-color-brand-navy-100: #f2d7fb;
|
|
1424
|
+
/**
|
|
1425
|
+
*
|
|
1426
|
+
* // Please consider descriptive token prior to using brand token
|
|
1427
|
+
*/
|
|
1428
|
+
--ds-color-brand-navy-200: #cfe0ef;
|
|
1429
|
+
/**
|
|
1430
|
+
*
|
|
1431
|
+
* // Please consider descriptive token prior to using brand token
|
|
1432
|
+
*/
|
|
1433
|
+
--ds-color-brand-navy-300: #acc9e2;
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* // Please consider descriptive token prior to using brand token
|
|
1437
|
+
*/
|
|
1438
|
+
--ds-color-brand-navy-400: #89b2d4;
|
|
1439
|
+
/**
|
|
1440
|
+
*
|
|
1441
|
+
* // Please consider descriptive token prior to using brand token
|
|
1442
|
+
*/
|
|
1443
|
+
--ds-color-brand-navy-500: #6899c6;
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* // Please consider descriptive token prior to using brand token
|
|
1447
|
+
*/
|
|
1448
|
+
--ds-color-brand-navy-600: #4a82b7;
|
|
1449
|
+
/**
|
|
1450
|
+
*
|
|
1451
|
+
* // Please consider descriptive token prior to using brand token
|
|
1452
|
+
*/
|
|
1453
|
+
--ds-color-brand-navy-700: #326aa5;
|
|
1454
|
+
/**
|
|
1455
|
+
*
|
|
1456
|
+
* // Please consider descriptive token prior to using brand token
|
|
1457
|
+
*/
|
|
1458
|
+
--ds-color-brand-navy-800: #265688;
|
|
1459
|
+
/**
|
|
1460
|
+
*
|
|
1461
|
+
* // Please consider descriptive token prior to using brand token
|
|
1462
|
+
*/
|
|
1463
|
+
--ds-color-brand-navy-900: #194069;
|
|
1464
|
+
/**
|
|
1465
|
+
*
|
|
1466
|
+
* // Please consider descriptive token prior to using brand token
|
|
1467
|
+
*/
|
|
1468
|
+
--ds-color-brand-navy-1000: #0e2b4f;
|
|
1469
|
+
/**
|
|
1470
|
+
*
|
|
1471
|
+
* // Please consider descriptive token prior to using brand token
|
|
1472
|
+
*/
|
|
1473
|
+
--ds-color-brand-purple-100: #fbf8fe;
|
|
1474
|
+
/**
|
|
1475
|
+
*
|
|
1476
|
+
* // Please consider descriptive token prior to using brand token
|
|
1477
|
+
*/
|
|
1478
|
+
--ds-color-brand-purple-200: #ede3fd;
|
|
1479
|
+
/**
|
|
1480
|
+
*
|
|
1481
|
+
* // Please consider descriptive token prior to using brand token
|
|
1482
|
+
*/
|
|
1483
|
+
--ds-color-brand-purple-300: #ddc9fb;
|
|
1484
|
+
/**
|
|
1485
|
+
*
|
|
1486
|
+
* // Please consider descriptive token prior to using brand token
|
|
1487
|
+
*/
|
|
1488
|
+
--ds-color-brand-purple-400: #c9a9f8;
|
|
1489
|
+
/**
|
|
1490
|
+
*
|
|
1491
|
+
* // Please consider descriptive token prior to using brand token
|
|
1492
|
+
*/
|
|
1493
|
+
--ds-color-brand-purple-500: #b588f5;
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* // Please consider descriptive token prior to using brand token
|
|
1497
|
+
*/
|
|
1498
|
+
--ds-color-brand-purple-600: #a268f3;
|
|
1499
|
+
/**
|
|
1500
|
+
*
|
|
1501
|
+
* // Please consider descriptive token prior to using brand token
|
|
1502
|
+
*/
|
|
1503
|
+
--ds-color-brand-purple-700: #8d47f0;
|
|
1504
|
+
/**
|
|
1505
|
+
*
|
|
1506
|
+
* // Please consider descriptive token prior to using brand token
|
|
1507
|
+
*/
|
|
1508
|
+
--ds-color-brand-purple-800: #7633d7;
|
|
1509
|
+
/**
|
|
1510
|
+
*
|
|
1511
|
+
* // Please consider descriptive token prior to using brand token
|
|
1512
|
+
*/
|
|
1513
|
+
--ds-color-brand-purple-900: #622ab2;
|
|
1514
|
+
/**
|
|
1515
|
+
*
|
|
1516
|
+
* // Please consider descriptive token prior to using brand token
|
|
1517
|
+
*/
|
|
1518
|
+
--ds-color-brand-purple-1000: #4e228d;
|
|
1519
|
+
/**
|
|
1520
|
+
*
|
|
1521
|
+
* // Please consider descriptive token prior to using brand token
|
|
1522
|
+
*/
|
|
1523
|
+
--ds-color-brand-pink-100: #fff7f8;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* // Please consider descriptive token prior to using brand token
|
|
1527
|
+
*/
|
|
1528
|
+
--ds-color-brand-pink-200: #fde0e6;
|
|
1529
|
+
/**
|
|
1530
|
+
*
|
|
1531
|
+
* // Please consider descriptive token prior to using brand token
|
|
1532
|
+
*/
|
|
1533
|
+
--ds-color-brand-pink-300: #fcc2ce;
|
|
1534
|
+
/**
|
|
1535
|
+
*
|
|
1536
|
+
* // Please consider descriptive token prior to using brand token
|
|
1537
|
+
*/
|
|
1538
|
+
--ds-color-brand-pink-400: #fa9db0;
|
|
1539
|
+
/**
|
|
1540
|
+
*
|
|
1541
|
+
* // Please consider descriptive token prior to using brand token
|
|
1542
|
+
*/
|
|
1543
|
+
--ds-color-brand-pink-500: #f7738e;
|
|
1544
|
+
/**
|
|
1545
|
+
*
|
|
1546
|
+
* // Please consider descriptive token prior to using brand token
|
|
1547
|
+
*/
|
|
1548
|
+
--ds-color-brand-pink-600: #e45472;
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* // Please consider descriptive token prior to using brand token
|
|
1552
|
+
*/
|
|
1553
|
+
--ds-color-brand-pink-700: #bf475f;
|
|
1554
|
+
/**
|
|
1555
|
+
*
|
|
1556
|
+
* // Please consider descriptive token prior to using brand token
|
|
1557
|
+
*/
|
|
1558
|
+
--ds-color-brand-pink-800: #a03b50;
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* // Please consider descriptive token prior to using brand token
|
|
1562
|
+
*/
|
|
1563
|
+
--ds-color-brand-pink-900: #833142;
|
|
1564
|
+
/**
|
|
1565
|
+
*
|
|
1566
|
+
* // Please consider descriptive token prior to using brand token
|
|
1567
|
+
*/
|
|
1568
|
+
--ds-color-brand-pink-1000: #692734;
|
|
194
1569
|
/**
|
|
195
1570
|
*
|
|
196
1571
|
* // Please consider descriptive token prior to using brand token
|
|
@@ -241,6 +1616,7 @@
|
|
|
241
1616
|
* // Please consider descriptive token prior to using brand token
|
|
242
1617
|
*/
|
|
243
1618
|
--ds-color-brand-atlas-500: #054687;
|
|
1619
|
+
--ds-color-brand-atlas-400-opacity-20: rgba(0, 116, 200, 0.2); /* color brand atlas 400 @ 20% */
|
|
244
1620
|
/**
|
|
245
1621
|
*
|
|
246
1622
|
* // Please consider descriptive token prior to using brand token
|
|
@@ -266,6 +1642,7 @@
|
|
|
266
1642
|
* // Please consider descriptive token prior to using brand token
|
|
267
1643
|
*/
|
|
268
1644
|
--ds-color-brand-breeze-500: #0b5575;
|
|
1645
|
+
--ds-color-brand-breeze-300-opacity-30: rgba(0, 207, 240, 0.3); /* breeze 300 @ 30% */
|
|
269
1646
|
/**
|
|
270
1647
|
*
|
|
271
1648
|
* // Please consider descriptive token prior to using brand token
|
|
@@ -391,36 +1768,6 @@
|
|
|
391
1768
|
* // Please consider descriptive token prior to using brand token
|
|
392
1769
|
*/
|
|
393
1770
|
--ds-color-brand-goldcoast-500: #b88624;
|
|
394
|
-
/**
|
|
395
|
-
*
|
|
396
|
-
* // Please consider descriptive token prior to using brand token
|
|
397
|
-
*/
|
|
398
|
-
--ds-color-brand-neutral-100: #f9fbfc;
|
|
399
|
-
/**
|
|
400
|
-
*
|
|
401
|
-
* // Please consider descriptive token prior to using brand token
|
|
402
|
-
*/
|
|
403
|
-
--ds-color-brand-neutral-200: #e2eaef;
|
|
404
|
-
/**
|
|
405
|
-
*
|
|
406
|
-
* // Please consider descriptive token prior to using brand token
|
|
407
|
-
*/
|
|
408
|
-
--ds-color-brand-neutral-300: #cbd8e2;
|
|
409
|
-
/**
|
|
410
|
-
*
|
|
411
|
-
* // Please consider descriptive token prior to using brand token
|
|
412
|
-
*/
|
|
413
|
-
--ds-color-brand-neutral-400: #9fabbb;
|
|
414
|
-
/**
|
|
415
|
-
*
|
|
416
|
-
* // Please consider descriptive token prior to using brand token
|
|
417
|
-
*/
|
|
418
|
-
--ds-color-brand-neutral-500: #626b79;
|
|
419
|
-
--ds-color-brand-gray-100: #f8f8f8;
|
|
420
|
-
--ds-color-brand-gray-200: #dbdbdb;
|
|
421
|
-
--ds-color-brand-gray-300: #b2b2b2;
|
|
422
|
-
--ds-color-brand-gray-400: #767676;
|
|
423
|
-
--ds-color-brand-gray-500: #222222;
|
|
424
1771
|
--ds-color-brand-goldgray-100: #c5c1bf;
|
|
425
1772
|
--ds-color-brand-goldgray-200: #726e6c;
|
|
426
1773
|
--ds-color-brand-gold-100: #ccbc94;
|
|
@@ -428,30 +1775,161 @@
|
|
|
428
1775
|
--ds-color-brand-emerald: #139142;
|
|
429
1776
|
--ds-color-brand-sapphire: #015daa;
|
|
430
1777
|
--ds-color-brand-ruby: #a41d4a;
|
|
431
|
-
--ds-color-
|
|
432
|
-
--ds-color-
|
|
433
|
-
--ds-color-
|
|
1778
|
+
--ds-color-container-accent-default: #f5fbeb;
|
|
1779
|
+
--ds-color-container-accent-inverse: #badd81;
|
|
1780
|
+
--ds-color-container-emphasis-default: #ebfafd;
|
|
1781
|
+
--ds-color-container-emphasis-inverse: #6ad5ef;
|
|
1782
|
+
--ds-color-container-error-default: #fff4f4;
|
|
1783
|
+
--ds-color-container-error-inverse: #74110e;
|
|
1784
|
+
--ds-color-container-info-default: #f0f7fd;
|
|
1785
|
+
--ds-color-container-info-inverse: #193d73;
|
|
1786
|
+
--ds-color-container-primary-default: #ffffff;
|
|
1787
|
+
--ds-color-container-primary-inverse: #0e2b4f;
|
|
1788
|
+
--ds-color-container-secondary-default: #f7f7f7;
|
|
1789
|
+
--ds-color-container-secondary-inverse: #194069;
|
|
1790
|
+
--ds-color-container-subtle-default: #f7f8fa;
|
|
1791
|
+
--ds-color-container-subtle-inverse: #393d43;
|
|
1792
|
+
--ds-color-container-success-default: #eef8f5;
|
|
1793
|
+
--ds-color-container-success-inverse: #173c30;
|
|
1794
|
+
--ds-color-container-tertiary-default: rgba(0, 0, 0, 0.03);
|
|
1795
|
+
--ds-color-container-tertiary-inverse: rgba(255, 255, 255, 0.06);
|
|
1796
|
+
--ds-color-container-warning-default: #fef8e9;
|
|
1797
|
+
--ds-color-container-warning-inverse: #5d4514;
|
|
1798
|
+
--ds-color-container-ui-primary-active-default: #225296;
|
|
1799
|
+
--ds-color-container-ui-primary-active-inverse: #6ad5ef;
|
|
1800
|
+
--ds-color-container-ui-primary-default-default: #2c67b5;
|
|
1801
|
+
--ds-color-container-ui-primary-default-inverse: #56bbde;
|
|
1802
|
+
--ds-color-container-ui-primary-disabled-default: #a0c9f1;
|
|
1803
|
+
--ds-color-container-ui-primary-disabled-inverse: #275b72;
|
|
1804
|
+
--ds-color-container-ui-primary-focus-default: #2c67b5;
|
|
1805
|
+
--ds-color-container-ui-primary-focus-inverse: #56bbde;
|
|
1806
|
+
--ds-color-container-ui-primary-hover-default: #193d73;
|
|
1807
|
+
--ds-color-container-ui-primary-hover-inverse: #a8e9f7;
|
|
1808
|
+
--ds-color-container-ui-secondary-active-default: #f0f7fd;
|
|
1809
|
+
--ds-color-container-ui-secondary-active-inverse: rgba(255, 255, 255, 0.06);
|
|
1810
|
+
--ds-color-container-ui-secondary-default-default: #ffffff;
|
|
1811
|
+
--ds-color-container-ui-secondary-default-inverse: rgba(255, 255, 255, 0.03);
|
|
1812
|
+
--ds-color-container-ui-secondary-disabled-default: #f7f7f7;
|
|
1813
|
+
--ds-color-container-ui-secondary-disabled-inverse: rgba(255, 255, 255, 0.12);
|
|
1814
|
+
--ds-color-container-ui-secondary-focus-default: #ffffff;
|
|
1815
|
+
--ds-color-container-ui-secondary-focus-inverse: rgba(255, 255, 255, 0.03);
|
|
1816
|
+
--ds-color-container-ui-secondary-hover-default: rgba(0, 0, 0, 0.03);
|
|
1817
|
+
--ds-color-container-ui-secondary-hover-inverse: rgba(255, 255, 255, 0.12);
|
|
1818
|
+
--ds-color-container-ui-tertiary-active-default: rgba(0, 0, 0, 0.06);
|
|
1819
|
+
--ds-color-container-ui-tertiary-active-inverse: rgba(255, 255, 255, 0.06);
|
|
1820
|
+
--ds-color-container-ui-tertiary-default-default: rgba(0, 0, 0, 0.03);
|
|
1821
|
+
--ds-color-container-ui-tertiary-default-inverse: rgba(255, 255, 255, 0.12);
|
|
1822
|
+
--ds-color-container-ui-tertiary-disabled-default: rgba(0, 0, 0, 0.03);
|
|
1823
|
+
--ds-color-container-ui-tertiary-disabled-inverse: rgba(255, 255, 255, 0.03);
|
|
1824
|
+
--ds-color-container-ui-tertiary-focus-default: rgba(0, 0, 0, 0.03);
|
|
1825
|
+
--ds-color-container-ui-tertiary-focus-inverse: rgba(255, 255, 255, 0.12);
|
|
1826
|
+
--ds-color-container-ui-tertiary-hover-default: rgba(0, 0, 0, 0.12);
|
|
1827
|
+
--ds-color-container-ui-tertiary-hover-inverse: rgba(255, 255, 255, 0.03);
|
|
1828
|
+
--ds-color-icon-primary-default: #676767;
|
|
1829
|
+
--ds-color-icon-primary-inverse: #f7f7f7;
|
|
1830
|
+
--ds-color-icon-secondary-default: #7e8894;
|
|
1831
|
+
--ds-color-icon-secondary-inverse: #ccd2db;
|
|
1832
|
+
--ds-color-icon-tertiary-default: #afb9c6;
|
|
1833
|
+
--ds-color-icon-tertiary-inverse: #939fad;
|
|
1834
|
+
--ds-color-icon-emphasis-default: #2a2a2a;
|
|
434
1835
|
--ds-color-icon-emphasis-inverse: #ffffff;
|
|
435
|
-
--ds-color-icon-accent-default: #
|
|
1836
|
+
--ds-color-icon-accent-default: #a2c270;
|
|
1837
|
+
--ds-color-icon-accent-inverse: #badd81;
|
|
1838
|
+
--ds-color-icon-info-default: #326aa5;
|
|
1839
|
+
--ds-color-icon-info-inverse: #89b2d4;
|
|
1840
|
+
--ds-color-icon-error-default: #cc1816;
|
|
1841
|
+
--ds-color-icon-error-inverse: #f9aca6;
|
|
1842
|
+
--ds-color-icon-warning-default: #fef8e9;
|
|
1843
|
+
--ds-color-icon-warning-inverse: #f2c153;
|
|
1844
|
+
--ds-color-icon-success-default: #eef8f5;
|
|
1845
|
+
--ds-color-icon-success-inverse: #8eceb9;
|
|
1846
|
+
--ds-color-icon-subtle-default: #a0c9f1;
|
|
1847
|
+
--ds-color-icon-subtle-inverse: #326aa5;
|
|
1848
|
+
--ds-color-icon-ui-default-default: #2c67b5;
|
|
1849
|
+
--ds-color-icon-ui-default-inverse: #56bbde;
|
|
1850
|
+
--ds-color-icon-ui-hover-default: #193d73;
|
|
1851
|
+
--ds-color-icon-ui-hover-inverse: #a8e9f7;
|
|
1852
|
+
--ds-color-icon-ui-active-default: #225296;
|
|
1853
|
+
--ds-color-icon-ui-active-inverse: #6ad5ef;
|
|
1854
|
+
--ds-color-icon-ui-disabled-default: #adadad;
|
|
1855
|
+
--ds-color-icon-ui-disabled-inverse: #7e7e7e;
|
|
1856
|
+
--ds-color-icon-ui-focus-default: #2c67b5;
|
|
1857
|
+
--ds-color-icon-ui-focus-inverse: #56bbde;
|
|
1858
|
+
--ds-color-icon-brand-red-default: #d03a08;
|
|
1859
|
+
--ds-color-icon-brand-red-inverse: #e9815e;
|
|
1860
|
+
--ds-color-icon-brand-yellow-default: #7c7140;
|
|
1861
|
+
--ds-color-icon-brand-yellow-inverse: #f9ce06;
|
|
1862
|
+
--ds-color-icon-brand-pink-default: #bf475f;
|
|
1863
|
+
--ds-color-icon-brand-pink-inverse: #f7738e;
|
|
1864
|
+
--ds-color-icon-brand-purple-default: #8d47f0;
|
|
1865
|
+
--ds-color-icon-brand-purple-inverse: #b588f5;
|
|
1866
|
+
--ds-color-icon-brand-lime-default: #647845;
|
|
1867
|
+
--ds-color-icon-brand-lime-inverse: #badd81;
|
|
1868
|
+
--ds-color-icon-brand-green-default: #3a7d64;
|
|
1869
|
+
--ds-color-icon-brand-green-inverse: #51ae8c;
|
|
1870
|
+
--ds-color-icon-brand-turquoise-default: #3d7a7d;
|
|
1871
|
+
--ds-color-icon-brand-turquoise-inverse: #7ba5a6;
|
|
1872
|
+
--ds-color-icon-brand-navy-default: #265688;
|
|
1873
|
+
--ds-color-icon-brand-navy-inverse: #6899c6;
|
|
1874
|
+
--ds-color-icon-brand-blue-default: #2c67b5;
|
|
1875
|
+
--ds-color-icon-brand-blue-inverse: #5398e6;
|
|
1876
|
+
--ds-color-icon-brand-cyan-default: #32718e;
|
|
1877
|
+
--ds-color-icon-brand-cyan-inverse: #6ad5ef;
|
|
1878
|
+
--ds-color-icon-brand-gray-default: #676767;
|
|
1879
|
+
--ds-color-icon-brand-gray-inverse: #c5c5c5;
|
|
1880
|
+
--ds-color-icon-brand-neutral-default: #6a717c;
|
|
1881
|
+
--ds-color-icon-brand-neutral-inverse: #afb9c6;
|
|
436
1882
|
--ds-color-icon-disabled-default: rgba(0, 0, 0, 0.15);
|
|
437
|
-
--ds-color-text-primary-default: #
|
|
1883
|
+
--ds-color-text-primary-default: #2a2a2a;
|
|
438
1884
|
--ds-color-text-primary-inverse: #ffffff;
|
|
439
|
-
--ds-color-text-secondary-default: #
|
|
440
|
-
--ds-color-text-secondary-inverse: #
|
|
1885
|
+
--ds-color-text-secondary-default: #525252;
|
|
1886
|
+
--ds-color-text-secondary-inverse: #dddddd;
|
|
1887
|
+
--ds-color-text-tertiary-default: #6a717c;
|
|
1888
|
+
--ds-color-text-tertiary-inverse: #525252;
|
|
1889
|
+
--ds-color-text-error-default: #cc1816;
|
|
1890
|
+
--ds-color-text-error-inverse: #f9aca6;
|
|
1891
|
+
--ds-color-text-disabled-default: #dddddd;
|
|
1892
|
+
--ds-color-text-emphasis-default: #265688;
|
|
1893
|
+
--ds-color-text-emphasis-inverse: #cfe0ef;
|
|
1894
|
+
--ds-color-text-accent-default: #647845;
|
|
1895
|
+
--ds-color-text-accent-inverse: #badd81;
|
|
1896
|
+
--ds-color-text-info-default: #326aa5;
|
|
1897
|
+
--ds-color-text-info-inverse: #acc9e2;
|
|
1898
|
+
--ds-color-text-subtle-default: #32718e;
|
|
1899
|
+
--ds-color-text-subtle-inverse: #56bbde;
|
|
1900
|
+
--ds-color-text-success-default: #0b6f4d;
|
|
1901
|
+
--ds-color-text-success-inverse: #0b6f4d;
|
|
1902
|
+
--ds-color-text-ui-active-default: #225296;
|
|
1903
|
+
--ds-color-text-ui-active-inverse: #6ad5ef;
|
|
1904
|
+
--ds-color-text-ui-default-default: #2c67b5;
|
|
1905
|
+
--ds-color-text-ui-default-inverse: #56bbde;
|
|
1906
|
+
--ds-color-text-ui-disabled-default: #adadad;
|
|
1907
|
+
--ds-color-text-ui-disabled-inverse: #7e7e7e;
|
|
1908
|
+
--ds-color-text-ui-focus-default: #2c67b5;
|
|
1909
|
+
--ds-color-text-ui-focus-inverse: #56bbde;
|
|
1910
|
+
--ds-color-text-ui-hover-default: #193d73;
|
|
1911
|
+
--ds-color-text-ui-hover-inverse: #a8e9f7;
|
|
441
1912
|
--ds-color-text-link-default: #0074c8;
|
|
442
1913
|
--ds-color-text-link-inverse: #00cff0;
|
|
443
|
-
--ds-color-text-error-default: #df0b37;
|
|
444
|
-
--ds-color-text-error-inverse: #ff999b;
|
|
445
|
-
--ds-color-text-disabled-default: #dbdbdb;
|
|
446
|
-
--ds-color-text-emphasis-default: #01426a;
|
|
447
|
-
--ds-color-text-emphasis-inverse: #c1daf0;
|
|
448
1914
|
--ds-color-tier-alaska-mvp-default: #726e6c;
|
|
449
1915
|
--ds-color-tier-alaska-mvp-inverse: #c5c1bf;
|
|
450
1916
|
--ds-color-tier-alaska-mvpgold-default: #7f682e;
|
|
451
|
-
--ds-color-tier-alaska-mvpgold-inverse: #
|
|
1917
|
+
--ds-color-tier-alaska-mvpgold-inverse: #c5c1bf;
|
|
1918
|
+
--ds-color-tier-alaska-mvpgold75k-default: #7f682e;
|
|
1919
|
+
--ds-color-tier-alaska-mvpgold75k-inverse: #c5c1bf;
|
|
1920
|
+
--ds-color-tier-alaska-mvpgold100k-default: #7f682e;
|
|
1921
|
+
--ds-color-tier-alaska-mvpgold100k-inverse: #c5c1bf;
|
|
1922
|
+
--ds-color-tier-fare-business-default: #005154;
|
|
1923
|
+
--ds-color-tier-fare-business-inverse: #9fbdbe;
|
|
1924
|
+
--ds-color-tier-fare-economy-default: #2c67b5;
|
|
1925
|
+
--ds-color-tier-fare-economy-inverse: #a0c9f1;
|
|
1926
|
+
--ds-color-tier-fare-first-class-default: #002c4e;
|
|
1927
|
+
--ds-color-tier-fare-first-class-inverse: #f7f7f7;
|
|
1928
|
+
--ds-color-tier-fare-saver-default: #4aa2c7;
|
|
1929
|
+
--ds-color-tier-fare-saver-inverse: #a8e9f7;
|
|
452
1930
|
--ds-color-tier-oneworld-emerald: #139142;
|
|
453
|
-
--ds-color-tier-oneworld-sapphire: #
|
|
454
|
-
--ds-color-tier-oneworld-ruby: #
|
|
1931
|
+
--ds-color-tier-oneworld-sapphire: #a41d4a;
|
|
1932
|
+
--ds-color-tier-oneworld-ruby: #015daa;
|
|
455
1933
|
--ds-color-ui-default-default: #0074c8;
|
|
456
1934
|
--ds-color-ui-default-inverse: #00cff0;
|
|
457
1935
|
--ds-color-ui-hover-default: #054687;
|