@aurodesignsystem/design-tokens 4.0.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.
Files changed (70) hide show
  1. package/CHANGELOG.md +573 -0
  2. package/LICENSE +201 -0
  3. package/README.md +97 -0
  4. package/dist/tokens/CSSCustomProperties--darkmode.css +302 -0
  5. package/dist/tokens/CSSCustomProperties.css +315 -0
  6. package/dist/tokens/CSSCustomPropertiesColorRGB--darkmode.css +155 -0
  7. package/dist/tokens/CSSCustomPropertiesColorRGB.css +168 -0
  8. package/dist/tokens/CSSOpacityProperties--darkmode.scss +10 -0
  9. package/dist/tokens/CSSOpacityProperties.scss +10 -0
  10. package/dist/tokens/CSSSizeCustomProperties--darkmode.css +20 -0
  11. package/dist/tokens/CSSSizeCustomProperties.css +20 -0
  12. package/dist/tokens/CSSVariables--darkmode.css +302 -0
  13. package/dist/tokens/CSSVariablesMapFlat--darkmode.css +368 -0
  14. package/dist/tokens/JSData--color.js +3665 -0
  15. package/dist/tokens/JSData--darkmodeColor.js +3254 -0
  16. package/dist/tokens/JSObject--allDarkTokens.js +7087 -0
  17. package/dist/tokens/JSObject--allTokens.js +7498 -0
  18. package/dist/tokens/JSObject--deprecated.js +2788 -0
  19. package/dist/tokens/JSObject--deprecatedDark.js +675 -0
  20. package/dist/tokens/JSVariables--color.js +166 -0
  21. package/dist/tokens/JSVariables--darkmodeColor.js +153 -0
  22. package/dist/tokens/SCSSOpacityVariables--darkmode.scss +7 -0
  23. package/dist/tokens/SCSSOpacityVariables.scss +7 -0
  24. package/dist/tokens/SCSSVariableMap--darkmode.scss +37 -0
  25. package/dist/tokens/SCSSVariableMap.scss +37 -0
  26. package/dist/tokens/SCSSVariables--darkmode.scss +299 -0
  27. package/dist/tokens/SCSSVariables.scss +312 -0
  28. package/dist/tokens/SCSSVariablesMapFlat--darkmode.scss +368 -0
  29. package/dist/tokens/SCSSVariablesMapFlat.scss +381 -0
  30. package/dist/tokens/SassCustomProperties--darkmode.scss +302 -0
  31. package/dist/tokens/SassCustomProperties.scss +315 -0
  32. package/dist/tokens/SassCustomPropertiesColorRGB--darkmode.scss +155 -0
  33. package/dist/tokens/SassCustomPropertiesColorRGB.scss +168 -0
  34. package/dist/tokens/SassSizeCustomProperties--darkmode.scss +20 -0
  35. package/dist/tokens/SassSizeCustomProperties.scss +20 -0
  36. package/package.json +92 -0
  37. package/packageScripts/postinstall.mjs +34 -0
  38. package/src/animation.json +21 -0
  39. package/src/asset/font.json +35 -0
  40. package/src/breakpoint.json +28 -0
  41. package/src/color/alert.json +175 -0
  42. package/src/color/background.json +38 -0
  43. package/src/color/base.json +140 -0
  44. package/src/color/border.json +214 -0
  45. package/src/color/brand.json +530 -0
  46. package/src/color/icon.json +150 -0
  47. package/src/color/text.json +237 -0
  48. package/src/color/tier.json +114 -0
  49. package/src/color/ui.json +165 -0
  50. package/src/color-darkmode/alert.json +56 -0
  51. package/src/color-darkmode/background.json +38 -0
  52. package/src/color-darkmode/base.json +140 -0
  53. package/src/color-darkmode/border.json +66 -0
  54. package/src/color-darkmode/brand.json +530 -0
  55. package/src/color-darkmode/icon.json +46 -0
  56. package/src/color-darkmode/text.json +66 -0
  57. package/src/color-darkmode/tier.json +54 -0
  58. package/src/color-darkmode/ui.json +57 -0
  59. package/src/comments.json +34 -0
  60. package/src/depth.json +29 -0
  61. package/src/elevation.json +22 -0
  62. package/src/grid-breakpoint.json +29 -0
  63. package/src/grid-column.json +29 -0
  64. package/src/grid-gutter.json +29 -0
  65. package/src/grid-margin.json +29 -0
  66. package/src/shadow.json +13 -0
  67. package/src/size/radius.json +9 -0
  68. package/src/size/scale.json +308 -0
  69. package/src/size/unitless-scale.json +82 -0
  70. package/src/text.json +572 -0
@@ -0,0 +1,3665 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Wed, 13 Sep 2023 17:26:39 GMT
4
+ */
5
+
6
+ module.exports = {
7
+ "color": {
8
+ "alert": {
9
+ "notification": {
10
+ "default": {
11
+ "value": "#0074c8",
12
+ "public": true,
13
+ "default": true,
14
+ "usage": "Notification color on light backgrounds",
15
+ "wcag": "AAA",
16
+ "deprecated": false,
17
+ "filePath": "./src/color/alert.json",
18
+ "isSource": true,
19
+ "original": {
20
+ "value": "{color.brand.atlas.400.value}",
21
+ "public": true,
22
+ "default": true,
23
+ "usage": "Notification color on light backgrounds",
24
+ "wcag": "AAA",
25
+ "deprecated": false
26
+ },
27
+ "name": "ds-color-alert-notification-default",
28
+ "attributes": {
29
+ "category": "color",
30
+ "type": "alert",
31
+ "item": "notification",
32
+ "subitem": "default"
33
+ },
34
+ "path": [
35
+ "color",
36
+ "alert",
37
+ "notification",
38
+ "default"
39
+ ]
40
+ }
41
+ },
42
+ "warning": {
43
+ "default": {
44
+ "value": "#de750c",
45
+ "public": true,
46
+ "default": true,
47
+ "usage": "Warning color on light backgrounds",
48
+ "wcag": "AAA",
49
+ "deprecated": false,
50
+ "filePath": "./src/color/alert.json",
51
+ "isSource": true,
52
+ "original": {
53
+ "value": "{color.state.warning.500.value}",
54
+ "public": true,
55
+ "default": true,
56
+ "usage": "Warning color on light backgrounds",
57
+ "wcag": "AAA",
58
+ "deprecated": false
59
+ },
60
+ "name": "ds-color-alert-warning-default",
61
+ "attributes": {
62
+ "category": "color",
63
+ "type": "alert",
64
+ "item": "warning",
65
+ "subitem": "default"
66
+ },
67
+ "path": [
68
+ "color",
69
+ "alert",
70
+ "warning",
71
+ "default"
72
+ ]
73
+ }
74
+ },
75
+ "error": {
76
+ "default": {
77
+ "value": "#df0b37",
78
+ "public": true,
79
+ "default": true,
80
+ "usage": "Error color on light backgrounds",
81
+ "wcag": "AAA",
82
+ "deprecated": false,
83
+ "filePath": "./src/color/alert.json",
84
+ "isSource": true,
85
+ "original": {
86
+ "value": "{color.state.error.500.value}",
87
+ "public": true,
88
+ "default": true,
89
+ "usage": "Error color on light backgrounds",
90
+ "wcag": "AAA",
91
+ "deprecated": false
92
+ },
93
+ "name": "ds-color-alert-error-default",
94
+ "attributes": {
95
+ "category": "color",
96
+ "type": "alert",
97
+ "item": "error",
98
+ "subitem": "default"
99
+ },
100
+ "path": [
101
+ "color",
102
+ "alert",
103
+ "error",
104
+ "default"
105
+ ]
106
+ }
107
+ },
108
+ "success": {
109
+ "default": {
110
+ "value": "#00805d",
111
+ "public": true,
112
+ "default": true,
113
+ "usage": "Success color on light backgrounds",
114
+ "wcag": "AAA",
115
+ "deprecated": false,
116
+ "filePath": "./src/color/alert.json",
117
+ "isSource": true,
118
+ "original": {
119
+ "value": "{color.state.success.500.value}",
120
+ "public": true,
121
+ "default": true,
122
+ "usage": "Success color on light backgrounds",
123
+ "wcag": "AAA",
124
+ "deprecated": false
125
+ },
126
+ "name": "ds-color-alert-success-default",
127
+ "attributes": {
128
+ "category": "color",
129
+ "type": "alert",
130
+ "item": "success",
131
+ "subitem": "default"
132
+ },
133
+ "path": [
134
+ "color",
135
+ "alert",
136
+ "success",
137
+ "default"
138
+ ]
139
+ }
140
+ },
141
+ "advisory": {
142
+ "default": {
143
+ "value": "#fff0cd",
144
+ "public": true,
145
+ "default": true,
146
+ "usage": "Travel advisory or system maintenance color on light backgrounds",
147
+ "wcag": "AAA",
148
+ "deprecated": false,
149
+ "filePath": "./src/color/alert.json",
150
+ "isSource": true,
151
+ "original": {
152
+ "value": "{color.brand.goldcoast.100.value}",
153
+ "public": true,
154
+ "default": true,
155
+ "usage": "Travel advisory or system maintenance color on light backgrounds",
156
+ "wcag": "AAA",
157
+ "deprecated": false
158
+ },
159
+ "name": "ds-color-alert-advisory-default",
160
+ "attributes": {
161
+ "category": "color",
162
+ "type": "alert",
163
+ "item": "advisory",
164
+ "subitem": "default"
165
+ },
166
+ "path": [
167
+ "color",
168
+ "alert",
169
+ "advisory",
170
+ "default"
171
+ ]
172
+ }
173
+ },
174
+ "bkgSuccess": {
175
+ "default": {
176
+ "value": "#ddf6e8",
177
+ "public": true,
178
+ "onLight": true,
179
+ "usage": "Background success color on light backgrounds",
180
+ "wcag": "AAA",
181
+ "deprecated": false,
182
+ "filePath": "./src/color/alert.json",
183
+ "isSource": true,
184
+ "original": {
185
+ "value": "DDF6E8",
186
+ "public": true,
187
+ "onLight": true,
188
+ "usage": "Background success color on light backgrounds",
189
+ "wcag": "AAA",
190
+ "deprecated": false
191
+ },
192
+ "name": "ds-color-alert-bkg-success-default",
193
+ "attributes": {
194
+ "category": "color",
195
+ "type": "alert",
196
+ "item": "bkgSuccess",
197
+ "subitem": "default"
198
+ },
199
+ "path": [
200
+ "color",
201
+ "alert",
202
+ "bkgSuccess",
203
+ "default"
204
+ ]
205
+ }
206
+ },
207
+ "bkgError": {
208
+ "default": {
209
+ "value": "#ffedf1",
210
+ "public": true,
211
+ "default": true,
212
+ "usage": "Background error color on light backgrounds",
213
+ "wcag": "AAA",
214
+ "deprecated": false,
215
+ "filePath": "./src/color/alert.json",
216
+ "isSource": true,
217
+ "original": {
218
+ "value": "FFEDF1",
219
+ "public": true,
220
+ "default": true,
221
+ "usage": "Background error color on light backgrounds",
222
+ "wcag": "AAA",
223
+ "deprecated": false
224
+ },
225
+ "name": "ds-color-alert-bkg-error-default",
226
+ "attributes": {
227
+ "category": "color",
228
+ "type": "alert",
229
+ "item": "bkgError",
230
+ "subitem": "default"
231
+ },
232
+ "path": [
233
+ "color",
234
+ "alert",
235
+ "bkgError",
236
+ "default"
237
+ ]
238
+ }
239
+ }
240
+ },
241
+ "background": {
242
+ "lightest": {
243
+ "value": "#ffffff",
244
+ "public": true,
245
+ "neutral": true,
246
+ "usage": "Used for creating light backgrounds",
247
+ "wcag": "n/a",
248
+ "deprecated": false,
249
+ "filePath": "./src/color/background.json",
250
+ "isSource": true,
251
+ "original": {
252
+ "value": "{color.base.white.value}",
253
+ "public": true,
254
+ "neutral": true,
255
+ "usage": "Used for creating light backgrounds",
256
+ "wcag": "n/a",
257
+ "deprecated": false
258
+ },
259
+ "name": "ds-color-background-lightest",
260
+ "attributes": {
261
+ "category": "color",
262
+ "type": "background",
263
+ "item": "lightest"
264
+ },
265
+ "path": [
266
+ "color",
267
+ "background",
268
+ "lightest"
269
+ ]
270
+ },
271
+ "lighter": {
272
+ "value": "#f8f8f8",
273
+ "public": true,
274
+ "neutral": true,
275
+ "usage": "Used for creating light backgrounds @ 90% white",
276
+ "wcag": "n/a",
277
+ "deprecated": false,
278
+ "filePath": "./src/color/background.json",
279
+ "isSource": true,
280
+ "original": {
281
+ "value": "{color.base.gray.100.value}",
282
+ "public": true,
283
+ "neutral": true,
284
+ "usage": "Used for creating light backgrounds @ 90% white",
285
+ "wcag": "n/a",
286
+ "deprecated": false
287
+ },
288
+ "name": "ds-color-background-lighter",
289
+ "attributes": {
290
+ "category": "color",
291
+ "type": "background",
292
+ "item": "lighter"
293
+ },
294
+ "path": [
295
+ "color",
296
+ "background",
297
+ "lighter"
298
+ ]
299
+ },
300
+ "darker": {
301
+ "value": "#01426a",
302
+ "public": true,
303
+ "neutral": true,
304
+ "usage": "Used for creating dark backgrounds",
305
+ "wcag": "n/a",
306
+ "deprecated": false,
307
+ "filePath": "./src/color/background.json",
308
+ "isSource": true,
309
+ "original": {
310
+ "value": "{color.brand.midnight.400.value}",
311
+ "public": true,
312
+ "neutral": true,
313
+ "usage": "Used for creating dark backgrounds",
314
+ "wcag": "n/a",
315
+ "deprecated": false
316
+ },
317
+ "name": "ds-color-background-darker",
318
+ "attributes": {
319
+ "category": "color",
320
+ "type": "background",
321
+ "item": "darker"
322
+ },
323
+ "path": [
324
+ "color",
325
+ "background",
326
+ "darker"
327
+ ]
328
+ },
329
+ "darkest": {
330
+ "value": "#00274a",
331
+ "public": true,
332
+ "neutral": true,
333
+ "usage": "Used for creating dark backgrounds @ 20% darker",
334
+ "wcag": "n/a",
335
+ "deprecated": false,
336
+ "filePath": "./src/color/background.json",
337
+ "isSource": true,
338
+ "original": {
339
+ "value": "{color.brand.midnight.500.value}",
340
+ "public": true,
341
+ "neutral": true,
342
+ "usage": "Used for creating dark backgrounds @ 20% darker",
343
+ "wcag": "n/a",
344
+ "deprecated": false
345
+ },
346
+ "name": "ds-color-background-darkest",
347
+ "attributes": {
348
+ "category": "color",
349
+ "type": "background",
350
+ "item": "darkest"
351
+ },
352
+ "path": [
353
+ "color",
354
+ "background",
355
+ "darkest"
356
+ ]
357
+ }
358
+ },
359
+ "base": {
360
+ "white": {
361
+ "value": "#ffffff",
362
+ "comment": "\n // Base value for token support; should not use in code!",
363
+ "public": true,
364
+ "deprecated": false,
365
+ "filePath": "./src/color/base.json",
366
+ "isSource": true,
367
+ "original": {
368
+ "value": "ffffff",
369
+ "comment": "{comments.color.base.value.comment}",
370
+ "public": true,
371
+ "deprecated": false
372
+ },
373
+ "name": "ds-color-base-white",
374
+ "attributes": {
375
+ "category": "color",
376
+ "type": "base",
377
+ "item": "white"
378
+ },
379
+ "path": [
380
+ "color",
381
+ "base",
382
+ "white"
383
+ ]
384
+ },
385
+ "white-opacity-40": {
386
+ "value": "rgba(255, 255, 255, 0.4)",
387
+ "comment": "white @ 40%",
388
+ "public": true,
389
+ "opacity": true,
390
+ "deprecated": false,
391
+ "filePath": "./src/color/base.json",
392
+ "isSource": true,
393
+ "original": {
394
+ "value": "ffffff66",
395
+ "comment": "white @ 40%",
396
+ "public": true,
397
+ "opacity": true,
398
+ "deprecated": false
399
+ },
400
+ "name": "ds-color-base-white-opacity-40",
401
+ "attributes": {
402
+ "category": "color",
403
+ "type": "base",
404
+ "item": "white-opacity-40"
405
+ },
406
+ "path": [
407
+ "color",
408
+ "base",
409
+ "white-opacity-40"
410
+ ]
411
+ },
412
+ "black": {
413
+ "value": "#000000",
414
+ "comment": "\n // Base value for token support; should not use in code!",
415
+ "public": true,
416
+ "deprecated": false,
417
+ "filePath": "./src/color/base.json",
418
+ "isSource": true,
419
+ "original": {
420
+ "value": "000000",
421
+ "comment": "{comments.color.base.value.comment}",
422
+ "public": true,
423
+ "deprecated": false
424
+ },
425
+ "name": "ds-color-base-black",
426
+ "attributes": {
427
+ "category": "color",
428
+ "type": "base",
429
+ "item": "black"
430
+ },
431
+ "path": [
432
+ "color",
433
+ "base",
434
+ "black"
435
+ ]
436
+ },
437
+ "black-opacity-15": {
438
+ "value": "rgba(0, 0, 0, 0.15)",
439
+ "comment": "black @ 15%",
440
+ "public": true,
441
+ "opacity": true,
442
+ "deprecated": false,
443
+ "filePath": "./src/color/base.json",
444
+ "isSource": true,
445
+ "original": {
446
+ "value": "00000026",
447
+ "comment": "black @ 15%",
448
+ "public": true,
449
+ "opacity": true,
450
+ "deprecated": false
451
+ },
452
+ "name": "ds-color-base-black-opacity-15",
453
+ "attributes": {
454
+ "category": "color",
455
+ "type": "base",
456
+ "item": "black-opacity-15"
457
+ },
458
+ "path": [
459
+ "color",
460
+ "base",
461
+ "black-opacity-15"
462
+ ]
463
+ }
464
+ },
465
+ "state": {
466
+ "error": {
467
+ "100": {
468
+ "value": "#ff999b",
469
+ "public": true,
470
+ "deprecated": false,
471
+ "filePath": "./src/color/base.json",
472
+ "isSource": true,
473
+ "original": {
474
+ "value": "ff999b",
475
+ "public": true,
476
+ "deprecated": false
477
+ },
478
+ "name": "ds-color-state-error-100",
479
+ "attributes": {
480
+ "category": "color",
481
+ "type": "state",
482
+ "item": "error",
483
+ "subitem": "100"
484
+ },
485
+ "path": [
486
+ "color",
487
+ "state",
488
+ "error",
489
+ "100"
490
+ ]
491
+ },
492
+ "500": {
493
+ "value": "#df0b37",
494
+ "public": true,
495
+ "deprecated": false,
496
+ "filePath": "./src/color/base.json",
497
+ "isSource": true,
498
+ "original": {
499
+ "value": "df0b37",
500
+ "public": true,
501
+ "deprecated": false
502
+ },
503
+ "name": "ds-color-state-error-500",
504
+ "attributes": {
505
+ "category": "color",
506
+ "type": "state",
507
+ "item": "error",
508
+ "subitem": "500"
509
+ },
510
+ "path": [
511
+ "color",
512
+ "state",
513
+ "error",
514
+ "500"
515
+ ]
516
+ }
517
+ },
518
+ "success": {
519
+ "100": {
520
+ "value": "#69cf96",
521
+ "public": true,
522
+ "deprecated": false,
523
+ "filePath": "./src/color/base.json",
524
+ "isSource": true,
525
+ "original": {
526
+ "value": "69cf96",
527
+ "public": true,
528
+ "deprecated": false
529
+ },
530
+ "name": "ds-color-state-success-100",
531
+ "attributes": {
532
+ "category": "color",
533
+ "type": "state",
534
+ "item": "success",
535
+ "subitem": "100"
536
+ },
537
+ "path": [
538
+ "color",
539
+ "state",
540
+ "success",
541
+ "100"
542
+ ]
543
+ },
544
+ "500": {
545
+ "value": "#00805d",
546
+ "public": true,
547
+ "deprecated": false,
548
+ "filePath": "./src/color/base.json",
549
+ "isSource": true,
550
+ "original": {
551
+ "value": "00805d",
552
+ "public": true,
553
+ "deprecated": false
554
+ },
555
+ "name": "ds-color-state-success-500",
556
+ "attributes": {
557
+ "category": "color",
558
+ "type": "state",
559
+ "item": "success",
560
+ "subitem": "500"
561
+ },
562
+ "path": [
563
+ "color",
564
+ "state",
565
+ "success",
566
+ "500"
567
+ ]
568
+ }
569
+ },
570
+ "warning": {
571
+ "500": {
572
+ "value": "#de750c",
573
+ "public": true,
574
+ "deprecated": false,
575
+ "filePath": "./src/color/base.json",
576
+ "isSource": true,
577
+ "original": {
578
+ "value": "de750c",
579
+ "public": true,
580
+ "deprecated": false
581
+ },
582
+ "name": "ds-color-state-warning-500",
583
+ "attributes": {
584
+ "category": "color",
585
+ "type": "state",
586
+ "item": "warning",
587
+ "subitem": "500"
588
+ },
589
+ "path": [
590
+ "color",
591
+ "state",
592
+ "warning",
593
+ "500"
594
+ ]
595
+ }
596
+ }
597
+ },
598
+ "border": {
599
+ "primary": {
600
+ "default": {
601
+ "value": "#626b79",
602
+ "public": true,
603
+ "default": true,
604
+ "usage": "Primary border color on light backgrounds",
605
+ "wcag": "n/a",
606
+ "deprecated": false,
607
+ "filePath": "./src/color/border.json",
608
+ "isSource": true,
609
+ "original": {
610
+ "value": "{color.brand.neutral.500.value}",
611
+ "public": true,
612
+ "default": true,
613
+ "usage": "Primary border color on light backgrounds",
614
+ "wcag": "n/a",
615
+ "deprecated": false
616
+ },
617
+ "name": "ds-color-border-primary-default",
618
+ "attributes": {
619
+ "category": "color",
620
+ "type": "border",
621
+ "item": "primary",
622
+ "subitem": "default"
623
+ },
624
+ "path": [
625
+ "color",
626
+ "border",
627
+ "primary",
628
+ "default"
629
+ ]
630
+ },
631
+ "inverse": {
632
+ "value": "#9fabbb",
633
+ "public": true,
634
+ "inverse": true,
635
+ "usage": "Primary border color on dark background",
636
+ "wcag": "n/a",
637
+ "deprecated": false,
638
+ "filePath": "./src/color/border.json",
639
+ "isSource": true,
640
+ "original": {
641
+ "value": "{color.brand.neutral.400.value}",
642
+ "public": true,
643
+ "inverse": true,
644
+ "usage": "Primary border color on dark background",
645
+ "wcag": "n/a",
646
+ "deprecated": false
647
+ },
648
+ "name": "ds-color-border-primary-inverse",
649
+ "attributes": {
650
+ "category": "color",
651
+ "type": "border",
652
+ "item": "primary",
653
+ "subitem": "inverse"
654
+ },
655
+ "path": [
656
+ "color",
657
+ "border",
658
+ "primary",
659
+ "inverse"
660
+ ]
661
+ }
662
+ },
663
+ "active": {
664
+ "default": {
665
+ "value": "#0074c8",
666
+ "public": true,
667
+ "default": true,
668
+ "usage": "Active border color on light backgrounds",
669
+ "wcag": "n/a",
670
+ "deprecated": false,
671
+ "filePath": "./src/color/border.json",
672
+ "isSource": true,
673
+ "original": {
674
+ "value": "{color.brand.atlas.400.value}",
675
+ "public": true,
676
+ "default": true,
677
+ "usage": "Active border color on light backgrounds",
678
+ "wcag": "n/a",
679
+ "deprecated": false
680
+ },
681
+ "name": "ds-color-border-active-default",
682
+ "attributes": {
683
+ "category": "color",
684
+ "type": "border",
685
+ "item": "active",
686
+ "subitem": "default"
687
+ },
688
+ "path": [
689
+ "color",
690
+ "border",
691
+ "active",
692
+ "default"
693
+ ]
694
+ }
695
+ },
696
+ "error": {
697
+ "default": {
698
+ "value": "#df0b37",
699
+ "public": true,
700
+ "default": true,
701
+ "usage": "Error states border color on light backgrounds",
702
+ "wcag": "n/a",
703
+ "deprecated": false,
704
+ "filePath": "./src/color/border.json",
705
+ "isSource": true,
706
+ "original": {
707
+ "value": "{color.state.error.500.value}",
708
+ "public": true,
709
+ "default": true,
710
+ "usage": "Error states border color on light backgrounds",
711
+ "wcag": "n/a",
712
+ "deprecated": false
713
+ },
714
+ "name": "ds-color-border-error-default",
715
+ "attributes": {
716
+ "category": "color",
717
+ "type": "border",
718
+ "item": "error",
719
+ "subitem": "default"
720
+ },
721
+ "path": [
722
+ "color",
723
+ "border",
724
+ "error",
725
+ "default"
726
+ ]
727
+ }
728
+ },
729
+ "disabled": {
730
+ "default": {
731
+ "value": "#dbdbdb",
732
+ "public": true,
733
+ "default": true,
734
+ "usage": "Disabled border color on light backgrounds",
735
+ "wcag": "n/a",
736
+ "deprecated": false,
737
+ "filePath": "./src/color/border.json",
738
+ "isSource": true,
739
+ "original": {
740
+ "value": "{color.base.gray.200.value}",
741
+ "public": true,
742
+ "default": true,
743
+ "usage": "Disabled border color on light backgrounds",
744
+ "wcag": "n/a",
745
+ "deprecated": false
746
+ },
747
+ "name": "ds-color-border-disabled-default",
748
+ "attributes": {
749
+ "category": "color",
750
+ "type": "border",
751
+ "item": "disabled",
752
+ "subitem": "default"
753
+ },
754
+ "path": [
755
+ "color",
756
+ "border",
757
+ "disabled",
758
+ "default"
759
+ ]
760
+ }
761
+ },
762
+ "Focus": {
763
+ "default": {
764
+ "value": "#222222",
765
+ "public": true,
766
+ "default": true,
767
+ "usage": "Focus border color for light backgrounds",
768
+ "wcag": "n/a",
769
+ "deprecated": false,
770
+ "filePath": "./src/color/border.json",
771
+ "isSource": true,
772
+ "original": {
773
+ "value": "{color.base.gray.500.value}",
774
+ "public": true,
775
+ "default": true,
776
+ "usage": "Focus border color for light backgrounds",
777
+ "wcag": "n/a",
778
+ "deprecated": false
779
+ },
780
+ "name": "ds-color-border-focus-default",
781
+ "attributes": {
782
+ "category": "color",
783
+ "type": "border",
784
+ "item": "Focus",
785
+ "subitem": "default"
786
+ },
787
+ "path": [
788
+ "color",
789
+ "border",
790
+ "Focus",
791
+ "default"
792
+ ]
793
+ }
794
+ },
795
+ "divider": {
796
+ "default": {
797
+ "value": "rgba(0, 0, 0, 0.15)",
798
+ "public": true,
799
+ "default": true,
800
+ "usage": "Strict use as divider between elements on light backgrounds",
801
+ "wcag": "n/a",
802
+ "deprecated": false,
803
+ "filePath": "./src/color/border.json",
804
+ "isSource": true,
805
+ "original": {
806
+ "value": "{color.base.black-opacity-15.value}",
807
+ "public": true,
808
+ "default": true,
809
+ "usage": "Strict use as divider between elements on light backgrounds",
810
+ "wcag": "n/a",
811
+ "deprecated": false
812
+ },
813
+ "name": "ds-color-border-divider-default",
814
+ "attributes": {
815
+ "category": "color",
816
+ "type": "border",
817
+ "item": "divider",
818
+ "subitem": "default"
819
+ },
820
+ "path": [
821
+ "color",
822
+ "border",
823
+ "divider",
824
+ "default"
825
+ ]
826
+ },
827
+ "inverse": {
828
+ "value": "#ffffff",
829
+ "public": true,
830
+ "inverse": true,
831
+ "usage": "Strict use as divider between elements on dark backgrounds",
832
+ "wcag": "n/a",
833
+ "deprecated": false,
834
+ "filePath": "./src/color/border.json",
835
+ "isSource": true,
836
+ "original": {
837
+ "value": "{color.base.white.value}",
838
+ "public": true,
839
+ "inverse": true,
840
+ "usage": "Strict use as divider between elements on dark backgrounds",
841
+ "wcag": "n/a",
842
+ "deprecated": false
843
+ },
844
+ "name": "ds-color-border-divider-inverse",
845
+ "attributes": {
846
+ "category": "color",
847
+ "type": "border",
848
+ "item": "divider",
849
+ "subitem": "inverse"
850
+ },
851
+ "path": [
852
+ "color",
853
+ "border",
854
+ "divider",
855
+ "inverse"
856
+ ]
857
+ }
858
+ }
859
+ },
860
+ "brand": {
861
+ "midnight": {
862
+ "100": {
863
+ "value": "#c1daf0",
864
+ "comment": "\n // Please consider descriptive token prior to using brand token",
865
+ "public": true,
866
+ "neutral": true,
867
+ "usage": "Transactional colors to move guests through task-based interactions.",
868
+ "wcag": "n/a",
869
+ "deprecated": false,
870
+ "filePath": "./src/color/brand.json",
871
+ "isSource": true,
872
+ "original": {
873
+ "value": "c1daf0",
874
+ "comment": "{comments.color.brand.value.comment}",
875
+ "public": true,
876
+ "neutral": true,
877
+ "usage": "Transactional colors to move guests through task-based interactions.",
878
+ "wcag": "n/a",
879
+ "deprecated": false
880
+ },
881
+ "name": "ds-color-brand-midnight-100",
882
+ "attributes": {
883
+ "category": "color",
884
+ "type": "brand",
885
+ "item": "midnight",
886
+ "subitem": "100"
887
+ },
888
+ "path": [
889
+ "color",
890
+ "brand",
891
+ "midnight",
892
+ "100"
893
+ ]
894
+ },
895
+ "200": {
896
+ "value": "#569ed7",
897
+ "comment": "\n // Please consider descriptive token prior to using brand token",
898
+ "public": true,
899
+ "neutral": true,
900
+ "usage": "Transactional colors to move guests through task-based interactions.",
901
+ "wcag": "n/a",
902
+ "deprecated": false,
903
+ "filePath": "./src/color/brand.json",
904
+ "isSource": true,
905
+ "original": {
906
+ "value": "569ed7",
907
+ "comment": "{comments.color.brand.value.comment}",
908
+ "public": true,
909
+ "neutral": true,
910
+ "usage": "Transactional colors to move guests through task-based interactions.",
911
+ "wcag": "n/a",
912
+ "deprecated": false
913
+ },
914
+ "name": "ds-color-brand-midnight-200",
915
+ "attributes": {
916
+ "category": "color",
917
+ "type": "brand",
918
+ "item": "midnight",
919
+ "subitem": "200"
920
+ },
921
+ "path": [
922
+ "color",
923
+ "brand",
924
+ "midnight",
925
+ "200"
926
+ ]
927
+ },
928
+ "300": {
929
+ "value": "#156fad",
930
+ "comment": "\n // Please consider descriptive token prior to using brand token",
931
+ "public": true,
932
+ "neutral": true,
933
+ "usage": "Transactional colors to move guests through task-based interactions.",
934
+ "wcag": "n/a",
935
+ "deprecated": false,
936
+ "filePath": "./src/color/brand.json",
937
+ "isSource": true,
938
+ "original": {
939
+ "value": "156fad",
940
+ "comment": "{comments.color.brand.value.comment}",
941
+ "public": true,
942
+ "neutral": true,
943
+ "usage": "Transactional colors to move guests through task-based interactions.",
944
+ "wcag": "n/a",
945
+ "deprecated": false
946
+ },
947
+ "name": "ds-color-brand-midnight-300",
948
+ "attributes": {
949
+ "category": "color",
950
+ "type": "brand",
951
+ "item": "midnight",
952
+ "subitem": "300"
953
+ },
954
+ "path": [
955
+ "color",
956
+ "brand",
957
+ "midnight",
958
+ "300"
959
+ ]
960
+ },
961
+ "400": {
962
+ "value": "#01426a",
963
+ "comment": "\n // Please consider descriptive token prior to using brand token",
964
+ "public": true,
965
+ "neutral": true,
966
+ "usage": "Transactional colors to move guests through task-based interactions.",
967
+ "wcag": "n/a",
968
+ "deprecated": false,
969
+ "filePath": "./src/color/brand.json",
970
+ "isSource": true,
971
+ "original": {
972
+ "value": "01426a",
973
+ "comment": "{comments.color.brand.value.comment}",
974
+ "public": true,
975
+ "neutral": true,
976
+ "usage": "Transactional colors to move guests through task-based interactions.",
977
+ "wcag": "n/a",
978
+ "deprecated": false
979
+ },
980
+ "name": "ds-color-brand-midnight-400",
981
+ "attributes": {
982
+ "category": "color",
983
+ "type": "brand",
984
+ "item": "midnight",
985
+ "subitem": "400"
986
+ },
987
+ "path": [
988
+ "color",
989
+ "brand",
990
+ "midnight",
991
+ "400"
992
+ ]
993
+ },
994
+ "500": {
995
+ "value": "#00274a",
996
+ "comment": "\n // Please consider descriptive token prior to using brand token",
997
+ "public": true,
998
+ "neutral": true,
999
+ "usage": "Transactional colors to move guests through task-based interactions.",
1000
+ "wcag": "n/a",
1001
+ "deprecated": false,
1002
+ "filePath": "./src/color/brand.json",
1003
+ "isSource": true,
1004
+ "original": {
1005
+ "value": "00274a",
1006
+ "comment": "{comments.color.brand.value.comment}",
1007
+ "public": true,
1008
+ "neutral": true,
1009
+ "usage": "Transactional colors to move guests through task-based interactions.",
1010
+ "wcag": "n/a",
1011
+ "deprecated": false
1012
+ },
1013
+ "name": "ds-color-brand-midnight-500",
1014
+ "attributes": {
1015
+ "category": "color",
1016
+ "type": "brand",
1017
+ "item": "midnight",
1018
+ "subitem": "500"
1019
+ },
1020
+ "path": [
1021
+ "color",
1022
+ "brand",
1023
+ "midnight",
1024
+ "500"
1025
+ ]
1026
+ }
1027
+ },
1028
+ "atlas": {
1029
+ "100": {
1030
+ "value": "#cde6ff",
1031
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1032
+ "public": true,
1033
+ "neutral": true,
1034
+ "usage": "Transactional colors to move guests through task-based interactions.",
1035
+ "wcag": "n/a",
1036
+ "deprecated": false,
1037
+ "filePath": "./src/color/brand.json",
1038
+ "isSource": true,
1039
+ "original": {
1040
+ "value": "cde6ff",
1041
+ "comment": "{comments.color.brand.value.comment}",
1042
+ "public": true,
1043
+ "neutral": true,
1044
+ "usage": "Transactional colors to move guests through task-based interactions.",
1045
+ "wcag": "n/a",
1046
+ "deprecated": false
1047
+ },
1048
+ "name": "ds-color-brand-atlas-100",
1049
+ "attributes": {
1050
+ "category": "color",
1051
+ "type": "brand",
1052
+ "item": "atlas",
1053
+ "subitem": "100"
1054
+ },
1055
+ "path": [
1056
+ "color",
1057
+ "brand",
1058
+ "atlas",
1059
+ "100"
1060
+ ]
1061
+ },
1062
+ "200": {
1063
+ "value": "#6bb7fb",
1064
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1065
+ "public": true,
1066
+ "neutral": true,
1067
+ "usage": "Transactional colors to move guests through task-based interactions.",
1068
+ "wcag": "n/a",
1069
+ "deprecated": false,
1070
+ "filePath": "./src/color/brand.json",
1071
+ "isSource": true,
1072
+ "original": {
1073
+ "value": "6bb7fb",
1074
+ "comment": "{comments.color.brand.value.comment}",
1075
+ "public": true,
1076
+ "neutral": true,
1077
+ "usage": "Transactional colors to move guests through task-based interactions.",
1078
+ "wcag": "n/a",
1079
+ "deprecated": false
1080
+ },
1081
+ "name": "ds-color-brand-atlas-200",
1082
+ "attributes": {
1083
+ "category": "color",
1084
+ "type": "brand",
1085
+ "item": "atlas",
1086
+ "subitem": "200"
1087
+ },
1088
+ "path": [
1089
+ "color",
1090
+ "brand",
1091
+ "atlas",
1092
+ "200"
1093
+ ]
1094
+ },
1095
+ "300": {
1096
+ "value": "#2492eb",
1097
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1098
+ "public": true,
1099
+ "neutral": true,
1100
+ "usage": "Transactional colors to move guests through task-based interactions.",
1101
+ "wcag": "n/a",
1102
+ "deprecated": false,
1103
+ "filePath": "./src/color/brand.json",
1104
+ "isSource": true,
1105
+ "original": {
1106
+ "value": "2492eb",
1107
+ "comment": "{comments.color.brand.value.comment}",
1108
+ "public": true,
1109
+ "neutral": true,
1110
+ "usage": "Transactional colors to move guests through task-based interactions.",
1111
+ "wcag": "n/a",
1112
+ "deprecated": false
1113
+ },
1114
+ "name": "ds-color-brand-atlas-300",
1115
+ "attributes": {
1116
+ "category": "color",
1117
+ "type": "brand",
1118
+ "item": "atlas",
1119
+ "subitem": "300"
1120
+ },
1121
+ "path": [
1122
+ "color",
1123
+ "brand",
1124
+ "atlas",
1125
+ "300"
1126
+ ]
1127
+ },
1128
+ "400": {
1129
+ "value": "#0074c8",
1130
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1131
+ "public": true,
1132
+ "neutral": true,
1133
+ "usage": "Transactional colors to move guests through task-based interactions.",
1134
+ "wcag": "n/a",
1135
+ "deprecated": false,
1136
+ "filePath": "./src/color/brand.json",
1137
+ "isSource": true,
1138
+ "original": {
1139
+ "value": "0074c8",
1140
+ "comment": "{comments.color.brand.value.comment}",
1141
+ "public": true,
1142
+ "neutral": true,
1143
+ "usage": "Transactional colors to move guests through task-based interactions.",
1144
+ "wcag": "n/a",
1145
+ "deprecated": false
1146
+ },
1147
+ "name": "ds-color-brand-atlas-400",
1148
+ "attributes": {
1149
+ "category": "color",
1150
+ "type": "brand",
1151
+ "item": "atlas",
1152
+ "subitem": "400"
1153
+ },
1154
+ "path": [
1155
+ "color",
1156
+ "brand",
1157
+ "atlas",
1158
+ "400"
1159
+ ]
1160
+ },
1161
+ "500": {
1162
+ "value": "#054687",
1163
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1164
+ "public": true,
1165
+ "neutral": true,
1166
+ "usage": "Transactional colors to move guests through task-based interactions.",
1167
+ "wcag": "n/a",
1168
+ "deprecated": false,
1169
+ "filePath": "./src/color/brand.json",
1170
+ "isSource": true,
1171
+ "original": {
1172
+ "value": "054687",
1173
+ "comment": "{comments.color.brand.value.comment}",
1174
+ "public": true,
1175
+ "neutral": true,
1176
+ "usage": "Transactional colors to move guests through task-based interactions.",
1177
+ "wcag": "n/a",
1178
+ "deprecated": false
1179
+ },
1180
+ "name": "ds-color-brand-atlas-500",
1181
+ "attributes": {
1182
+ "category": "color",
1183
+ "type": "brand",
1184
+ "item": "atlas",
1185
+ "subitem": "500"
1186
+ },
1187
+ "path": [
1188
+ "color",
1189
+ "brand",
1190
+ "atlas",
1191
+ "500"
1192
+ ]
1193
+ }
1194
+ },
1195
+ "breeze": {
1196
+ "100": {
1197
+ "value": "#c0f7ff",
1198
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1199
+ "public": true,
1200
+ "neutral": true,
1201
+ "usage": "Transactional colors to move guests through task-based interactions.",
1202
+ "wcag": "n/a",
1203
+ "deprecated": false,
1204
+ "filePath": "./src/color/brand.json",
1205
+ "isSource": true,
1206
+ "original": {
1207
+ "value": "c0f7ff",
1208
+ "comment": "{comments.color.brand.value.comment}",
1209
+ "public": true,
1210
+ "neutral": true,
1211
+ "usage": "Transactional colors to move guests through task-based interactions.",
1212
+ "wcag": "n/a",
1213
+ "deprecated": false
1214
+ },
1215
+ "name": "ds-color-brand-breeze-100",
1216
+ "attributes": {
1217
+ "category": "color",
1218
+ "type": "brand",
1219
+ "item": "breeze",
1220
+ "subitem": "100"
1221
+ },
1222
+ "path": [
1223
+ "color",
1224
+ "brand",
1225
+ "breeze",
1226
+ "100"
1227
+ ]
1228
+ },
1229
+ "200": {
1230
+ "value": "#5de3f7",
1231
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1232
+ "public": true,
1233
+ "neutral": true,
1234
+ "usage": "Transactional colors to move guests through task-based interactions.",
1235
+ "wcag": "n/a",
1236
+ "deprecated": false,
1237
+ "filePath": "./src/color/brand.json",
1238
+ "isSource": true,
1239
+ "original": {
1240
+ "value": "5de3f7",
1241
+ "comment": "{comments.color.brand.value.comment}",
1242
+ "public": true,
1243
+ "neutral": true,
1244
+ "usage": "Transactional colors to move guests through task-based interactions.",
1245
+ "wcag": "n/a",
1246
+ "deprecated": false
1247
+ },
1248
+ "name": "ds-color-brand-breeze-200",
1249
+ "attributes": {
1250
+ "category": "color",
1251
+ "type": "brand",
1252
+ "item": "breeze",
1253
+ "subitem": "200"
1254
+ },
1255
+ "path": [
1256
+ "color",
1257
+ "brand",
1258
+ "breeze",
1259
+ "200"
1260
+ ]
1261
+ },
1262
+ "300": {
1263
+ "value": "#00cff0",
1264
+ "public": true,
1265
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1266
+ "neutral": true,
1267
+ "usage": "Transactional colors to move guests through task-based interactions.",
1268
+ "wcag": "n/a",
1269
+ "deprecated": false,
1270
+ "filePath": "./src/color/brand.json",
1271
+ "isSource": true,
1272
+ "original": {
1273
+ "value": "00cff0",
1274
+ "public": true,
1275
+ "comment": "{comments.color.brand.value.comment}",
1276
+ "neutral": true,
1277
+ "usage": "Transactional colors to move guests through task-based interactions.",
1278
+ "wcag": "n/a",
1279
+ "deprecated": false
1280
+ },
1281
+ "name": "ds-color-brand-breeze-300",
1282
+ "attributes": {
1283
+ "category": "color",
1284
+ "type": "brand",
1285
+ "item": "breeze",
1286
+ "subitem": "300"
1287
+ },
1288
+ "path": [
1289
+ "color",
1290
+ "brand",
1291
+ "breeze",
1292
+ "300"
1293
+ ]
1294
+ },
1295
+ "400": {
1296
+ "value": "#099dc5",
1297
+ "public": true,
1298
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1299
+ "neutral": true,
1300
+ "usage": "Transactional colors to move guests through task-based interactions.",
1301
+ "wcag": "n/a",
1302
+ "deprecated": false,
1303
+ "filePath": "./src/color/brand.json",
1304
+ "isSource": true,
1305
+ "original": {
1306
+ "value": "099dc5",
1307
+ "public": true,
1308
+ "comment": "{comments.color.brand.value.comment}",
1309
+ "neutral": true,
1310
+ "usage": "Transactional colors to move guests through task-based interactions.",
1311
+ "wcag": "n/a",
1312
+ "deprecated": false
1313
+ },
1314
+ "name": "ds-color-brand-breeze-400",
1315
+ "attributes": {
1316
+ "category": "color",
1317
+ "type": "brand",
1318
+ "item": "breeze",
1319
+ "subitem": "400"
1320
+ },
1321
+ "path": [
1322
+ "color",
1323
+ "brand",
1324
+ "breeze",
1325
+ "400"
1326
+ ]
1327
+ },
1328
+ "500": {
1329
+ "value": "#0b5575",
1330
+ "public": true,
1331
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1332
+ "neutral": true,
1333
+ "usage": "Transactional colors to move guests through task-based interactions.",
1334
+ "wcag": "n/a",
1335
+ "deprecated": false,
1336
+ "filePath": "./src/color/brand.json",
1337
+ "isSource": true,
1338
+ "original": {
1339
+ "value": "0b5575",
1340
+ "public": true,
1341
+ "comment": "{comments.color.brand.value.comment}",
1342
+ "neutral": true,
1343
+ "usage": "Transactional colors to move guests through task-based interactions.",
1344
+ "wcag": "n/a",
1345
+ "deprecated": false
1346
+ },
1347
+ "name": "ds-color-brand-breeze-500",
1348
+ "attributes": {
1349
+ "category": "color",
1350
+ "type": "brand",
1351
+ "item": "breeze",
1352
+ "subitem": "500"
1353
+ },
1354
+ "path": [
1355
+ "color",
1356
+ "brand",
1357
+ "breeze",
1358
+ "500"
1359
+ ]
1360
+ }
1361
+ },
1362
+ "tropical": {
1363
+ "100": {
1364
+ "value": "#e2ffcd",
1365
+ "public": true,
1366
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1367
+ "neutral": true,
1368
+ "usage": "Transactional colors to move guests through task-based interactions.",
1369
+ "wcag": "n/a",
1370
+ "deprecated": false,
1371
+ "filePath": "./src/color/brand.json",
1372
+ "isSource": true,
1373
+ "original": {
1374
+ "value": "e2ffcd",
1375
+ "public": true,
1376
+ "comment": "{comments.color.brand.value.comment}",
1377
+ "neutral": true,
1378
+ "usage": "Transactional colors to move guests through task-based interactions.",
1379
+ "wcag": "n/a",
1380
+ "deprecated": false
1381
+ },
1382
+ "name": "ds-color-brand-tropical-100",
1383
+ "attributes": {
1384
+ "category": "color",
1385
+ "type": "brand",
1386
+ "item": "tropical",
1387
+ "subitem": "100"
1388
+ },
1389
+ "path": [
1390
+ "color",
1391
+ "brand",
1392
+ "tropical",
1393
+ "100"
1394
+ ]
1395
+ },
1396
+ "200": {
1397
+ "value": "#d0fba6",
1398
+ "public": true,
1399
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1400
+ "neutral": true,
1401
+ "usage": "Transactional colors to move guests through task-based interactions.",
1402
+ "wcag": "n/a",
1403
+ "deprecated": false,
1404
+ "filePath": "./src/color/brand.json",
1405
+ "isSource": true,
1406
+ "original": {
1407
+ "value": "d0fba6",
1408
+ "public": true,
1409
+ "comment": "{comments.color.brand.value.comment}",
1410
+ "neutral": true,
1411
+ "usage": "Transactional colors to move guests through task-based interactions.",
1412
+ "wcag": "n/a",
1413
+ "deprecated": false
1414
+ },
1415
+ "name": "ds-color-brand-tropical-200",
1416
+ "attributes": {
1417
+ "category": "color",
1418
+ "type": "brand",
1419
+ "item": "tropical",
1420
+ "subitem": "200"
1421
+ },
1422
+ "path": [
1423
+ "color",
1424
+ "brand",
1425
+ "tropical",
1426
+ "200"
1427
+ ]
1428
+ },
1429
+ "300": {
1430
+ "value": "#c0e585",
1431
+ "public": true,
1432
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1433
+ "neutral": true,
1434
+ "usage": "Transactional colors to move guests through task-based interactions.",
1435
+ "wcag": "n/a",
1436
+ "deprecated": false,
1437
+ "filePath": "./src/color/brand.json",
1438
+ "isSource": true,
1439
+ "original": {
1440
+ "value": "c0e585",
1441
+ "public": true,
1442
+ "comment": "{comments.color.brand.value.comment}",
1443
+ "neutral": true,
1444
+ "usage": "Transactional colors to move guests through task-based interactions.",
1445
+ "wcag": "n/a",
1446
+ "deprecated": false
1447
+ },
1448
+ "name": "ds-color-brand-tropical-300",
1449
+ "attributes": {
1450
+ "category": "color",
1451
+ "type": "brand",
1452
+ "item": "tropical",
1453
+ "subitem": "300"
1454
+ },
1455
+ "path": [
1456
+ "color",
1457
+ "brand",
1458
+ "tropical",
1459
+ "300"
1460
+ ]
1461
+ },
1462
+ "400": {
1463
+ "value": "#91be62",
1464
+ "public": true,
1465
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1466
+ "neutral": true,
1467
+ "usage": "Transactional colors to move guests through task-based interactions.",
1468
+ "wcag": "n/a",
1469
+ "deprecated": false,
1470
+ "filePath": "./src/color/brand.json",
1471
+ "isSource": true,
1472
+ "original": {
1473
+ "value": "91be62",
1474
+ "public": true,
1475
+ "comment": "{comments.color.brand.value.comment}",
1476
+ "neutral": true,
1477
+ "usage": "Transactional colors to move guests through task-based interactions.",
1478
+ "wcag": "n/a",
1479
+ "deprecated": false
1480
+ },
1481
+ "name": "ds-color-brand-tropical-400",
1482
+ "attributes": {
1483
+ "category": "color",
1484
+ "type": "brand",
1485
+ "item": "tropical",
1486
+ "subitem": "400"
1487
+ },
1488
+ "path": [
1489
+ "color",
1490
+ "brand",
1491
+ "tropical",
1492
+ "400"
1493
+ ]
1494
+ },
1495
+ "500": {
1496
+ "value": "#5e8741",
1497
+ "public": true,
1498
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1499
+ "neutral": true,
1500
+ "usage": "Transactional colors to move guests through task-based interactions.",
1501
+ "wcag": "n/a",
1502
+ "deprecated": false,
1503
+ "filePath": "./src/color/brand.json",
1504
+ "isSource": true,
1505
+ "original": {
1506
+ "value": "5e8741",
1507
+ "public": true,
1508
+ "comment": "{comments.color.brand.value.comment}",
1509
+ "neutral": true,
1510
+ "usage": "Transactional colors to move guests through task-based interactions.",
1511
+ "wcag": "n/a",
1512
+ "deprecated": false
1513
+ },
1514
+ "name": "ds-color-brand-tropical-500",
1515
+ "attributes": {
1516
+ "category": "color",
1517
+ "type": "brand",
1518
+ "item": "tropical",
1519
+ "subitem": "500"
1520
+ },
1521
+ "path": [
1522
+ "color",
1523
+ "brand",
1524
+ "tropical",
1525
+ "500"
1526
+ ]
1527
+ }
1528
+ },
1529
+ "alpine": {
1530
+ "100": {
1531
+ "value": "#bcaae6",
1532
+ "public": true,
1533
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1534
+ "neutral": true,
1535
+ "usage": "Conversational colors add warmth and energy to our experience",
1536
+ "wcag": "n/a",
1537
+ "deprecated": false,
1538
+ "filePath": "./src/color/brand.json",
1539
+ "isSource": true,
1540
+ "original": {
1541
+ "value": "bcaae6",
1542
+ "public": true,
1543
+ "comment": "{comments.color.brand.value.comment}",
1544
+ "neutral": true,
1545
+ "usage": "Conversational colors add warmth and energy to our experience",
1546
+ "wcag": "n/a",
1547
+ "deprecated": false
1548
+ },
1549
+ "name": "ds-color-brand-alpine-100",
1550
+ "attributes": {
1551
+ "category": "color",
1552
+ "type": "brand",
1553
+ "item": "alpine",
1554
+ "subitem": "100"
1555
+ },
1556
+ "path": [
1557
+ "color",
1558
+ "brand",
1559
+ "alpine",
1560
+ "100"
1561
+ ]
1562
+ },
1563
+ "200": {
1564
+ "value": "#9e73ea",
1565
+ "public": true,
1566
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1567
+ "neutral": true,
1568
+ "usage": "Conversational colors add warmth and energy to our experience",
1569
+ "wcag": "n/a",
1570
+ "deprecated": false,
1571
+ "filePath": "./src/color/brand.json",
1572
+ "isSource": true,
1573
+ "original": {
1574
+ "value": "9e73ea",
1575
+ "public": true,
1576
+ "comment": "{comments.color.brand.value.comment}",
1577
+ "neutral": true,
1578
+ "usage": "Conversational colors add warmth and energy to our experience",
1579
+ "wcag": "n/a",
1580
+ "deprecated": false
1581
+ },
1582
+ "name": "ds-color-brand-alpine-200",
1583
+ "attributes": {
1584
+ "category": "color",
1585
+ "type": "brand",
1586
+ "item": "alpine",
1587
+ "subitem": "200"
1588
+ },
1589
+ "path": [
1590
+ "color",
1591
+ "brand",
1592
+ "alpine",
1593
+ "200"
1594
+ ]
1595
+ },
1596
+ "300": {
1597
+ "value": "#8439ef",
1598
+ "public": true,
1599
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1600
+ "neutral": true,
1601
+ "usage": "Conversational colors add warmth and energy to our experience",
1602
+ "wcag": "n/a",
1603
+ "deprecated": false,
1604
+ "filePath": "./src/color/brand.json",
1605
+ "isSource": true,
1606
+ "original": {
1607
+ "value": "8439ef",
1608
+ "public": true,
1609
+ "comment": "{comments.color.brand.value.comment}",
1610
+ "neutral": true,
1611
+ "usage": "Conversational colors add warmth and energy to our experience",
1612
+ "wcag": "n/a",
1613
+ "deprecated": false
1614
+ },
1615
+ "name": "ds-color-brand-alpine-300",
1616
+ "attributes": {
1617
+ "category": "color",
1618
+ "type": "brand",
1619
+ "item": "alpine",
1620
+ "subitem": "300"
1621
+ },
1622
+ "path": [
1623
+ "color",
1624
+ "brand",
1625
+ "alpine",
1626
+ "300"
1627
+ ]
1628
+ },
1629
+ "400": {
1630
+ "value": "#631db8",
1631
+ "public": true,
1632
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1633
+ "neutral": true,
1634
+ "usage": "Conversational colors add warmth and energy to our experience",
1635
+ "wcag": "n/a",
1636
+ "deprecated": false,
1637
+ "filePath": "./src/color/brand.json",
1638
+ "isSource": true,
1639
+ "original": {
1640
+ "value": "631db8",
1641
+ "public": true,
1642
+ "comment": "{comments.color.brand.value.comment}",
1643
+ "neutral": true,
1644
+ "usage": "Conversational colors add warmth and energy to our experience",
1645
+ "wcag": "n/a",
1646
+ "deprecated": false
1647
+ },
1648
+ "name": "ds-color-brand-alpine-400",
1649
+ "attributes": {
1650
+ "category": "color",
1651
+ "type": "brand",
1652
+ "item": "alpine",
1653
+ "subitem": "400"
1654
+ },
1655
+ "path": [
1656
+ "color",
1657
+ "brand",
1658
+ "alpine",
1659
+ "400"
1660
+ ]
1661
+ },
1662
+ "500": {
1663
+ "value": "#39115c",
1664
+ "public": true,
1665
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1666
+ "neutral": true,
1667
+ "usage": "Conversational colors add warmth and energy to our experience",
1668
+ "wcag": "n/a",
1669
+ "deprecated": false,
1670
+ "filePath": "./src/color/brand.json",
1671
+ "isSource": true,
1672
+ "original": {
1673
+ "value": "39115c",
1674
+ "public": true,
1675
+ "comment": "{comments.color.brand.value.comment}",
1676
+ "neutral": true,
1677
+ "usage": "Conversational colors add warmth and energy to our experience",
1678
+ "wcag": "n/a",
1679
+ "deprecated": false
1680
+ },
1681
+ "name": "ds-color-brand-alpine-500",
1682
+ "attributes": {
1683
+ "category": "color",
1684
+ "type": "brand",
1685
+ "item": "alpine",
1686
+ "subitem": "500"
1687
+ },
1688
+ "path": [
1689
+ "color",
1690
+ "brand",
1691
+ "alpine",
1692
+ "500"
1693
+ ]
1694
+ }
1695
+ },
1696
+ "flamingo": {
1697
+ "100": {
1698
+ "value": "#ffebee",
1699
+ "public": true,
1700
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1701
+ "neutral": true,
1702
+ "usage": "Conversational colors add warmth and energy to our experience",
1703
+ "wcag": "n/a",
1704
+ "deprecated": false,
1705
+ "filePath": "./src/color/brand.json",
1706
+ "isSource": true,
1707
+ "original": {
1708
+ "value": "ffebee",
1709
+ "public": true,
1710
+ "comment": "{comments.color.brand.value.comment}",
1711
+ "neutral": true,
1712
+ "usage": "Conversational colors add warmth and energy to our experience",
1713
+ "wcag": "n/a",
1714
+ "deprecated": false
1715
+ },
1716
+ "name": "ds-color-brand-flamingo-100",
1717
+ "attributes": {
1718
+ "category": "color",
1719
+ "type": "brand",
1720
+ "item": "flamingo",
1721
+ "subitem": "100"
1722
+ },
1723
+ "path": [
1724
+ "color",
1725
+ "brand",
1726
+ "flamingo",
1727
+ "100"
1728
+ ]
1729
+ },
1730
+ "200": {
1731
+ "value": "#ffc0ca",
1732
+ "public": true,
1733
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1734
+ "neutral": true,
1735
+ "usage": "Conversational colors add warmth and energy to our experience",
1736
+ "wcag": "n/a",
1737
+ "deprecated": false,
1738
+ "filePath": "./src/color/brand.json",
1739
+ "isSource": true,
1740
+ "original": {
1741
+ "value": "ffc0ca",
1742
+ "public": true,
1743
+ "comment": "{comments.color.brand.value.comment}",
1744
+ "neutral": true,
1745
+ "usage": "Conversational colors add warmth and energy to our experience",
1746
+ "wcag": "n/a",
1747
+ "deprecated": false
1748
+ },
1749
+ "name": "ds-color-brand-flamingo-200",
1750
+ "attributes": {
1751
+ "category": "color",
1752
+ "type": "brand",
1753
+ "item": "flamingo",
1754
+ "subitem": "200"
1755
+ },
1756
+ "path": [
1757
+ "color",
1758
+ "brand",
1759
+ "flamingo",
1760
+ "200"
1761
+ ]
1762
+ },
1763
+ "300": {
1764
+ "value": "#ff94a7",
1765
+ "public": true,
1766
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1767
+ "neutral": true,
1768
+ "usage": "Conversational colors add warmth and energy to our experience",
1769
+ "wcag": "n/a",
1770
+ "deprecated": false,
1771
+ "filePath": "./src/color/brand.json",
1772
+ "isSource": true,
1773
+ "original": {
1774
+ "value": "ff94a7",
1775
+ "public": true,
1776
+ "comment": "{comments.color.brand.value.comment}",
1777
+ "neutral": true,
1778
+ "usage": "Conversational colors add warmth and energy to our experience",
1779
+ "wcag": "n/a",
1780
+ "deprecated": false
1781
+ },
1782
+ "name": "ds-color-brand-flamingo-300",
1783
+ "attributes": {
1784
+ "category": "color",
1785
+ "type": "brand",
1786
+ "item": "flamingo",
1787
+ "subitem": "300"
1788
+ },
1789
+ "path": [
1790
+ "color",
1791
+ "brand",
1792
+ "flamingo",
1793
+ "300"
1794
+ ]
1795
+ },
1796
+ "400": {
1797
+ "value": "#f65b7b",
1798
+ "public": true,
1799
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1800
+ "neutral": true,
1801
+ "usage": "Conversational colors add warmth and energy to our experience",
1802
+ "wcag": "n/a",
1803
+ "deprecated": false,
1804
+ "filePath": "./src/color/brand.json",
1805
+ "isSource": true,
1806
+ "original": {
1807
+ "value": "F65b7b",
1808
+ "public": true,
1809
+ "comment": "{comments.color.brand.value.comment}",
1810
+ "neutral": true,
1811
+ "usage": "Conversational colors add warmth and energy to our experience",
1812
+ "wcag": "n/a",
1813
+ "deprecated": false
1814
+ },
1815
+ "name": "ds-color-brand-flamingo-400",
1816
+ "attributes": {
1817
+ "category": "color",
1818
+ "type": "brand",
1819
+ "item": "flamingo",
1820
+ "subitem": "400"
1821
+ },
1822
+ "path": [
1823
+ "color",
1824
+ "brand",
1825
+ "flamingo",
1826
+ "400"
1827
+ ]
1828
+ },
1829
+ "500": {
1830
+ "value": "#b82b47",
1831
+ "public": true,
1832
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1833
+ "neutral": true,
1834
+ "usage": "Conversational colors add warmth and energy to our experience",
1835
+ "wcag": "n/a",
1836
+ "deprecated": false,
1837
+ "filePath": "./src/color/brand.json",
1838
+ "isSource": true,
1839
+ "original": {
1840
+ "value": "b82b47",
1841
+ "public": true,
1842
+ "comment": "{comments.color.brand.value.comment}",
1843
+ "neutral": true,
1844
+ "usage": "Conversational colors add warmth and energy to our experience",
1845
+ "wcag": "n/a",
1846
+ "deprecated": false
1847
+ },
1848
+ "name": "ds-color-brand-flamingo-500",
1849
+ "attributes": {
1850
+ "category": "color",
1851
+ "type": "brand",
1852
+ "item": "flamingo",
1853
+ "subitem": "500"
1854
+ },
1855
+ "path": [
1856
+ "color",
1857
+ "brand",
1858
+ "flamingo",
1859
+ "500"
1860
+ ]
1861
+ }
1862
+ },
1863
+ "canyon": {
1864
+ "100": {
1865
+ "value": "#ffcab6",
1866
+ "public": true,
1867
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1868
+ "neutral": true,
1869
+ "usage": "Conversational colors add warmth and energy to our experience",
1870
+ "wcag": "n/a",
1871
+ "deprecated": false,
1872
+ "filePath": "./src/color/brand.json",
1873
+ "isSource": true,
1874
+ "original": {
1875
+ "value": "ffcab6",
1876
+ "public": true,
1877
+ "comment": "{comments.color.brand.value.comment}",
1878
+ "neutral": true,
1879
+ "usage": "Conversational colors add warmth and energy to our experience",
1880
+ "wcag": "n/a",
1881
+ "deprecated": false
1882
+ },
1883
+ "name": "ds-color-brand-canyon-100",
1884
+ "attributes": {
1885
+ "category": "color",
1886
+ "type": "brand",
1887
+ "item": "canyon",
1888
+ "subitem": "100"
1889
+ },
1890
+ "path": [
1891
+ "color",
1892
+ "brand",
1893
+ "canyon",
1894
+ "100"
1895
+ ]
1896
+ },
1897
+ "200": {
1898
+ "value": "#f99574",
1899
+ "public": true,
1900
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1901
+ "neutral": true,
1902
+ "usage": "Conversational colors add warmth and energy to our experience",
1903
+ "wcag": "n/a",
1904
+ "deprecated": false,
1905
+ "filePath": "./src/color/brand.json",
1906
+ "isSource": true,
1907
+ "original": {
1908
+ "value": "f99574",
1909
+ "public": true,
1910
+ "comment": "{comments.color.brand.value.comment}",
1911
+ "neutral": true,
1912
+ "usage": "Conversational colors add warmth and energy to our experience",
1913
+ "wcag": "n/a",
1914
+ "deprecated": false
1915
+ },
1916
+ "name": "ds-color-brand-canyon-200",
1917
+ "attributes": {
1918
+ "category": "color",
1919
+ "type": "brand",
1920
+ "item": "canyon",
1921
+ "subitem": "200"
1922
+ },
1923
+ "path": [
1924
+ "color",
1925
+ "brand",
1926
+ "canyon",
1927
+ "200"
1928
+ ]
1929
+ },
1930
+ "300": {
1931
+ "value": "#f26135",
1932
+ "public": true,
1933
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1934
+ "neutral": true,
1935
+ "usage": "Conversational colors add warmth and energy to our experience",
1936
+ "wcag": "n/a",
1937
+ "deprecated": false,
1938
+ "filePath": "./src/color/brand.json",
1939
+ "isSource": true,
1940
+ "original": {
1941
+ "value": "f26135",
1942
+ "public": true,
1943
+ "comment": "{comments.color.brand.value.comment}",
1944
+ "neutral": true,
1945
+ "usage": "Conversational colors add warmth and energy to our experience",
1946
+ "wcag": "n/a",
1947
+ "deprecated": false
1948
+ },
1949
+ "name": "ds-color-brand-canyon-300",
1950
+ "attributes": {
1951
+ "category": "color",
1952
+ "type": "brand",
1953
+ "item": "canyon",
1954
+ "subitem": "300"
1955
+ },
1956
+ "path": [
1957
+ "color",
1958
+ "brand",
1959
+ "canyon",
1960
+ "300"
1961
+ ]
1962
+ },
1963
+ "400": {
1964
+ "value": "#de3e09",
1965
+ "public": true,
1966
+ "comment": "\n // Please consider descriptive token prior to using brand token",
1967
+ "neutral": true,
1968
+ "usage": "Conversational colors add warmth and energy to our experience",
1969
+ "wcag": "n/a",
1970
+ "deprecated": false,
1971
+ "filePath": "./src/color/brand.json",
1972
+ "isSource": true,
1973
+ "original": {
1974
+ "value": "de3e09",
1975
+ "public": true,
1976
+ "comment": "{comments.color.brand.value.comment}",
1977
+ "neutral": true,
1978
+ "usage": "Conversational colors add warmth and energy to our experience",
1979
+ "wcag": "n/a",
1980
+ "deprecated": false
1981
+ },
1982
+ "name": "ds-color-brand-canyon-400",
1983
+ "attributes": {
1984
+ "category": "color",
1985
+ "type": "brand",
1986
+ "item": "canyon",
1987
+ "subitem": "400"
1988
+ },
1989
+ "path": [
1990
+ "color",
1991
+ "brand",
1992
+ "canyon",
1993
+ "400"
1994
+ ]
1995
+ },
1996
+ "500": {
1997
+ "value": "#b83302",
1998
+ "public": true,
1999
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2000
+ "neutral": true,
2001
+ "usage": "Conversational colors add warmth and energy to our experience",
2002
+ "wcag": "n/a",
2003
+ "deprecated": false,
2004
+ "filePath": "./src/color/brand.json",
2005
+ "isSource": true,
2006
+ "original": {
2007
+ "value": "b83302",
2008
+ "public": true,
2009
+ "comment": "{comments.color.brand.value.comment}",
2010
+ "neutral": true,
2011
+ "usage": "Conversational colors add warmth and energy to our experience",
2012
+ "wcag": "n/a",
2013
+ "deprecated": false
2014
+ },
2015
+ "name": "ds-color-brand-canyon-500",
2016
+ "attributes": {
2017
+ "category": "color",
2018
+ "type": "brand",
2019
+ "item": "canyon",
2020
+ "subitem": "500"
2021
+ },
2022
+ "path": [
2023
+ "color",
2024
+ "brand",
2025
+ "canyon",
2026
+ "500"
2027
+ ]
2028
+ }
2029
+ },
2030
+ "goldcoast": {
2031
+ "100": {
2032
+ "value": "#fff0cd",
2033
+ "public": true,
2034
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2035
+ "neutral": true,
2036
+ "usage": "Conversational colors add warmth and energy to our experience",
2037
+ "wcag": "n/a",
2038
+ "deprecated": false,
2039
+ "filePath": "./src/color/brand.json",
2040
+ "isSource": true,
2041
+ "original": {
2042
+ "value": "fff0cd",
2043
+ "public": true,
2044
+ "comment": "{comments.color.brand.value.comment}",
2045
+ "neutral": true,
2046
+ "usage": "Conversational colors add warmth and energy to our experience",
2047
+ "wcag": "n/a",
2048
+ "deprecated": false
2049
+ },
2050
+ "name": "ds-color-brand-goldcoast-100",
2051
+ "attributes": {
2052
+ "category": "color",
2053
+ "type": "brand",
2054
+ "item": "goldcoast",
2055
+ "subitem": "100"
2056
+ },
2057
+ "path": [
2058
+ "color",
2059
+ "brand",
2060
+ "goldcoast",
2061
+ "100"
2062
+ ]
2063
+ },
2064
+ "200": {
2065
+ "value": "#ffdb67",
2066
+ "public": true,
2067
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2068
+ "neutral": true,
2069
+ "usage": "Conversational colors add warmth and energy to our experience",
2070
+ "wcag": "n/a",
2071
+ "deprecated": false,
2072
+ "filePath": "./src/color/brand.json",
2073
+ "isSource": true,
2074
+ "original": {
2075
+ "value": "ffdb67",
2076
+ "public": true,
2077
+ "comment": "{comments.color.brand.value.comment}",
2078
+ "neutral": true,
2079
+ "usage": "Conversational colors add warmth and energy to our experience",
2080
+ "wcag": "n/a",
2081
+ "deprecated": false
2082
+ },
2083
+ "name": "ds-color-brand-goldcoast-200",
2084
+ "attributes": {
2085
+ "category": "color",
2086
+ "type": "brand",
2087
+ "item": "goldcoast",
2088
+ "subitem": "200"
2089
+ },
2090
+ "path": [
2091
+ "color",
2092
+ "brand",
2093
+ "goldcoast",
2094
+ "200"
2095
+ ]
2096
+ },
2097
+ "300": {
2098
+ "value": "#ffd200",
2099
+ "public": true,
2100
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2101
+ "neutral": true,
2102
+ "usage": "Conversational colors add warmth and energy to our experience",
2103
+ "wcag": "n/a",
2104
+ "deprecated": false,
2105
+ "filePath": "./src/color/brand.json",
2106
+ "isSource": true,
2107
+ "original": {
2108
+ "value": "ffd200",
2109
+ "public": true,
2110
+ "comment": "{comments.color.brand.value.comment}",
2111
+ "neutral": true,
2112
+ "usage": "Conversational colors add warmth and energy to our experience",
2113
+ "wcag": "n/a",
2114
+ "deprecated": false
2115
+ },
2116
+ "name": "ds-color-brand-goldcoast-300",
2117
+ "attributes": {
2118
+ "category": "color",
2119
+ "type": "brand",
2120
+ "item": "goldcoast",
2121
+ "subitem": "300"
2122
+ },
2123
+ "path": [
2124
+ "color",
2125
+ "brand",
2126
+ "goldcoast",
2127
+ "300"
2128
+ ]
2129
+ },
2130
+ "400": {
2131
+ "value": "#e5ad07",
2132
+ "public": true,
2133
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2134
+ "neutral": true,
2135
+ "usage": "Conversational colors add warmth and energy to our experience",
2136
+ "wcag": "n/a",
2137
+ "deprecated": false,
2138
+ "filePath": "./src/color/brand.json",
2139
+ "isSource": true,
2140
+ "original": {
2141
+ "value": "e5ad07",
2142
+ "public": true,
2143
+ "comment": "{comments.color.brand.value.comment}",
2144
+ "neutral": true,
2145
+ "usage": "Conversational colors add warmth and energy to our experience",
2146
+ "wcag": "n/a",
2147
+ "deprecated": false
2148
+ },
2149
+ "name": "ds-color-brand-goldcoast-400",
2150
+ "attributes": {
2151
+ "category": "color",
2152
+ "type": "brand",
2153
+ "item": "goldcoast",
2154
+ "subitem": "400"
2155
+ },
2156
+ "path": [
2157
+ "color",
2158
+ "brand",
2159
+ "goldcoast",
2160
+ "400"
2161
+ ]
2162
+ },
2163
+ "500": {
2164
+ "value": "#b88624",
2165
+ "public": true,
2166
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2167
+ "neutral": true,
2168
+ "usage": "Conversational colors add warmth and energy to our experience",
2169
+ "wcag": "n/a",
2170
+ "deprecated": false,
2171
+ "filePath": "./src/color/brand.json",
2172
+ "isSource": true,
2173
+ "original": {
2174
+ "value": "b88624",
2175
+ "public": true,
2176
+ "comment": "{comments.color.brand.value.comment}",
2177
+ "neutral": true,
2178
+ "usage": "Conversational colors add warmth and energy to our experience",
2179
+ "wcag": "n/a",
2180
+ "deprecated": false
2181
+ },
2182
+ "name": "ds-color-brand-goldcoast-500",
2183
+ "attributes": {
2184
+ "category": "color",
2185
+ "type": "brand",
2186
+ "item": "goldcoast",
2187
+ "subitem": "500"
2188
+ },
2189
+ "path": [
2190
+ "color",
2191
+ "brand",
2192
+ "goldcoast",
2193
+ "500"
2194
+ ]
2195
+ }
2196
+ },
2197
+ "neutral": {
2198
+ "100": {
2199
+ "value": "#f9fbfc",
2200
+ "public": true,
2201
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2202
+ "neutral": true,
2203
+ "usage": "TBD...",
2204
+ "wcag": "n/a",
2205
+ "deprecated": false,
2206
+ "filePath": "./src/color/brand.json",
2207
+ "isSource": true,
2208
+ "original": {
2209
+ "value": "f9fbfc",
2210
+ "public": true,
2211
+ "comment": "{comments.color.brand.value.comment}",
2212
+ "neutral": true,
2213
+ "usage": "TBD...",
2214
+ "wcag": "n/a",
2215
+ "deprecated": false
2216
+ },
2217
+ "name": "ds-color-brand-neutral-100",
2218
+ "attributes": {
2219
+ "category": "color",
2220
+ "type": "brand",
2221
+ "item": "neutral",
2222
+ "subitem": "100"
2223
+ },
2224
+ "path": [
2225
+ "color",
2226
+ "brand",
2227
+ "neutral",
2228
+ "100"
2229
+ ]
2230
+ },
2231
+ "200": {
2232
+ "value": "#e2eaef",
2233
+ "public": true,
2234
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2235
+ "neutral": true,
2236
+ "usage": "TBD...",
2237
+ "wcag": "n/a",
2238
+ "deprecated": false,
2239
+ "filePath": "./src/color/brand.json",
2240
+ "isSource": true,
2241
+ "original": {
2242
+ "value": "e2eaef",
2243
+ "public": true,
2244
+ "comment": "{comments.color.brand.value.comment}",
2245
+ "neutral": true,
2246
+ "usage": "TBD...",
2247
+ "wcag": "n/a",
2248
+ "deprecated": false
2249
+ },
2250
+ "name": "ds-color-brand-neutral-200",
2251
+ "attributes": {
2252
+ "category": "color",
2253
+ "type": "brand",
2254
+ "item": "neutral",
2255
+ "subitem": "200"
2256
+ },
2257
+ "path": [
2258
+ "color",
2259
+ "brand",
2260
+ "neutral",
2261
+ "200"
2262
+ ]
2263
+ },
2264
+ "300": {
2265
+ "value": "#cbd8e2",
2266
+ "public": true,
2267
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2268
+ "neutral": true,
2269
+ "usage": "TBD...",
2270
+ "wcag": "n/a",
2271
+ "deprecated": false,
2272
+ "filePath": "./src/color/brand.json",
2273
+ "isSource": true,
2274
+ "original": {
2275
+ "value": "cbd8e2",
2276
+ "public": true,
2277
+ "comment": "{comments.color.brand.value.comment}",
2278
+ "neutral": true,
2279
+ "usage": "TBD...",
2280
+ "wcag": "n/a",
2281
+ "deprecated": false
2282
+ },
2283
+ "name": "ds-color-brand-neutral-300",
2284
+ "attributes": {
2285
+ "category": "color",
2286
+ "type": "brand",
2287
+ "item": "neutral",
2288
+ "subitem": "300"
2289
+ },
2290
+ "path": [
2291
+ "color",
2292
+ "brand",
2293
+ "neutral",
2294
+ "300"
2295
+ ]
2296
+ },
2297
+ "400": {
2298
+ "value": "#9fabbb",
2299
+ "public": true,
2300
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2301
+ "neutral": true,
2302
+ "usage": "TBD...",
2303
+ "wcag": "n/a",
2304
+ "deprecated": false,
2305
+ "filePath": "./src/color/brand.json",
2306
+ "isSource": true,
2307
+ "original": {
2308
+ "value": "9fabbb",
2309
+ "public": true,
2310
+ "comment": "{comments.color.brand.value.comment}",
2311
+ "neutral": true,
2312
+ "usage": "TBD...",
2313
+ "wcag": "n/a",
2314
+ "deprecated": false
2315
+ },
2316
+ "name": "ds-color-brand-neutral-400",
2317
+ "attributes": {
2318
+ "category": "color",
2319
+ "type": "brand",
2320
+ "item": "neutral",
2321
+ "subitem": "400"
2322
+ },
2323
+ "path": [
2324
+ "color",
2325
+ "brand",
2326
+ "neutral",
2327
+ "400"
2328
+ ]
2329
+ },
2330
+ "500": {
2331
+ "value": "#626b79",
2332
+ "public": true,
2333
+ "comment": "\n // Please consider descriptive token prior to using brand token",
2334
+ "neutral": true,
2335
+ "usage": "TBD...",
2336
+ "wcag": "n/a",
2337
+ "deprecated": false,
2338
+ "filePath": "./src/color/brand.json",
2339
+ "isSource": true,
2340
+ "original": {
2341
+ "value": "626b79",
2342
+ "public": true,
2343
+ "comment": "{comments.color.brand.value.comment}",
2344
+ "neutral": true,
2345
+ "usage": "TBD...",
2346
+ "wcag": "n/a",
2347
+ "deprecated": false
2348
+ },
2349
+ "name": "ds-color-brand-neutral-500",
2350
+ "attributes": {
2351
+ "category": "color",
2352
+ "type": "brand",
2353
+ "item": "neutral",
2354
+ "subitem": "500"
2355
+ },
2356
+ "path": [
2357
+ "color",
2358
+ "brand",
2359
+ "neutral",
2360
+ "500"
2361
+ ]
2362
+ }
2363
+ },
2364
+ "gray": {
2365
+ "100": {
2366
+ "value": "#f8f8f8",
2367
+ "public": true,
2368
+ "neutral": true,
2369
+ "usage": "Neutral accent",
2370
+ "wcag": "n/a",
2371
+ "deprecated": false,
2372
+ "filePath": "./src/color/brand.json",
2373
+ "isSource": true,
2374
+ "original": {
2375
+ "value": "f8f8f8",
2376
+ "public": true,
2377
+ "neutral": true,
2378
+ "usage": "Neutral accent",
2379
+ "wcag": "n/a",
2380
+ "deprecated": false
2381
+ },
2382
+ "name": "ds-color-brand-gray-100",
2383
+ "attributes": {
2384
+ "category": "color",
2385
+ "type": "brand",
2386
+ "item": "gray",
2387
+ "subitem": "100"
2388
+ },
2389
+ "path": [
2390
+ "color",
2391
+ "brand",
2392
+ "gray",
2393
+ "100"
2394
+ ]
2395
+ },
2396
+ "200": {
2397
+ "value": "#dbdbdb",
2398
+ "public": true,
2399
+ "neutral": true,
2400
+ "usage": "Neutral accent",
2401
+ "wcag": "n/a",
2402
+ "deprecated": false,
2403
+ "filePath": "./src/color/brand.json",
2404
+ "isSource": true,
2405
+ "original": {
2406
+ "value": "dbdbdb",
2407
+ "public": true,
2408
+ "neutral": true,
2409
+ "usage": "Neutral accent",
2410
+ "wcag": "n/a",
2411
+ "deprecated": false
2412
+ },
2413
+ "name": "ds-color-brand-gray-200",
2414
+ "attributes": {
2415
+ "category": "color",
2416
+ "type": "brand",
2417
+ "item": "gray",
2418
+ "subitem": "200"
2419
+ },
2420
+ "path": [
2421
+ "color",
2422
+ "brand",
2423
+ "gray",
2424
+ "200"
2425
+ ]
2426
+ },
2427
+ "300": {
2428
+ "value": "#b2b2b2",
2429
+ "public": true,
2430
+ "neutral": true,
2431
+ "usage": "Neutral accent",
2432
+ "wcag": "n/a",
2433
+ "deprecated": false,
2434
+ "filePath": "./src/color/brand.json",
2435
+ "isSource": true,
2436
+ "original": {
2437
+ "value": "b2b2b2",
2438
+ "public": true,
2439
+ "neutral": true,
2440
+ "usage": "Neutral accent",
2441
+ "wcag": "n/a",
2442
+ "deprecated": false
2443
+ },
2444
+ "name": "ds-color-brand-gray-300",
2445
+ "attributes": {
2446
+ "category": "color",
2447
+ "type": "brand",
2448
+ "item": "gray",
2449
+ "subitem": "300"
2450
+ },
2451
+ "path": [
2452
+ "color",
2453
+ "brand",
2454
+ "gray",
2455
+ "300"
2456
+ ]
2457
+ },
2458
+ "400": {
2459
+ "value": "#767676",
2460
+ "public": true,
2461
+ "neutral": true,
2462
+ "usage": "Neutral accent",
2463
+ "wcag": "n/a",
2464
+ "deprecated": false,
2465
+ "filePath": "./src/color/brand.json",
2466
+ "isSource": true,
2467
+ "original": {
2468
+ "value": "767676",
2469
+ "public": true,
2470
+ "neutral": true,
2471
+ "usage": "Neutral accent",
2472
+ "wcag": "n/a",
2473
+ "deprecated": false
2474
+ },
2475
+ "name": "ds-color-brand-gray-400",
2476
+ "attributes": {
2477
+ "category": "color",
2478
+ "type": "brand",
2479
+ "item": "gray",
2480
+ "subitem": "400"
2481
+ },
2482
+ "path": [
2483
+ "color",
2484
+ "brand",
2485
+ "gray",
2486
+ "400"
2487
+ ]
2488
+ },
2489
+ "500": {
2490
+ "value": "#222222",
2491
+ "public": true,
2492
+ "neutral": true,
2493
+ "usage": "Neutral accent",
2494
+ "wcag": "n/a",
2495
+ "deprecated": false,
2496
+ "filePath": "./src/color/brand.json",
2497
+ "isSource": true,
2498
+ "original": {
2499
+ "value": "222222",
2500
+ "public": true,
2501
+ "neutral": true,
2502
+ "usage": "Neutral accent",
2503
+ "wcag": "n/a",
2504
+ "deprecated": false
2505
+ },
2506
+ "name": "ds-color-brand-gray-500",
2507
+ "attributes": {
2508
+ "category": "color",
2509
+ "type": "brand",
2510
+ "item": "gray",
2511
+ "subitem": "500"
2512
+ },
2513
+ "path": [
2514
+ "color",
2515
+ "brand",
2516
+ "gray",
2517
+ "500"
2518
+ ]
2519
+ }
2520
+ },
2521
+ "goldgray": {
2522
+ "100": {
2523
+ "value": "#c5c1bf",
2524
+ "public": true,
2525
+ "usage": "Tier branding color",
2526
+ "deprecated": false,
2527
+ "filePath": "./src/color/brand.json",
2528
+ "isSource": true,
2529
+ "original": {
2530
+ "value": "C5C1BF",
2531
+ "public": true,
2532
+ "usage": "Tier branding color",
2533
+ "deprecated": false
2534
+ },
2535
+ "name": "ds-color-brand-goldgray-100",
2536
+ "attributes": {
2537
+ "category": "color",
2538
+ "type": "brand",
2539
+ "item": "goldgray",
2540
+ "subitem": "100"
2541
+ },
2542
+ "path": [
2543
+ "color",
2544
+ "brand",
2545
+ "goldgray",
2546
+ "100"
2547
+ ]
2548
+ },
2549
+ "200": {
2550
+ "value": "#726e6c",
2551
+ "public": true,
2552
+ "usage": "Tier branding color",
2553
+ "deprecated": false,
2554
+ "filePath": "./src/color/brand.json",
2555
+ "isSource": true,
2556
+ "original": {
2557
+ "value": "726E6C",
2558
+ "public": true,
2559
+ "usage": "Tier branding color",
2560
+ "deprecated": false
2561
+ },
2562
+ "name": "ds-color-brand-goldgray-200",
2563
+ "attributes": {
2564
+ "category": "color",
2565
+ "type": "brand",
2566
+ "item": "goldgray",
2567
+ "subitem": "200"
2568
+ },
2569
+ "path": [
2570
+ "color",
2571
+ "brand",
2572
+ "goldgray",
2573
+ "200"
2574
+ ]
2575
+ }
2576
+ },
2577
+ "gold": {
2578
+ "100": {
2579
+ "value": "#ccbc94",
2580
+ "public": true,
2581
+ "usage": "Tier branding color",
2582
+ "deprecated": false,
2583
+ "filePath": "./src/color/brand.json",
2584
+ "isSource": true,
2585
+ "original": {
2586
+ "value": "CCBC94",
2587
+ "public": true,
2588
+ "usage": "Tier branding color",
2589
+ "deprecated": false
2590
+ },
2591
+ "name": "ds-color-brand-gold-100",
2592
+ "attributes": {
2593
+ "category": "color",
2594
+ "type": "brand",
2595
+ "item": "gold",
2596
+ "subitem": "100"
2597
+ },
2598
+ "path": [
2599
+ "color",
2600
+ "brand",
2601
+ "gold",
2602
+ "100"
2603
+ ]
2604
+ },
2605
+ "200": {
2606
+ "value": "#7f682e",
2607
+ "public": true,
2608
+ "usage": "Tier branding color",
2609
+ "deprecated": false,
2610
+ "filePath": "./src/color/brand.json",
2611
+ "isSource": true,
2612
+ "original": {
2613
+ "value": "7F682E",
2614
+ "public": true,
2615
+ "usage": "Tier branding color",
2616
+ "deprecated": false
2617
+ },
2618
+ "name": "ds-color-brand-gold-200",
2619
+ "attributes": {
2620
+ "category": "color",
2621
+ "type": "brand",
2622
+ "item": "gold",
2623
+ "subitem": "200"
2624
+ },
2625
+ "path": [
2626
+ "color",
2627
+ "brand",
2628
+ "gold",
2629
+ "200"
2630
+ ]
2631
+ }
2632
+ },
2633
+ "emerald": {
2634
+ "value": "#139142",
2635
+ "public": true,
2636
+ "usage": "Tier branding color",
2637
+ "deprecated": false,
2638
+ "filePath": "./src/color/brand.json",
2639
+ "isSource": true,
2640
+ "original": {
2641
+ "value": "139142",
2642
+ "public": true,
2643
+ "usage": "Tier branding color",
2644
+ "deprecated": false
2645
+ },
2646
+ "name": "ds-color-brand-emerald",
2647
+ "attributes": {
2648
+ "category": "color",
2649
+ "type": "brand",
2650
+ "item": "emerald"
2651
+ },
2652
+ "path": [
2653
+ "color",
2654
+ "brand",
2655
+ "emerald"
2656
+ ]
2657
+ },
2658
+ "sapphire": {
2659
+ "value": "#015daa",
2660
+ "public": true,
2661
+ "usage": "Tier branding color",
2662
+ "deprecated": false,
2663
+ "filePath": "./src/color/brand.json",
2664
+ "isSource": true,
2665
+ "original": {
2666
+ "value": "015DAA",
2667
+ "public": true,
2668
+ "usage": "Tier branding color",
2669
+ "deprecated": false
2670
+ },
2671
+ "name": "ds-color-brand-sapphire",
2672
+ "attributes": {
2673
+ "category": "color",
2674
+ "type": "brand",
2675
+ "item": "sapphire"
2676
+ },
2677
+ "path": [
2678
+ "color",
2679
+ "brand",
2680
+ "sapphire"
2681
+ ]
2682
+ },
2683
+ "ruby": {
2684
+ "value": "#a41d4a",
2685
+ "public": true,
2686
+ "usage": "Tier branding color",
2687
+ "deprecated": false,
2688
+ "filePath": "./src/color/brand.json",
2689
+ "isSource": true,
2690
+ "original": {
2691
+ "value": "A41D4A",
2692
+ "public": true,
2693
+ "usage": "Tier branding color",
2694
+ "deprecated": false
2695
+ },
2696
+ "name": "ds-color-brand-ruby",
2697
+ "attributes": {
2698
+ "category": "color",
2699
+ "type": "brand",
2700
+ "item": "ruby"
2701
+ },
2702
+ "path": [
2703
+ "color",
2704
+ "brand",
2705
+ "ruby"
2706
+ ]
2707
+ }
2708
+ },
2709
+ "icon": {
2710
+ "primary": {
2711
+ "default": {
2712
+ "value": "#626b79",
2713
+ "public": true,
2714
+ "default": true,
2715
+ "usage": "Primary color for icons on light backgrounds",
2716
+ "wcag": "AAA",
2717
+ "deprecated": false,
2718
+ "filePath": "./src/color/icon.json",
2719
+ "isSource": true,
2720
+ "original": {
2721
+ "value": "{color.base.neutral.500.value}",
2722
+ "public": true,
2723
+ "default": true,
2724
+ "usage": "Primary color for icons on light backgrounds",
2725
+ "wcag": "AAA",
2726
+ "deprecated": false
2727
+ },
2728
+ "name": "ds-color-icon-primary-default",
2729
+ "attributes": {
2730
+ "category": "color",
2731
+ "type": "icon",
2732
+ "item": "primary",
2733
+ "subitem": "default"
2734
+ },
2735
+ "path": [
2736
+ "color",
2737
+ "icon",
2738
+ "primary",
2739
+ "default"
2740
+ ]
2741
+ },
2742
+ "inverse": {
2743
+ "value": "#9fabbb",
2744
+ "public": true,
2745
+ "inverse": true,
2746
+ "usage": "Primary color for icons on dark backgrounds",
2747
+ "wcag": "AAA",
2748
+ "deprecated": false,
2749
+ "filePath": "./src/color/icon.json",
2750
+ "isSource": true,
2751
+ "original": {
2752
+ "value": "{color.base.neutral.400.value}",
2753
+ "public": true,
2754
+ "inverse": true,
2755
+ "usage": "Primary color for icons on dark backgrounds",
2756
+ "wcag": "AAA",
2757
+ "deprecated": false
2758
+ },
2759
+ "name": "ds-color-icon-primary-inverse",
2760
+ "attributes": {
2761
+ "category": "color",
2762
+ "type": "icon",
2763
+ "item": "primary",
2764
+ "subitem": "inverse"
2765
+ },
2766
+ "path": [
2767
+ "color",
2768
+ "icon",
2769
+ "primary",
2770
+ "inverse"
2771
+ ]
2772
+ }
2773
+ },
2774
+ "emphasis": {
2775
+ "default": {
2776
+ "value": "#222222",
2777
+ "public": true,
2778
+ "default": true,
2779
+ "usage": "Emphasis or darkest icon color on light backgrounds",
2780
+ "wcag": "AAA",
2781
+ "deprecated": false,
2782
+ "filePath": "./src/color/icon.json",
2783
+ "isSource": true,
2784
+ "original": {
2785
+ "value": "{color.base.gray.500.value}",
2786
+ "public": true,
2787
+ "default": true,
2788
+ "usage": "Emphasis or darkest icon color on light backgrounds",
2789
+ "wcag": "AAA",
2790
+ "deprecated": false
2791
+ },
2792
+ "name": "ds-color-icon-emphasis-default",
2793
+ "attributes": {
2794
+ "category": "color",
2795
+ "type": "icon",
2796
+ "item": "emphasis",
2797
+ "subitem": "default"
2798
+ },
2799
+ "path": [
2800
+ "color",
2801
+ "icon",
2802
+ "emphasis",
2803
+ "default"
2804
+ ]
2805
+ },
2806
+ "inverse": {
2807
+ "value": "#ffffff",
2808
+ "public": true,
2809
+ "inverse": true,
2810
+ "usage": "Emphasis or lightest icon color on dark backgrounds",
2811
+ "wcag": "AAA",
2812
+ "deprecated": false,
2813
+ "filePath": "./src/color/icon.json",
2814
+ "isSource": true,
2815
+ "original": {
2816
+ "value": "{color.base.white.value}",
2817
+ "public": true,
2818
+ "inverse": true,
2819
+ "usage": "Emphasis or lightest icon color on dark backgrounds",
2820
+ "wcag": "AAA",
2821
+ "deprecated": false
2822
+ },
2823
+ "name": "ds-color-icon-emphasis-inverse",
2824
+ "attributes": {
2825
+ "category": "color",
2826
+ "type": "icon",
2827
+ "item": "emphasis",
2828
+ "subitem": "inverse"
2829
+ },
2830
+ "path": [
2831
+ "color",
2832
+ "icon",
2833
+ "emphasis",
2834
+ "inverse"
2835
+ ]
2836
+ }
2837
+ },
2838
+ "accent": {
2839
+ "default": {
2840
+ "value": "#0074c8",
2841
+ "public": true,
2842
+ "default": true,
2843
+ "usage": "Accent color for icon color on light backgrounds",
2844
+ "wcag": "AA",
2845
+ "deprecated": false,
2846
+ "filePath": "./src/color/icon.json",
2847
+ "isSource": true,
2848
+ "original": {
2849
+ "value": "{color.brand.atlas.400.value}",
2850
+ "public": true,
2851
+ "default": true,
2852
+ "usage": "Accent color for icon color on light backgrounds",
2853
+ "wcag": "AA",
2854
+ "deprecated": false
2855
+ },
2856
+ "name": "ds-color-icon-accent-default",
2857
+ "attributes": {
2858
+ "category": "color",
2859
+ "type": "icon",
2860
+ "item": "accent",
2861
+ "subitem": "default"
2862
+ },
2863
+ "path": [
2864
+ "color",
2865
+ "icon",
2866
+ "accent",
2867
+ "default"
2868
+ ]
2869
+ }
2870
+ },
2871
+ "disabled": {
2872
+ "default": {
2873
+ "value": "rgba(0, 0, 0, 0.15)",
2874
+ "public": true,
2875
+ "default": true,
2876
+ "usage": "Disabled icon color on light backgrounds",
2877
+ "wcag": "n/a",
2878
+ "deprecated": false,
2879
+ "filePath": "./src/color/icon.json",
2880
+ "isSource": true,
2881
+ "original": {
2882
+ "value": "{color.base.black-opacity-15.value}",
2883
+ "public": true,
2884
+ "default": true,
2885
+ "usage": "Disabled icon color on light backgrounds",
2886
+ "wcag": "n/a",
2887
+ "deprecated": false
2888
+ },
2889
+ "name": "ds-color-icon-disabled-default",
2890
+ "attributes": {
2891
+ "category": "color",
2892
+ "type": "icon",
2893
+ "item": "disabled",
2894
+ "subitem": "default"
2895
+ },
2896
+ "path": [
2897
+ "color",
2898
+ "icon",
2899
+ "disabled",
2900
+ "default"
2901
+ ]
2902
+ }
2903
+ }
2904
+ },
2905
+ "text": {
2906
+ "primary": {
2907
+ "default": {
2908
+ "value": "#222222",
2909
+ "public": true,
2910
+ "default": true,
2911
+ "usage": "Primary color for body and header text light mode and light backgrounds",
2912
+ "wcag": "AAA",
2913
+ "deprecated": false,
2914
+ "filePath": "./src/color/text.json",
2915
+ "isSource": true,
2916
+ "original": {
2917
+ "value": "{color.base.gray.500.value}",
2918
+ "public": true,
2919
+ "default": true,
2920
+ "usage": "Primary color for body and header text light mode and light backgrounds",
2921
+ "wcag": "AAA",
2922
+ "deprecated": false
2923
+ },
2924
+ "name": "ds-color-text-primary-default",
2925
+ "attributes": {
2926
+ "category": "color",
2927
+ "type": "text",
2928
+ "item": "primary",
2929
+ "subitem": "default"
2930
+ },
2931
+ "path": [
2932
+ "color",
2933
+ "text",
2934
+ "primary",
2935
+ "default"
2936
+ ]
2937
+ },
2938
+ "inverse": {
2939
+ "value": "#ffffff",
2940
+ "public": true,
2941
+ "inverse": true,
2942
+ "usage": "Primary color for body and header text for dark mode and dark backgrounds",
2943
+ "wcag": "AAA",
2944
+ "deprecated": false,
2945
+ "filePath": "./src/color/text.json",
2946
+ "isSource": true,
2947
+ "original": {
2948
+ "value": "{color.base.white.value}",
2949
+ "public": true,
2950
+ "inverse": true,
2951
+ "usage": "Primary color for body and header text for dark mode and dark backgrounds",
2952
+ "wcag": "AAA",
2953
+ "deprecated": false
2954
+ },
2955
+ "name": "ds-color-text-primary-inverse",
2956
+ "attributes": {
2957
+ "category": "color",
2958
+ "type": "text",
2959
+ "item": "primary",
2960
+ "subitem": "inverse"
2961
+ },
2962
+ "path": [
2963
+ "color",
2964
+ "text",
2965
+ "primary",
2966
+ "inverse"
2967
+ ]
2968
+ }
2969
+ },
2970
+ "secondary": {
2971
+ "default": {
2972
+ "value": "#626b79",
2973
+ "public": true,
2974
+ "default": true,
2975
+ "usage": "Secondary color for body text on light backgrounds",
2976
+ "wcag": "AAA",
2977
+ "deprecated": false,
2978
+ "filePath": "./src/color/text.json",
2979
+ "isSource": true,
2980
+ "original": {
2981
+ "value": "{color.base.neutral.500.value}",
2982
+ "public": true,
2983
+ "default": true,
2984
+ "usage": "Secondary color for body text on light backgrounds",
2985
+ "wcag": "AAA",
2986
+ "deprecated": false
2987
+ },
2988
+ "name": "ds-color-text-secondary-default",
2989
+ "attributes": {
2990
+ "category": "color",
2991
+ "type": "text",
2992
+ "item": "secondary",
2993
+ "subitem": "default"
2994
+ },
2995
+ "path": [
2996
+ "color",
2997
+ "text",
2998
+ "secondary",
2999
+ "default"
3000
+ ]
3001
+ },
3002
+ "inverse": {
3003
+ "value": "#9fabbb",
3004
+ "public": true,
3005
+ "inverse": true,
3006
+ "usage": "Secondary color for body text on dark backgrounds",
3007
+ "wcag": "AAA",
3008
+ "deprecated": false,
3009
+ "filePath": "./src/color/text.json",
3010
+ "isSource": true,
3011
+ "original": {
3012
+ "value": "{color.base.neutral.400.value}",
3013
+ "public": true,
3014
+ "inverse": true,
3015
+ "usage": "Secondary color for body text on dark backgrounds",
3016
+ "wcag": "AAA",
3017
+ "deprecated": false
3018
+ },
3019
+ "name": "ds-color-text-secondary-inverse",
3020
+ "attributes": {
3021
+ "category": "color",
3022
+ "type": "text",
3023
+ "item": "secondary",
3024
+ "subitem": "inverse"
3025
+ },
3026
+ "path": [
3027
+ "color",
3028
+ "text",
3029
+ "secondary",
3030
+ "inverse"
3031
+ ]
3032
+ }
3033
+ },
3034
+ "link": {
3035
+ "default": {
3036
+ "value": "#0074c8",
3037
+ "public": true,
3038
+ "default": true,
3039
+ "usage": "Link text color on light backgrounds",
3040
+ "wcag": "AA",
3041
+ "deprecated": false,
3042
+ "filePath": "./src/color/text.json",
3043
+ "isSource": true,
3044
+ "original": {
3045
+ "value": "{color.brand.atlas.400.value}",
3046
+ "public": true,
3047
+ "default": true,
3048
+ "usage": "Link text color on light backgrounds",
3049
+ "wcag": "AA",
3050
+ "deprecated": false
3051
+ },
3052
+ "name": "ds-color-text-link-default",
3053
+ "attributes": {
3054
+ "category": "color",
3055
+ "type": "text",
3056
+ "item": "link",
3057
+ "subitem": "default"
3058
+ },
3059
+ "path": [
3060
+ "color",
3061
+ "text",
3062
+ "link",
3063
+ "default"
3064
+ ]
3065
+ },
3066
+ "inverse": {
3067
+ "value": "#00cff0",
3068
+ "public": true,
3069
+ "inverse": true,
3070
+ "usage": "Link text color on light backgrounds",
3071
+ "wcag": "AA",
3072
+ "deprecated": false,
3073
+ "filePath": "./src/color/text.json",
3074
+ "isSource": true,
3075
+ "original": {
3076
+ "value": "{color.brand.breeze.300.value}",
3077
+ "public": true,
3078
+ "inverse": true,
3079
+ "usage": "Link text color on light backgrounds",
3080
+ "wcag": "AA",
3081
+ "deprecated": false
3082
+ },
3083
+ "name": "ds-color-text-link-inverse",
3084
+ "attributes": {
3085
+ "category": "color",
3086
+ "type": "text",
3087
+ "item": "link",
3088
+ "subitem": "inverse"
3089
+ },
3090
+ "path": [
3091
+ "color",
3092
+ "text",
3093
+ "link",
3094
+ "inverse"
3095
+ ]
3096
+ }
3097
+ },
3098
+ "error": {
3099
+ "default": {
3100
+ "value": "#df0b37",
3101
+ "public": true,
3102
+ "default": true,
3103
+ "usage": "Error text color on light backgrounds",
3104
+ "wcag": "AA",
3105
+ "deprecated": false,
3106
+ "filePath": "./src/color/text.json",
3107
+ "isSource": true,
3108
+ "original": {
3109
+ "value": "{color.state.error.500.value}",
3110
+ "public": true,
3111
+ "default": true,
3112
+ "usage": "Error text color on light backgrounds",
3113
+ "wcag": "AA",
3114
+ "deprecated": false
3115
+ },
3116
+ "name": "ds-color-text-error-default",
3117
+ "attributes": {
3118
+ "category": "color",
3119
+ "type": "text",
3120
+ "item": "error",
3121
+ "subitem": "default"
3122
+ },
3123
+ "path": [
3124
+ "color",
3125
+ "text",
3126
+ "error",
3127
+ "default"
3128
+ ]
3129
+ },
3130
+ "inverse": {
3131
+ "value": "#ff999b",
3132
+ "public": true,
3133
+ "inverse": true,
3134
+ "usage": "Error text color on dark backgrounds",
3135
+ "wcag": "AA",
3136
+ "deprecated": false,
3137
+ "filePath": "./src/color/text.json",
3138
+ "isSource": true,
3139
+ "original": {
3140
+ "value": "{color.state.error.100.value}",
3141
+ "public": true,
3142
+ "inverse": true,
3143
+ "usage": "Error text color on dark backgrounds",
3144
+ "wcag": "AA",
3145
+ "deprecated": false
3146
+ },
3147
+ "name": "ds-color-text-error-inverse",
3148
+ "attributes": {
3149
+ "category": "color",
3150
+ "type": "text",
3151
+ "item": "error",
3152
+ "subitem": "inverse"
3153
+ },
3154
+ "path": [
3155
+ "color",
3156
+ "text",
3157
+ "error",
3158
+ "inverse"
3159
+ ]
3160
+ }
3161
+ },
3162
+ "disabled": {
3163
+ "default": {
3164
+ "value": "#dbdbdb",
3165
+ "public": true,
3166
+ "onLight": true,
3167
+ "usage": "Disabled text color on light backgrounds",
3168
+ "wcag": "n/a",
3169
+ "deprecated": false,
3170
+ "filePath": "./src/color/text.json",
3171
+ "isSource": true,
3172
+ "original": {
3173
+ "value": "{color.base.gray.200.value}",
3174
+ "public": true,
3175
+ "onLight": true,
3176
+ "usage": "Disabled text color on light backgrounds",
3177
+ "wcag": "n/a",
3178
+ "deprecated": false
3179
+ },
3180
+ "name": "ds-color-text-disabled-default",
3181
+ "attributes": {
3182
+ "category": "color",
3183
+ "type": "text",
3184
+ "item": "disabled",
3185
+ "subitem": "default"
3186
+ },
3187
+ "path": [
3188
+ "color",
3189
+ "text",
3190
+ "disabled",
3191
+ "default"
3192
+ ]
3193
+ }
3194
+ },
3195
+ "emphasis": {
3196
+ "default": {
3197
+ "value": "#01426a",
3198
+ "public": true,
3199
+ "default": true,
3200
+ "usage": "Emphasized text color on light backgrounds",
3201
+ "wcag": "n/a",
3202
+ "deprecated": false,
3203
+ "filePath": "./src/color/text.json",
3204
+ "isSource": true,
3205
+ "original": {
3206
+ "value": "{color.brand.midnight.400.value}",
3207
+ "public": true,
3208
+ "default": true,
3209
+ "usage": "Emphasized text color on light backgrounds",
3210
+ "wcag": "n/a",
3211
+ "deprecated": false
3212
+ },
3213
+ "name": "ds-color-text-emphasis-default",
3214
+ "attributes": {
3215
+ "category": "color",
3216
+ "type": "text",
3217
+ "item": "emphasis",
3218
+ "subitem": "default"
3219
+ },
3220
+ "path": [
3221
+ "color",
3222
+ "text",
3223
+ "emphasis",
3224
+ "default"
3225
+ ]
3226
+ },
3227
+ "inverse": {
3228
+ "value": "#c1daf0",
3229
+ "public": true,
3230
+ "inverse": true,
3231
+ "usage": "Emphasized text color on dark backgrounds",
3232
+ "wcag": "n/a",
3233
+ "deprecated": false,
3234
+ "filePath": "./src/color/text.json",
3235
+ "isSource": true,
3236
+ "original": {
3237
+ "value": "{color.brand.midnight.100.value}",
3238
+ "public": true,
3239
+ "inverse": true,
3240
+ "usage": "Emphasized text color on dark backgrounds",
3241
+ "wcag": "n/a",
3242
+ "deprecated": false
3243
+ },
3244
+ "name": "ds-color-text-emphasis-inverse",
3245
+ "attributes": {
3246
+ "category": "color",
3247
+ "type": "text",
3248
+ "item": "emphasis",
3249
+ "subitem": "inverse"
3250
+ },
3251
+ "path": [
3252
+ "color",
3253
+ "text",
3254
+ "emphasis",
3255
+ "inverse"
3256
+ ]
3257
+ }
3258
+ }
3259
+ },
3260
+ "tier": {
3261
+ "alaska": {
3262
+ "mvp": {
3263
+ "default": {
3264
+ "value": "#726e6c",
3265
+ "public": true,
3266
+ "default": true,
3267
+ "usage": "MVP tier color for Alaska Airlines",
3268
+ "wcag": "n/a",
3269
+ "deprecated": false,
3270
+ "filePath": "./src/color/tier.json",
3271
+ "isSource": true,
3272
+ "original": {
3273
+ "value": "{color.brand.goldgray.200.value}",
3274
+ "public": true,
3275
+ "default": true,
3276
+ "usage": "MVP tier color for Alaska Airlines",
3277
+ "wcag": "n/a",
3278
+ "deprecated": false
3279
+ },
3280
+ "name": "ds-color-tier-alaska-mvp-default",
3281
+ "attributes": {
3282
+ "category": "color",
3283
+ "type": "tier",
3284
+ "item": "alaska",
3285
+ "subitem": "mvp",
3286
+ "state": "default"
3287
+ },
3288
+ "path": [
3289
+ "color",
3290
+ "tier",
3291
+ "alaska",
3292
+ "mvp",
3293
+ "default"
3294
+ ]
3295
+ },
3296
+ "inverse": {
3297
+ "value": "#c5c1bf",
3298
+ "public": true,
3299
+ "inverse": true,
3300
+ "usage": "MVP tier color for Alaska Airlines",
3301
+ "wcag": "n/a",
3302
+ "deprecated": false,
3303
+ "filePath": "./src/color/tier.json",
3304
+ "isSource": true,
3305
+ "original": {
3306
+ "value": "{color.brand.goldgray.100.value}",
3307
+ "public": true,
3308
+ "inverse": true,
3309
+ "usage": "MVP tier color for Alaska Airlines",
3310
+ "wcag": "n/a",
3311
+ "deprecated": false
3312
+ },
3313
+ "name": "ds-color-tier-alaska-mvp-inverse",
3314
+ "attributes": {
3315
+ "category": "color",
3316
+ "type": "tier",
3317
+ "item": "alaska",
3318
+ "subitem": "mvp",
3319
+ "state": "inverse"
3320
+ },
3321
+ "path": [
3322
+ "color",
3323
+ "tier",
3324
+ "alaska",
3325
+ "mvp",
3326
+ "inverse"
3327
+ ]
3328
+ }
3329
+ },
3330
+ "mvpgold": {
3331
+ "default": {
3332
+ "value": "#7f682e",
3333
+ "public": true,
3334
+ "default": true,
3335
+ "usage": "MVP Gold tier color for Alaska Airlines",
3336
+ "wcag": "n/a",
3337
+ "deprecated": false,
3338
+ "filePath": "./src/color/tier.json",
3339
+ "isSource": true,
3340
+ "original": {
3341
+ "value": "{color.brand.gold.200.value}",
3342
+ "public": true,
3343
+ "default": true,
3344
+ "usage": "MVP Gold tier color for Alaska Airlines",
3345
+ "wcag": "n/a",
3346
+ "deprecated": false
3347
+ },
3348
+ "name": "ds-color-tier-alaska-mvpgold-default",
3349
+ "attributes": {
3350
+ "category": "color",
3351
+ "type": "tier",
3352
+ "item": "alaska",
3353
+ "subitem": "mvpgold",
3354
+ "state": "default"
3355
+ },
3356
+ "path": [
3357
+ "color",
3358
+ "tier",
3359
+ "alaska",
3360
+ "mvpgold",
3361
+ "default"
3362
+ ]
3363
+ },
3364
+ "inverse": {
3365
+ "value": "#ccbc94",
3366
+ "public": true,
3367
+ "inverse": true,
3368
+ "usage": "MVP Gold tier color for Alaska Airlines",
3369
+ "wcag": "n/a",
3370
+ "deprecated": false,
3371
+ "filePath": "./src/color/tier.json",
3372
+ "isSource": true,
3373
+ "original": {
3374
+ "value": "{color.brand.gold.100.value}",
3375
+ "public": true,
3376
+ "inverse": true,
3377
+ "usage": "MVP Gold tier color for Alaska Airlines",
3378
+ "wcag": "n/a",
3379
+ "deprecated": false
3380
+ },
3381
+ "name": "ds-color-tier-alaska-mvpgold-inverse",
3382
+ "attributes": {
3383
+ "category": "color",
3384
+ "type": "tier",
3385
+ "item": "alaska",
3386
+ "subitem": "mvpgold",
3387
+ "state": "inverse"
3388
+ },
3389
+ "path": [
3390
+ "color",
3391
+ "tier",
3392
+ "alaska",
3393
+ "mvpgold",
3394
+ "inverse"
3395
+ ]
3396
+ }
3397
+ }
3398
+ },
3399
+ "oneworld": {
3400
+ "emerald": {
3401
+ "value": "#139142",
3402
+ "public": true,
3403
+ "onLight": true,
3404
+ "usage": "Emerald tier color for Oneworld",
3405
+ "wcag": "n/a",
3406
+ "deprecated": false,
3407
+ "filePath": "./src/color/tier.json",
3408
+ "isSource": true,
3409
+ "original": {
3410
+ "value": "{color.brand.emerald.value}",
3411
+ "public": true,
3412
+ "onLight": true,
3413
+ "usage": "Emerald tier color for Oneworld",
3414
+ "wcag": "n/a",
3415
+ "deprecated": false
3416
+ },
3417
+ "name": "ds-color-tier-oneworld-emerald",
3418
+ "attributes": {
3419
+ "category": "color",
3420
+ "type": "tier",
3421
+ "item": "oneworld",
3422
+ "subitem": "emerald"
3423
+ },
3424
+ "path": [
3425
+ "color",
3426
+ "tier",
3427
+ "oneworld",
3428
+ "emerald"
3429
+ ]
3430
+ },
3431
+ "sapphire": {
3432
+ "value": "#015daa",
3433
+ "public": true,
3434
+ "onDark": true,
3435
+ "usage": "Sapphire tier color for Oneworld",
3436
+ "wcag": "n/a",
3437
+ "deprecated": false,
3438
+ "filePath": "./src/color/tier.json",
3439
+ "isSource": true,
3440
+ "original": {
3441
+ "value": "{color.brand.sapphire.value}",
3442
+ "public": true,
3443
+ "onDark": true,
3444
+ "usage": "Sapphire tier color for Oneworld",
3445
+ "wcag": "n/a",
3446
+ "deprecated": false
3447
+ },
3448
+ "name": "ds-color-tier-oneworld-sapphire",
3449
+ "attributes": {
3450
+ "category": "color",
3451
+ "type": "tier",
3452
+ "item": "oneworld",
3453
+ "subitem": "sapphire"
3454
+ },
3455
+ "path": [
3456
+ "color",
3457
+ "tier",
3458
+ "oneworld",
3459
+ "sapphire"
3460
+ ]
3461
+ },
3462
+ "ruby": {
3463
+ "value": "#a41d4a",
3464
+ "public": true,
3465
+ "onDark": true,
3466
+ "usage": "Ruby tier color for Oneworld",
3467
+ "wcag": "n/a",
3468
+ "deprecated": false,
3469
+ "filePath": "./src/color/tier.json",
3470
+ "isSource": true,
3471
+ "original": {
3472
+ "value": "{color.brand.ruby.value}",
3473
+ "public": true,
3474
+ "onDark": true,
3475
+ "usage": "Ruby tier color for Oneworld",
3476
+ "wcag": "n/a",
3477
+ "deprecated": false
3478
+ },
3479
+ "name": "ds-color-tier-oneworld-ruby",
3480
+ "attributes": {
3481
+ "category": "color",
3482
+ "type": "tier",
3483
+ "item": "oneworld",
3484
+ "subitem": "ruby"
3485
+ },
3486
+ "path": [
3487
+ "color",
3488
+ "tier",
3489
+ "oneworld",
3490
+ "ruby"
3491
+ ]
3492
+ }
3493
+ }
3494
+ },
3495
+ "ui": {
3496
+ "default": {
3497
+ "default": {
3498
+ "value": "#0074c8",
3499
+ "public": true,
3500
+ "default": true,
3501
+ "usage": "Default interaction color affordance",
3502
+ "wcag": "AAA",
3503
+ "deprecated": false,
3504
+ "filePath": "./src/color/ui.json",
3505
+ "isSource": true,
3506
+ "original": {
3507
+ "value": "{color.brand.atlas.400.value}",
3508
+ "public": true,
3509
+ "default": true,
3510
+ "usage": "Default interaction color affordance",
3511
+ "wcag": "AAA",
3512
+ "deprecated": false
3513
+ },
3514
+ "name": "ds-color-ui-default-default",
3515
+ "attributes": {
3516
+ "category": "color",
3517
+ "type": "ui",
3518
+ "item": "default",
3519
+ "subitem": "default"
3520
+ },
3521
+ "path": [
3522
+ "color",
3523
+ "ui",
3524
+ "default",
3525
+ "default"
3526
+ ]
3527
+ }
3528
+ },
3529
+ "hover": {
3530
+ "default": {
3531
+ "value": "#054687",
3532
+ "public": true,
3533
+ "default": true,
3534
+ "usage": "Default hover color affordance",
3535
+ "wcag": "AAA",
3536
+ "deprecated": false,
3537
+ "filePath": "./src/color/ui.json",
3538
+ "isSource": true,
3539
+ "original": {
3540
+ "value": "{color.brand.atlas.500.value}",
3541
+ "public": true,
3542
+ "default": true,
3543
+ "usage": "Default hover color affordance",
3544
+ "wcag": "AAA",
3545
+ "deprecated": false
3546
+ },
3547
+ "name": "ds-color-ui-hover-default",
3548
+ "attributes": {
3549
+ "category": "color",
3550
+ "type": "ui",
3551
+ "item": "hover",
3552
+ "subitem": "default"
3553
+ },
3554
+ "path": [
3555
+ "color",
3556
+ "ui",
3557
+ "hover",
3558
+ "default"
3559
+ ]
3560
+ }
3561
+ },
3562
+ "active": {
3563
+ "default": {
3564
+ "value": "#054687",
3565
+ "public": true,
3566
+ "default": true,
3567
+ "usage": "Active state color affordance",
3568
+ "wcag": "AAA",
3569
+ "deprecated": false,
3570
+ "filePath": "./src/color/ui.json",
3571
+ "isSource": true,
3572
+ "original": {
3573
+ "value": "{color.brand.atlas.500.value}",
3574
+ "public": true,
3575
+ "default": true,
3576
+ "usage": "Active state color affordance",
3577
+ "wcag": "AAA",
3578
+ "deprecated": false
3579
+ },
3580
+ "name": "ds-color-ui-active-default",
3581
+ "attributes": {
3582
+ "category": "color",
3583
+ "type": "ui",
3584
+ "item": "active",
3585
+ "subitem": "default"
3586
+ },
3587
+ "path": [
3588
+ "color",
3589
+ "ui",
3590
+ "active",
3591
+ "default"
3592
+ ]
3593
+ }
3594
+ },
3595
+ "disabled": {
3596
+ "default": {
3597
+ "value": "rgba(0, 116, 200, 0.2)",
3598
+ "public": true,
3599
+ "default": true,
3600
+ "usage": "Disabled state color affordance",
3601
+ "wcag": "n/a",
3602
+ "deprecated": false,
3603
+ "filePath": "./src/color/ui.json",
3604
+ "isSource": true,
3605
+ "original": {
3606
+ "value": "{color.brand.atlas.400-opacity-20.value}",
3607
+ "public": true,
3608
+ "default": true,
3609
+ "usage": "Disabled state color affordance",
3610
+ "wcag": "n/a",
3611
+ "deprecated": false
3612
+ },
3613
+ "name": "ds-color-ui-disabled-default",
3614
+ "attributes": {
3615
+ "category": "color",
3616
+ "type": "ui",
3617
+ "item": "disabled",
3618
+ "subitem": "default"
3619
+ },
3620
+ "path": [
3621
+ "color",
3622
+ "ui",
3623
+ "disabled",
3624
+ "default"
3625
+ ]
3626
+ }
3627
+ },
3628
+ "bkg": {
3629
+ "hover": {
3630
+ "default": {
3631
+ "value": "rgba(0, 0, 0, 0.06)",
3632
+ "public": true,
3633
+ "default": true,
3634
+ "usage": "Default hover affordance for background colors",
3635
+ "deprecated": false,
3636
+ "filePath": "./src/color/ui.json",
3637
+ "isSource": true,
3638
+ "original": {
3639
+ "value": "0000000f",
3640
+ "public": true,
3641
+ "default": true,
3642
+ "usage": "Default hover affordance for background colors",
3643
+ "deprecated": false
3644
+ },
3645
+ "name": "ds-color-ui-bkg-hover-default",
3646
+ "attributes": {
3647
+ "category": "color",
3648
+ "type": "ui",
3649
+ "item": "bkg",
3650
+ "subitem": "hover",
3651
+ "state": "default"
3652
+ },
3653
+ "path": [
3654
+ "color",
3655
+ "ui",
3656
+ "bkg",
3657
+ "hover",
3658
+ "default"
3659
+ ]
3660
+ }
3661
+ }
3662
+ }
3663
+ }
3664
+ }
3665
+ };