@carbon/themes 10.53.2 → 11.0.0-rc.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 (45) hide show
  1. package/es/index.js +1725 -1163
  2. package/index.scss +3 -3
  3. package/lib/index.js +1716 -1333
  4. package/package.json +8 -8
  5. package/scss/{modules/_config.scss → _config.scss} +0 -0
  6. package/scss/{modules/_theme.scss → _theme.scss} +0 -0
  7. package/scss/{modules/_themes.scss → _themes.scss} +0 -0
  8. package/scss/_tokens.scss +1 -1
  9. package/scss/{modules/_utilities.scss → _utilities.scss} +0 -0
  10. package/scss/compat/generated/_tokens.scss +2 -2
  11. package/scss/generated/_themes.scss +401 -2924
  12. package/scss/generated/_tokens.scss +300 -3171
  13. package/src/g10.js +145 -225
  14. package/src/g100.js +148 -220
  15. package/src/g90.js +147 -221
  16. package/src/index.js +7 -12
  17. package/src/{next/tokens → tokens}/Token.js +0 -0
  18. package/src/{next/tokens → tokens}/TokenFormat.js +0 -0
  19. package/src/{next/tokens → tokens}/TokenGroup.js +0 -0
  20. package/src/{next/tokens → tokens}/TokenSet.js +0 -0
  21. package/src/{next/tokens → tokens}/index.js +0 -0
  22. package/src/{next/tokens → tokens}/v11TokenGroup.js +0 -0
  23. package/src/{next/tokens → tokens}/v11TokenSet.js +0 -0
  24. package/src/{v9.js → v10/g10.js} +98 -70
  25. package/src/v10/g100.js +339 -0
  26. package/src/v10/g90.js +341 -0
  27. package/src/{next → v10}/index.js +4 -3
  28. package/{metadata.yml → src/v10/metadata.yml} +0 -0
  29. package/src/{tokens.js → v10/tokens.js} +0 -0
  30. package/src/v10/white.js +343 -0
  31. package/src/white.js +145 -225
  32. package/umd/index.js +1719 -1336
  33. package/scss/_mixins.scss +0 -39
  34. package/scss/_theme-maps.scss +0 -9
  35. package/scss/generated/_mixins.scss +0 -3622
  36. package/scss/index.scss +0 -8
  37. package/scss/modules/_tokens.scss +0 -8
  38. package/scss/modules/generated/_themes.scss +0 -432
  39. package/scss/modules/generated/_tokens.scss +0 -308
  40. package/scss/themes.scss +0 -10
  41. package/src/g80.js +0 -351
  42. package/src/next/g10.js +0 -268
  43. package/src/next/g100.js +0 -276
  44. package/src/next/g90.js +0 -275
  45. package/src/next/white.js +0 -271
@@ -6,3174 +6,303 @@
6
6
  // LICENSE file in the root directory of this source tree.
7
7
  //
8
8
 
9
- /// Primary interactive color; Primary buttons
10
- /// @type {undefined}
11
- /// @access public
12
- /// @group @carbon/themes
13
- $interactive-01: if(
14
- global-variable-exists('carbon--theme') and
15
- map-has-key($carbon--theme, 'interactive-01'),
16
- map-get($carbon--theme, 'interactive-01'),
17
- #0f62fe
18
- ) !default;
19
-
20
- /// Secondary interactive color; Secondary button
21
- /// @type {undefined}
22
- /// @access public
23
- /// @group @carbon/themes
24
- $interactive-02: if(
25
- global-variable-exists('carbon--theme') and
26
- map-has-key($carbon--theme, 'interactive-02'),
27
- map-get($carbon--theme, 'interactive-02'),
28
- #393939
29
- ) !default;
30
-
31
- /// 4.5:1 AA contrast; Tertiary button
32
- /// @type {undefined}
33
- /// @access public
34
- /// @group @carbon/themes
35
- $interactive-03: if(
36
- global-variable-exists('carbon--theme') and
37
- map-has-key($carbon--theme, 'interactive-03'),
38
- map-get($carbon--theme, 'interactive-03'),
39
- #0f62fe
40
- ) !default;
41
-
42
- /// 3:1 AA contrast; Selected elements; Active elements; Accent icons
43
- /// @type {undefined}
44
- /// @access public
45
- /// @group @carbon/themes
46
- $interactive-04: if(
47
- global-variable-exists('carbon--theme') and
48
- map-has-key($carbon--theme, 'interactive-04'),
49
- map-get($carbon--theme, 'interactive-04'),
50
- #0f62fe
51
- ) !default;
52
-
53
- /// Default page background
54
- /// @type {undefined}
55
- /// @access public
56
- /// @group @carbon/themes
57
- $ui-background: if(
58
- global-variable-exists('carbon--theme') and
59
- map-has-key($carbon--theme, 'ui-background'),
60
- map-get($carbon--theme, 'ui-background'),
61
- #ffffff
62
- ) !default;
63
-
64
- /// Primary container background; Secondary page background
65
- /// @type {undefined}
66
- /// @access public
67
- /// @group @carbon/themes
68
- $ui-01: if(
69
- global-variable-exists('carbon--theme') and
70
- map-has-key($carbon--theme, 'ui-01'),
71
- map-get($carbon--theme, 'ui-01'),
72
- #f4f4f4
73
- ) !default;
74
-
75
- /// Primary page background; Secondary container background
76
- /// @type {undefined}
77
- /// @access public
78
- /// @group @carbon/themes
79
- $ui-02: if(
80
- global-variable-exists('carbon--theme') and
81
- map-has-key($carbon--theme, 'ui-02'),
82
- map-get($carbon--theme, 'ui-02'),
83
- #ffffff
84
- ) !default;
85
-
86
- /// Subtle border; Tertiary background color
87
- /// @type {undefined}
88
- /// @access public
89
- /// @group @carbon/themes
90
- $ui-03: if(
91
- global-variable-exists('carbon--theme') and
92
- map-has-key($carbon--theme, 'ui-03'),
93
- map-get($carbon--theme, 'ui-03'),
94
- #e0e0e0
95
- ) !default;
96
-
97
- /// 3:1 AA element contrast; Medium contrast border
98
- /// @type {undefined}
99
- /// @access public
100
- /// @group @carbon/themes
101
- $ui-04: if(
102
- global-variable-exists('carbon--theme') and
103
- map-has-key($carbon--theme, 'ui-04'),
104
- map-get($carbon--theme, 'ui-04'),
105
- #8d8d8d
106
- ) !default;
107
-
108
- /// 4.5:1 AA element contrast; High contrast border; Emphasis elements
109
- /// @type {undefined}
110
- /// @access public
111
- /// @group @carbon/themes
112
- $ui-05: if(
113
- global-variable-exists('carbon--theme') and
114
- map-has-key($carbon--theme, 'ui-05'),
115
- map-get($carbon--theme, 'ui-05'),
116
- #161616
117
- ) !default;
118
-
119
- /// Primary text; Body copy; Headers; Hover text color for `$text-02`
120
- /// @type {undefined}
121
- /// @access public
122
- /// @group @carbon/themes
123
- $text-01: if(
124
- global-variable-exists('carbon--theme') and
125
- map-has-key($carbon--theme, 'text-01'),
126
- map-get($carbon--theme, 'text-01'),
127
- #161616
128
- ) !default;
129
-
130
- /// Secondary text; Input labels; Help text
131
- /// @type {undefined}
132
- /// @access public
133
- /// @group @carbon/themes
134
- $text-02: if(
135
- global-variable-exists('carbon--theme') and
136
- map-has-key($carbon--theme, 'text-02'),
137
- map-get($carbon--theme, 'text-02'),
138
- #525252
139
- ) !default;
140
-
141
- /// Placeholder text
142
- /// @type {undefined}
143
- /// @access public
144
- /// @group @carbon/themes
145
- $text-03: if(
146
- global-variable-exists('carbon--theme') and
147
- map-has-key($carbon--theme, 'text-03'),
148
- map-get($carbon--theme, 'text-03'),
149
- #a8a8a8
150
- ) !default;
151
-
152
- /// Text on interactive colors
153
- /// @type {undefined}
154
- /// @access public
155
- /// @group @carbon/themes
156
- $text-04: if(
157
- global-variable-exists('carbon--theme') and
158
- map-has-key($carbon--theme, 'text-04'),
159
- map-get($carbon--theme, 'text-04'),
160
- #ffffff
161
- ) !default;
162
-
163
- /// @type {undefined}
164
- /// @access public
165
- /// @group @carbon/themes
166
- $text-05: if(
167
- global-variable-exists('carbon--theme') and
168
- map-has-key($carbon--theme, 'text-05'),
169
- map-get($carbon--theme, 'text-05'),
170
- #6f6f6f
171
- ) !default;
172
-
173
- /// @type {undefined}
174
- /// @access public
175
- /// @group @carbon/themes
176
- $text-error: if(
177
- global-variable-exists('carbon--theme') and
178
- map-has-key($carbon--theme, 'text-error'),
179
- map-get($carbon--theme, 'text-error'),
180
- #da1e28
181
- ) !default;
182
-
183
- /// Primary icons
184
- /// @type {undefined}
185
- /// @access public
186
- /// @group @carbon/themes
187
- $icon-01: if(
188
- global-variable-exists('carbon--theme') and
189
- map-has-key($carbon--theme, 'icon-01'),
190
- map-get($carbon--theme, 'icon-01'),
191
- #161616
192
- ) !default;
193
-
194
- /// Secondary icons
195
- /// @type {undefined}
196
- /// @access public
197
- /// @group @carbon/themes
198
- $icon-02: if(
199
- global-variable-exists('carbon--theme') and
200
- map-has-key($carbon--theme, 'icon-02'),
201
- map-get($carbon--theme, 'icon-02'),
202
- #525252
203
- ) !default;
204
-
205
- /// Tertiary icons; Icons on interactive colors; Icons on non-ui colors
206
- /// @type {undefined}
207
- /// @access public
208
- /// @group @carbon/themes
209
- $icon-03: if(
210
- global-variable-exists('carbon--theme') and
211
- map-has-key($carbon--theme, 'icon-03'),
212
- map-get($carbon--theme, 'icon-03'),
213
- #ffffff
214
- ) !default;
215
-
216
- /// Primary links; Ghost button
217
- /// @type {undefined}
218
- /// @access public
219
- /// @group @carbon/themes
220
- $link-01: if(
221
- global-variable-exists('carbon--theme') and
222
- map-has-key($carbon--theme, 'link-01'),
223
- map-get($carbon--theme, 'link-01'),
224
- #0f62fe
225
- ) !default;
226
-
227
- /// Secondary link color for lower contrast backgrounds
228
- /// @type {undefined}
229
- /// @access public
230
- /// @group @carbon/themes
231
- $link-02: if(
232
- global-variable-exists('carbon--theme') and
233
- map-has-key($carbon--theme, 'link-02'),
234
- map-get($carbon--theme, 'link-02'),
235
- #0043ce
236
- ) !default;
237
-
238
- /// @type {undefined}
239
- /// @access public
240
- /// @group @carbon/themes
241
- $inverse-link: if(
242
- global-variable-exists('carbon--theme') and
243
- map-has-key($carbon--theme, 'inverse-link'),
244
- map-get($carbon--theme, 'inverse-link'),
245
- #78a9ff
246
- ) !default;
247
-
248
- /// Default input fields; Field color on $ui-backgrounds
249
- /// @type {undefined}
250
- /// @access public
251
- /// @group @carbon/themes
252
- $field-01: if(
253
- global-variable-exists('carbon--theme') and
254
- map-has-key($carbon--theme, 'field-01'),
255
- map-get($carbon--theme, 'field-01'),
256
- #f4f4f4
257
- ) !default;
258
-
259
- /// Input field color on `$ui-02` backgrounds
260
- /// @type {undefined}
261
- /// @access public
262
- /// @group @carbon/themes
263
- $field-02: if(
264
- global-variable-exists('carbon--theme') and
265
- map-has-key($carbon--theme, 'field-02'),
266
- map-get($carbon--theme, 'field-02'),
267
- #ffffff
268
- ) !default;
269
-
270
- /// Inverse text color; Inverse icon color
271
- /// @type {undefined}
272
- /// @access public
273
- /// @group @carbon/themes
274
- $inverse-01: if(
275
- global-variable-exists('carbon--theme') and
276
- map-has-key($carbon--theme, 'inverse-01'),
277
- map-get($carbon--theme, 'inverse-01'),
278
- #ffffff
279
- ) !default;
280
-
281
- /// High contrast backgrounds; High contrast elements
282
- /// @type {undefined}
283
- /// @access public
284
- /// @group @carbon/themes
285
- $inverse-02: if(
286
- global-variable-exists('carbon--theme') and
287
- map-has-key($carbon--theme, 'inverse-02'),
288
- map-get($carbon--theme, 'inverse-02'),
289
- #393939
290
- ) !default;
291
-
292
- /// Error
293
- /// @type {undefined}
294
- /// @access public
295
- /// @group @carbon/themes
296
- $support-01: if(
297
- global-variable-exists('carbon--theme') and
298
- map-has-key($carbon--theme, 'support-01'),
299
- map-get($carbon--theme, 'support-01'),
300
- #da1e28
301
- ) !default;
302
-
303
- /// Success
304
- /// @type {undefined}
305
- /// @access public
306
- /// @group @carbon/themes
307
- $support-02: if(
308
- global-variable-exists('carbon--theme') and
309
- map-has-key($carbon--theme, 'support-02'),
310
- map-get($carbon--theme, 'support-02'),
311
- #198038
312
- ) !default;
313
-
314
- /// Warning
315
- /// @type {undefined}
316
- /// @access public
317
- /// @group @carbon/themes
318
- $support-03: if(
319
- global-variable-exists('carbon--theme') and
320
- map-has-key($carbon--theme, 'support-03'),
321
- map-get($carbon--theme, 'support-03'),
322
- #f1c21b
323
- ) !default;
324
-
325
- /// Information
326
- /// @type {undefined}
327
- /// @access public
328
- /// @group @carbon/themes
329
- $support-04: if(
330
- global-variable-exists('carbon--theme') and
331
- map-has-key($carbon--theme, 'support-04'),
332
- map-get($carbon--theme, 'support-04'),
333
- #0043ce
334
- ) !default;
335
-
336
- /// Error on high contrast backgrounds
337
- /// @type {undefined}
338
- /// @access public
339
- /// @group @carbon/themes
340
- $inverse-support-01: if(
341
- global-variable-exists('carbon--theme') and
342
- map-has-key($carbon--theme, 'inverse-support-01'),
343
- map-get($carbon--theme, 'inverse-support-01'),
344
- #fa4d56
345
- ) !default;
346
-
347
- /// Success on high contrast backgrounds
348
- /// @type {undefined}
349
- /// @access public
350
- /// @group @carbon/themes
351
- $inverse-support-02: if(
352
- global-variable-exists('carbon--theme') and
353
- map-has-key($carbon--theme, 'inverse-support-02'),
354
- map-get($carbon--theme, 'inverse-support-02'),
355
- #42be65
356
- ) !default;
357
-
358
- /// Warning on high contrast backgrounds
359
- /// @type {undefined}
360
- /// @access public
361
- /// @group @carbon/themes
362
- $inverse-support-03: if(
363
- global-variable-exists('carbon--theme') and
364
- map-has-key($carbon--theme, 'inverse-support-03'),
365
- map-get($carbon--theme, 'inverse-support-03'),
366
- #f1c21b
367
- ) !default;
368
-
369
- /// Information on high contrast backgrounds
370
- /// @type {undefined}
371
- /// @access public
372
- /// @group @carbon/themes
373
- $inverse-support-04: if(
374
- global-variable-exists('carbon--theme') and
375
- map-has-key($carbon--theme, 'inverse-support-04'),
376
- map-get($carbon--theme, 'inverse-support-04'),
377
- #4589ff
378
- ) !default;
379
-
380
- /// Background overlay
381
- /// @type {undefined}
382
- /// @access public
383
- /// @group @carbon/themes
384
- $overlay-01: if(
385
- global-variable-exists('carbon--theme') and
386
- map-has-key($carbon--theme, 'overlay-01'),
387
- map-get($carbon--theme, 'overlay-01'),
388
- rgba(22, 22, 22, 0.5)
389
- ) !default;
390
-
391
- /// @type {undefined}
392
- /// @access public
393
- /// @group @carbon/themes
394
- $danger-01: if(
395
- global-variable-exists('carbon--theme') and
396
- map-has-key($carbon--theme, 'danger-01'),
397
- map-get($carbon--theme, 'danger-01'),
398
- #da1e28
399
- ) !default;
400
-
401
- /// @type {undefined}
402
- /// @access public
403
- /// @group @carbon/themes
404
- $danger-02: if(
405
- global-variable-exists('carbon--theme') and
406
- map-has-key($carbon--theme, 'danger-02'),
407
- map-get($carbon--theme, 'danger-02'),
408
- #da1e28
409
- ) !default;
410
-
411
- /// Focus border; Focus underline
412
- /// @type {undefined}
413
- /// @access public
414
- /// @group @carbon/themes
415
- $focus: if(
416
- global-variable-exists('carbon--theme') and
417
- map-has-key($carbon--theme, 'focus'),
418
- map-get($carbon--theme, 'focus'),
419
- #0f62fe
420
- ) !default;
421
-
422
- /// @type {undefined}
423
- /// @access public
424
- /// @group @carbon/themes
425
- $inverse-focus-ui: if(
426
- global-variable-exists('carbon--theme') and
427
- map-has-key($carbon--theme, 'inverse-focus-ui'),
428
- map-get($carbon--theme, 'inverse-focus-ui'),
429
- #ffffff
430
- ) !default;
431
-
432
- /// `$interactive-01` hover
433
- /// @type {undefined}
434
- /// @access public
435
- /// @group @carbon/themes
436
- $hover-primary: if(
437
- global-variable-exists('carbon--theme') and
438
- map-has-key($carbon--theme, 'hover-primary'),
439
- map-get($carbon--theme, 'hover-primary'),
440
- #0353e9
441
- ) !default;
442
-
443
- /// `$interactive-01` active
444
- /// @type {undefined}
445
- /// @access public
446
- /// @group @carbon/themes
447
- $active-primary: if(
448
- global-variable-exists('carbon--theme') and
449
- map-has-key($carbon--theme, 'active-primary'),
450
- map-get($carbon--theme, 'active-primary'),
451
- #002d9c
452
- ) !default;
453
-
454
- /// `$interactive-01` text hover
455
- /// @type {undefined}
456
- /// @access public
457
- /// @group @carbon/themes
458
- $hover-primary-text: if(
459
- global-variable-exists('carbon--theme') and
460
- map-has-key($carbon--theme, 'hover-primary-text'),
461
- map-get($carbon--theme, 'hover-primary-text'),
462
- #0043ce
463
- ) !default;
464
-
465
- /// `$interactive-02` hover
466
- /// @type {undefined}
467
- /// @access public
468
- /// @group @carbon/themes
469
- $hover-secondary: if(
470
- global-variable-exists('carbon--theme') and
471
- map-has-key($carbon--theme, 'hover-secondary'),
472
- map-get($carbon--theme, 'hover-secondary'),
473
- #4c4c4c
474
- ) !default;
475
-
476
- /// `$interactive-02` active; `$inverse-01` active
477
- /// @type {undefined}
478
- /// @access public
479
- /// @group @carbon/themes
480
- $active-secondary: if(
481
- global-variable-exists('carbon--theme') and
482
- map-has-key($carbon--theme, 'active-secondary'),
483
- map-get($carbon--theme, 'active-secondary'),
484
- #6f6f6f
485
- ) !default;
486
-
487
- /// `$interactive-03` hover; `$inverse-01` hover
488
- /// @type {undefined}
489
- /// @access public
490
- /// @group @carbon/themes
491
- $hover-tertiary: if(
492
- global-variable-exists('carbon--theme') and
493
- map-has-key($carbon--theme, 'hover-tertiary'),
494
- map-get($carbon--theme, 'hover-tertiary'),
495
- #0353e9
496
- ) !default;
497
-
498
- /// `$interactive-03` active
499
- /// @type {undefined}
500
- /// @access public
501
- /// @group @carbon/themes
502
- $active-tertiary: if(
503
- global-variable-exists('carbon--theme') and
504
- map-has-key($carbon--theme, 'active-tertiary'),
505
- map-get($carbon--theme, 'active-tertiary'),
506
- #002d9c
507
- ) !default;
508
-
509
- /// `$ui-01` hover; `$ui-02` hover; Transparent background hover
510
- /// @type {undefined}
511
- /// @access public
512
- /// @group @carbon/themes
513
- $hover-ui: if(
514
- global-variable-exists('carbon--theme') and
515
- map-has-key($carbon--theme, 'hover-ui'),
516
- map-get($carbon--theme, 'hover-ui'),
517
- #e5e5e5
518
- ) !default;
519
-
520
- /// @type {undefined}
521
- /// @access public
522
- /// @group @carbon/themes
523
- $hover-light-ui: if(
524
- global-variable-exists('carbon--theme') and
525
- map-has-key($carbon--theme, 'hover-light-ui'),
526
- map-get($carbon--theme, 'hover-light-ui'),
527
- #e5e5e5
528
- ) !default;
529
-
530
- /// Data table selected row hover
531
- /// @type {undefined}
532
- /// @access public
533
- /// @group @carbon/themes
534
- $hover-selected-ui: if(
535
- global-variable-exists('carbon--theme') and
536
- map-has-key($carbon--theme, 'hover-selected-ui'),
537
- map-get($carbon--theme, 'hover-selected-ui'),
538
- #cacaca
539
- ) !default;
540
-
541
- /// `$ui-01` active; `$ui-02` active
542
- /// @type {undefined}
543
- /// @access public
544
- /// @group @carbon/themes
545
- $active-ui: if(
546
- global-variable-exists('carbon--theme') and
547
- map-has-key($carbon--theme, 'active-ui'),
548
- map-get($carbon--theme, 'active-ui'),
549
- #c6c6c6
550
- ) !default;
551
-
552
- /// @type {undefined}
553
- /// @access public
554
- /// @group @carbon/themes
555
- $active-light-ui: if(
556
- global-variable-exists('carbon--theme') and
557
- map-has-key($carbon--theme, 'active-light-ui'),
558
- map-get($carbon--theme, 'active-light-ui'),
559
- #c6c6c6
560
- ) !default;
561
-
562
- /// Selected UI elements
563
- /// @type {undefined}
564
- /// @access public
565
- /// @group @carbon/themes
566
- $selected-ui: if(
567
- global-variable-exists('carbon--theme') and
568
- map-has-key($carbon--theme, 'selected-ui'),
569
- map-get($carbon--theme, 'selected-ui'),
570
- #e0e0e0
571
- ) !default;
572
-
573
- /// @type {undefined}
574
- /// @access public
575
- /// @group @carbon/themes
576
- $selected-light-ui: if(
577
- global-variable-exists('carbon--theme') and
578
- map-has-key($carbon--theme, 'selected-light-ui'),
579
- map-get($carbon--theme, 'selected-light-ui'),
580
- #e0e0e0
581
- ) !default;
582
-
583
- /// @type {undefined}
584
- /// @access public
585
- /// @group @carbon/themes
586
- $inverse-hover-ui: if(
587
- global-variable-exists('carbon--theme') and
588
- map-has-key($carbon--theme, 'inverse-hover-ui'),
589
- map-get($carbon--theme, 'inverse-hover-ui'),
590
- #4c4c4c
591
- ) !default;
592
-
593
- /// Danger hover; `$support-01` hover
594
- /// @type {undefined}
595
- /// @access public
596
- /// @group @carbon/themes
597
- $hover-danger: if(
598
- global-variable-exists('carbon--theme') and
599
- map-has-key($carbon--theme, 'hover-danger'),
600
- map-get($carbon--theme, 'hover-danger'),
601
- #b81921
602
- ) !default;
603
-
604
- /// Danger active; `$support-01` active
605
- /// @type {undefined}
606
- /// @access public
607
- /// @group @carbon/themes
608
- $active-danger: if(
609
- global-variable-exists('carbon--theme') and
610
- map-has-key($carbon--theme, 'active-danger'),
611
- map-get($carbon--theme, 'active-danger'),
612
- #750e13
613
- ) !default;
614
-
615
- /// Row hover
616
- /// @type {undefined}
617
- /// @access public
618
- /// @group @carbon/themes
619
- $hover-row: if(
620
- global-variable-exists('carbon--theme') and
621
- map-has-key($carbon--theme, 'hover-row'),
622
- map-get($carbon--theme, 'hover-row'),
623
- #e5e5e5
624
- ) !default;
625
-
626
- /// Visited links
627
- /// @type {undefined}
628
- /// @access public
629
- /// @group @carbon/themes
630
- $visited-link: if(
631
- global-variable-exists('carbon--theme') and
632
- map-has-key($carbon--theme, 'visited-link'),
633
- map-get($carbon--theme, 'visited-link'),
634
- #8a3ffc
635
- ) !default;
636
-
637
- /// Disabled fields; Disabled backgrounds; Disabled border
638
- /// @type {undefined}
639
- /// @access public
640
- /// @group @carbon/themes
641
- $disabled-01: if(
642
- global-variable-exists('carbon--theme') and
643
- map-has-key($carbon--theme, 'disabled-01'),
644
- map-get($carbon--theme, 'disabled-01'),
645
- #f4f4f4
646
- ) !default;
647
-
648
- /// Disabled elements on `$disabled-01`; Disabled label; Disabled text on `$disabled-01`; Disabled icons; Disabled border
649
- /// @type {undefined}
650
- /// @access public
651
- /// @group @carbon/themes
652
- $disabled-02: if(
653
- global-variable-exists('carbon--theme') and
654
- map-has-key($carbon--theme, 'disabled-02'),
655
- map-get($carbon--theme, 'disabled-02'),
656
- #c6c6c6
657
- ) !default;
658
-
659
- /// Disabled text on `$disabled-02`; Disabled icons on `$disabled-02`
660
- /// @type {undefined}
661
- /// @access public
662
- /// @group @carbon/themes
663
- $disabled-03: if(
664
- global-variable-exists('carbon--theme') and
665
- map-has-key($carbon--theme, 'disabled-03'),
666
- map-get($carbon--theme, 'disabled-03'),
667
- #8d8d8d
668
- ) !default;
669
-
670
- /// `$interactive-01` high light
671
- /// @type {undefined}
672
- /// @access public
673
- /// @group @carbon/themes
674
- $highlight: if(
675
- global-variable-exists('carbon--theme') and
676
- map-has-key($carbon--theme, 'highlight'),
677
- map-get($carbon--theme, 'highlight'),
678
- #d0e2ff
679
- ) !default;
680
-
681
- /// @type {undefined}
682
- /// @access public
683
- /// @group @carbon/themes
684
- $decorative-01: if(
685
- global-variable-exists('carbon--theme') and
686
- map-has-key($carbon--theme, 'decorative-01'),
687
- map-get($carbon--theme, 'decorative-01'),
688
- #e0e0e0
689
- ) !default;
690
-
691
- /// @type {undefined}
692
- /// @access public
693
- /// @group @carbon/themes
694
- $button-separator: if(
695
- global-variable-exists('carbon--theme') and
696
- map-has-key($carbon--theme, 'button-separator'),
697
- map-get($carbon--theme, 'button-separator'),
698
- #e0e0e0
699
- ) !default;
700
-
701
- /// Skeleton state of graphics
702
- /// @type {undefined}
703
- /// @access public
704
- /// @group @carbon/themes
705
- $skeleton-01: if(
706
- global-variable-exists('carbon--theme') and
707
- map-has-key($carbon--theme, 'skeleton-01'),
708
- map-get($carbon--theme, 'skeleton-01'),
709
- #e5e5e5
710
- ) !default;
711
-
712
- /// Skeleton state of text
713
- /// @type {undefined}
714
- /// @access public
715
- /// @group @carbon/themes
716
- $skeleton-02: if(
717
- global-variable-exists('carbon--theme') and
718
- map-has-key($carbon--theme, 'skeleton-02'),
719
- map-get($carbon--theme, 'skeleton-02'),
720
- #c6c6c6
721
- ) !default;
722
-
723
- /// @type {undefined}
724
- /// @access public
725
- /// @group @carbon/themes
726
- $background: if(
727
- global-variable-exists('carbon--theme') and
728
- map-has-key($carbon--theme, 'background'),
729
- map-get($carbon--theme, 'background'),
730
- #ffffff
731
- ) !default;
732
-
733
- /// @type {undefined}
734
- /// @access public
735
- /// @group @carbon/themes
736
- $layer: if(
737
- global-variable-exists('carbon--theme') and
738
- map-has-key($carbon--theme, 'layer'),
739
- map-get($carbon--theme, 'layer'),
740
- #f4f4f4
741
- ) !default;
742
-
743
- /// @type {undefined}
744
- /// @access public
745
- /// @group @carbon/themes
746
- $layer-accent: if(
747
- global-variable-exists('carbon--theme') and
748
- map-has-key($carbon--theme, 'layer-accent'),
749
- map-get($carbon--theme, 'layer-accent'),
750
- #e0e0e0
751
- ) !default;
752
-
753
- /// @type {undefined}
754
- /// @access public
755
- /// @group @carbon/themes
756
- $layer-accent-hover: if(
757
- global-variable-exists('carbon--theme') and
758
- map-has-key($carbon--theme, 'layer-accent-hover'),
759
- map-get($carbon--theme, 'layer-accent-hover'),
760
- #d1d1d1
761
- ) !default;
762
-
763
- /// @type {undefined}
764
- /// @access public
765
- /// @group @carbon/themes
766
- $layer-accent-active: if(
767
- global-variable-exists('carbon--theme') and
768
- map-has-key($carbon--theme, 'layer-accent-active'),
769
- map-get($carbon--theme, 'layer-accent-active'),
770
- #a8a8a8
771
- ) !default;
772
-
773
- /// @type {undefined}
774
- /// @access public
775
- /// @group @carbon/themes
776
- $field: if(
777
- global-variable-exists('carbon--theme') and
778
- map-has-key($carbon--theme, 'field'),
779
- map-get($carbon--theme, 'field'),
780
- #f4f4f4
781
- ) !default;
782
-
783
- /// @type {undefined}
784
- /// @access public
785
- /// @group @carbon/themes
786
- $background-inverse: if(
787
- global-variable-exists('carbon--theme') and
788
- map-has-key($carbon--theme, 'background-inverse'),
789
- map-get($carbon--theme, 'background-inverse'),
790
- #393939
791
- ) !default;
792
-
793
- /// @type {undefined}
794
- /// @access public
795
- /// @group @carbon/themes
796
- $background-brand: if(
797
- global-variable-exists('carbon--theme') and
798
- map-has-key($carbon--theme, 'background-brand'),
799
- map-get($carbon--theme, 'background-brand'),
800
- #0f62fe
801
- ) !default;
802
-
803
- /// @type {undefined}
804
- /// @access public
805
- /// @group @carbon/themes
806
- $interactive: if(
807
- global-variable-exists('carbon--theme') and
808
- map-has-key($carbon--theme, 'interactive'),
809
- map-get($carbon--theme, 'interactive'),
810
- #0f62fe
811
- ) !default;
812
-
813
- /// @type {undefined}
814
- /// @access public
815
- /// @group @carbon/themes
816
- $border-subtle: if(
817
- global-variable-exists('carbon--theme') and
818
- map-has-key($carbon--theme, 'border-subtle'),
819
- map-get($carbon--theme, 'border-subtle'),
820
- #e0e0e0
821
- ) !default;
822
-
823
- /// @type {undefined}
824
- /// @access public
825
- /// @group @carbon/themes
826
- $border-strong: if(
827
- global-variable-exists('carbon--theme') and
828
- map-has-key($carbon--theme, 'border-strong'),
829
- map-get($carbon--theme, 'border-strong'),
830
- #8d8d8d
831
- ) !default;
832
-
833
- /// @type {undefined}
834
- /// @access public
835
- /// @group @carbon/themes
836
- $border-inverse: if(
837
- global-variable-exists('carbon--theme') and
838
- map-has-key($carbon--theme, 'border-inverse'),
839
- map-get($carbon--theme, 'border-inverse'),
840
- #161616
841
- ) !default;
842
-
843
- /// @type {undefined}
844
- /// @access public
845
- /// @group @carbon/themes
846
- $border-interactive: if(
847
- global-variable-exists('carbon--theme') and
848
- map-has-key($carbon--theme, 'border-interactive'),
849
- map-get($carbon--theme, 'border-interactive'),
850
- #0f62fe
851
- ) !default;
852
-
853
- /// @type {undefined}
854
- /// @access public
855
- /// @group @carbon/themes
856
- $text-primary: if(
857
- global-variable-exists('carbon--theme') and
858
- map-has-key($carbon--theme, 'text-primary'),
859
- map-get($carbon--theme, 'text-primary'),
860
- #161616
861
- ) !default;
862
-
863
- /// @type {undefined}
864
- /// @access public
865
- /// @group @carbon/themes
866
- $text-secondary: if(
867
- global-variable-exists('carbon--theme') and
868
- map-has-key($carbon--theme, 'text-secondary'),
869
- map-get($carbon--theme, 'text-secondary'),
870
- #525252
871
- ) !default;
872
-
873
- /// @type {undefined}
874
- /// @access public
875
- /// @group @carbon/themes
876
- $text-placeholder: if(
877
- global-variable-exists('carbon--theme') and
878
- map-has-key($carbon--theme, 'text-placeholder'),
879
- map-get($carbon--theme, 'text-placeholder'),
880
- #a8a8a8
881
- ) !default;
882
-
883
- /// @type {undefined}
884
- /// @access public
885
- /// @group @carbon/themes
886
- $text-helper: if(
887
- global-variable-exists('carbon--theme') and
888
- map-has-key($carbon--theme, 'text-helper'),
889
- map-get($carbon--theme, 'text-helper'),
890
- #6f6f6f
891
- ) !default;
892
-
893
- /// @type {undefined}
894
- /// @access public
895
- /// @group @carbon/themes
896
- $text-on-color: if(
897
- global-variable-exists('carbon--theme') and
898
- map-has-key($carbon--theme, 'text-on-color'),
899
- map-get($carbon--theme, 'text-on-color'),
900
- #ffffff
901
- ) !default;
902
-
903
- /// @type {undefined}
904
- /// @access public
905
- /// @group @carbon/themes
906
- $text-inverse: if(
907
- global-variable-exists('carbon--theme') and
908
- map-has-key($carbon--theme, 'text-inverse'),
909
- map-get($carbon--theme, 'text-inverse'),
910
- #ffffff
911
- ) !default;
912
-
913
- /// @type {undefined}
914
- /// @access public
915
- /// @group @carbon/themes
916
- $link-primary: if(
917
- global-variable-exists('carbon--theme') and
918
- map-has-key($carbon--theme, 'link-primary'),
919
- map-get($carbon--theme, 'link-primary'),
920
- #0f62fe
921
- ) !default;
922
-
923
- /// @type {undefined}
924
- /// @access public
925
- /// @group @carbon/themes
926
- $link-secondary: if(
927
- global-variable-exists('carbon--theme') and
928
- map-has-key($carbon--theme, 'link-secondary'),
929
- map-get($carbon--theme, 'link-secondary'),
930
- #0043ce
931
- ) !default;
932
-
933
- /// @type {undefined}
934
- /// @access public
935
- /// @group @carbon/themes
936
- $link-visited: if(
937
- global-variable-exists('carbon--theme') and
938
- map-has-key($carbon--theme, 'link-visited'),
939
- map-get($carbon--theme, 'link-visited'),
940
- #8a3ffc
941
- ) !default;
942
-
943
- /// @type {undefined}
944
- /// @access public
945
- /// @group @carbon/themes
946
- $link-inverse: if(
947
- global-variable-exists('carbon--theme') and
948
- map-has-key($carbon--theme, 'link-inverse'),
949
- map-get($carbon--theme, 'link-inverse'),
950
- #78a9ff
951
- ) !default;
952
-
953
- /// @type {undefined}
954
- /// @access public
955
- /// @group @carbon/themes
956
- $icon-primary: if(
957
- global-variable-exists('carbon--theme') and
958
- map-has-key($carbon--theme, 'icon-primary'),
959
- map-get($carbon--theme, 'icon-primary'),
960
- #161616
961
- ) !default;
962
-
963
- /// @type {undefined}
964
- /// @access public
965
- /// @group @carbon/themes
966
- $icon-secondary: if(
967
- global-variable-exists('carbon--theme') and
968
- map-has-key($carbon--theme, 'icon-secondary'),
969
- map-get($carbon--theme, 'icon-secondary'),
970
- #525252
971
- ) !default;
972
-
973
- /// @type {undefined}
974
- /// @access public
975
- /// @group @carbon/themes
976
- $icon-on-color: if(
977
- global-variable-exists('carbon--theme') and
978
- map-has-key($carbon--theme, 'icon-on-color'),
979
- map-get($carbon--theme, 'icon-on-color'),
980
- #ffffff
981
- ) !default;
982
-
983
- /// @type {undefined}
984
- /// @access public
985
- /// @group @carbon/themes
986
- $icon-inverse: if(
987
- global-variable-exists('carbon--theme') and
988
- map-has-key($carbon--theme, 'icon-inverse'),
989
- map-get($carbon--theme, 'icon-inverse'),
990
- #ffffff
991
- ) !default;
992
-
993
- /// @type {undefined}
994
- /// @access public
995
- /// @group @carbon/themes
996
- $support-error: if(
997
- global-variable-exists('carbon--theme') and
998
- map-has-key($carbon--theme, 'support-error'),
999
- map-get($carbon--theme, 'support-error'),
1000
- #da1e28
1001
- ) !default;
1002
-
1003
- /// @type {undefined}
1004
- /// @access public
1005
- /// @group @carbon/themes
1006
- $support-success: if(
1007
- global-variable-exists('carbon--theme') and
1008
- map-has-key($carbon--theme, 'support-success'),
1009
- map-get($carbon--theme, 'support-success'),
1010
- #198038
1011
- ) !default;
1012
-
1013
- /// @type {undefined}
1014
- /// @access public
1015
- /// @group @carbon/themes
1016
- $support-warning: if(
1017
- global-variable-exists('carbon--theme') and
1018
- map-has-key($carbon--theme, 'support-warning'),
1019
- map-get($carbon--theme, 'support-warning'),
1020
- #f1c21b
1021
- ) !default;
1022
-
1023
- /// @type {undefined}
1024
- /// @access public
1025
- /// @group @carbon/themes
1026
- $support-info: if(
1027
- global-variable-exists('carbon--theme') and
1028
- map-has-key($carbon--theme, 'support-info'),
1029
- map-get($carbon--theme, 'support-info'),
1030
- #0043ce
1031
- ) !default;
1032
-
1033
- /// @type {undefined}
1034
- /// @access public
1035
- /// @group @carbon/themes
1036
- $support-error-inverse: if(
1037
- global-variable-exists('carbon--theme') and
1038
- map-has-key($carbon--theme, 'support-error-inverse'),
1039
- map-get($carbon--theme, 'support-error-inverse'),
1040
- #fa4d56
1041
- ) !default;
1042
-
1043
- /// @type {undefined}
1044
- /// @access public
1045
- /// @group @carbon/themes
1046
- $support-success-inverse: if(
1047
- global-variable-exists('carbon--theme') and
1048
- map-has-key($carbon--theme, 'support-success-inverse'),
1049
- map-get($carbon--theme, 'support-success-inverse'),
1050
- #42be65
1051
- ) !default;
1052
-
1053
- /// @type {undefined}
1054
- /// @access public
1055
- /// @group @carbon/themes
1056
- $support-warning-inverse: if(
1057
- global-variable-exists('carbon--theme') and
1058
- map-has-key($carbon--theme, 'support-warning-inverse'),
1059
- map-get($carbon--theme, 'support-warning-inverse'),
1060
- #f1c21b
1061
- ) !default;
1062
-
1063
- /// @type {undefined}
1064
- /// @access public
1065
- /// @group @carbon/themes
1066
- $support-info-inverse: if(
1067
- global-variable-exists('carbon--theme') and
1068
- map-has-key($carbon--theme, 'support-info-inverse'),
1069
- map-get($carbon--theme, 'support-info-inverse'),
1070
- #4589ff
1071
- ) !default;
1072
-
1073
- /// @type {undefined}
1074
- /// @access public
1075
- /// @group @carbon/themes
1076
- $overlay: if(
1077
- global-variable-exists('carbon--theme') and
1078
- map-has-key($carbon--theme, 'overlay'),
1079
- map-get($carbon--theme, 'overlay'),
1080
- rgba(22, 22, 22, 0.5)
1081
- ) !default;
1082
-
1083
- /// @type {undefined}
1084
- /// @access public
1085
- /// @group @carbon/themes
1086
- $toggle-off: if(
1087
- global-variable-exists('carbon--theme') and
1088
- map-has-key($carbon--theme, 'toggle-off'),
1089
- map-get($carbon--theme, 'toggle-off'),
1090
- #8d8d8d
1091
- ) !default;
1092
-
1093
- /// @type {undefined}
1094
- /// @access public
1095
- /// @group @carbon/themes
1096
- $shadow: if(
1097
- global-variable-exists('carbon--theme') and
1098
- map-has-key($carbon--theme, 'shadow'),
1099
- map-get($carbon--theme, 'shadow'),
1100
- rgba(0, 0, 0, 0.3)
1101
- ) !default;
1102
-
1103
- /// @type {undefined}
1104
- /// @access public
1105
- /// @group @carbon/themes
1106
- $button-primary: if(
1107
- global-variable-exists('carbon--theme') and
1108
- map-has-key($carbon--theme, 'button-primary'),
1109
- map-get($carbon--theme, 'button-primary'),
1110
- #0f62fe
1111
- ) !default;
1112
-
1113
- /// @type {undefined}
1114
- /// @access public
1115
- /// @group @carbon/themes
1116
- $button-secondary: if(
1117
- global-variable-exists('carbon--theme') and
1118
- map-has-key($carbon--theme, 'button-secondary'),
1119
- map-get($carbon--theme, 'button-secondary'),
1120
- #393939
1121
- ) !default;
1122
-
1123
- /// @type {undefined}
1124
- /// @access public
1125
- /// @group @carbon/themes
1126
- $button-tertiary: if(
1127
- global-variable-exists('carbon--theme') and
1128
- map-has-key($carbon--theme, 'button-tertiary'),
1129
- map-get($carbon--theme, 'button-tertiary'),
1130
- #0f62fe
1131
- ) !default;
1132
-
1133
- /// @type {undefined}
1134
- /// @access public
1135
- /// @group @carbon/themes
1136
- $button-danger-primary: if(
1137
- global-variable-exists('carbon--theme') and
1138
- map-has-key($carbon--theme, 'button-danger-primary'),
1139
- map-get($carbon--theme, 'button-danger-primary'),
1140
- #da1e28
1141
- ) !default;
1142
-
1143
- /// @type {undefined}
1144
- /// @access public
1145
- /// @group @carbon/themes
1146
- $button-danger-secondary: if(
1147
- global-variable-exists('carbon--theme') and
1148
- map-has-key($carbon--theme, 'button-danger-secondary'),
1149
- map-get($carbon--theme, 'button-danger-secondary'),
1150
- #da1e28
1151
- ) !default;
1152
-
1153
- /// @type {undefined}
1154
- /// @access public
1155
- /// @group @carbon/themes
1156
- $background-active: if(
1157
- global-variable-exists('carbon--theme') and
1158
- map-has-key($carbon--theme, 'background-active'),
1159
- map-get($carbon--theme, 'background-active'),
1160
- #c6c6c6
1161
- ) !default;
1162
-
1163
- /// @type {undefined}
1164
- /// @access public
1165
- /// @group @carbon/themes
1166
- $layer-active: if(
1167
- global-variable-exists('carbon--theme') and
1168
- map-has-key($carbon--theme, 'layer-active'),
1169
- map-get($carbon--theme, 'layer-active'),
1170
- #c6c6c6
1171
- ) !default;
1172
-
1173
- /// @type {undefined}
1174
- /// @access public
1175
- /// @group @carbon/themes
1176
- $button-danger-active: if(
1177
- global-variable-exists('carbon--theme') and
1178
- map-has-key($carbon--theme, 'button-danger-active'),
1179
- map-get($carbon--theme, 'button-danger-active'),
1180
- #750e13
1181
- ) !default;
1182
-
1183
- /// @type {undefined}
1184
- /// @access public
1185
- /// @group @carbon/themes
1186
- $button-primary-active: if(
1187
- global-variable-exists('carbon--theme') and
1188
- map-has-key($carbon--theme, 'button-primary-active'),
1189
- map-get($carbon--theme, 'button-primary-active'),
1190
- #002d9c
1191
- ) !default;
1192
-
1193
- /// @type {undefined}
1194
- /// @access public
1195
- /// @group @carbon/themes
1196
- $button-secondary-active: if(
1197
- global-variable-exists('carbon--theme') and
1198
- map-has-key($carbon--theme, 'button-secondary-active'),
1199
- map-get($carbon--theme, 'button-secondary-active'),
1200
- #6f6f6f
1201
- ) !default;
1202
-
1203
- /// @type {undefined}
1204
- /// @access public
1205
- /// @group @carbon/themes
1206
- $button-tertiary-active: if(
1207
- global-variable-exists('carbon--theme') and
1208
- map-has-key($carbon--theme, 'button-tertiary-active'),
1209
- map-get($carbon--theme, 'button-tertiary-active'),
1210
- #002d9c
1211
- ) !default;
1212
-
1213
- /// @type {undefined}
1214
- /// @access public
1215
- /// @group @carbon/themes
1216
- $focus-inset: if(
1217
- global-variable-exists('carbon--theme') and
1218
- map-has-key($carbon--theme, 'focus-inset'),
1219
- map-get($carbon--theme, 'focus-inset'),
1220
- #ffffff
1221
- ) !default;
1222
-
1223
- /// @type {undefined}
1224
- /// @access public
1225
- /// @group @carbon/themes
1226
- $focus-inverse: if(
1227
- global-variable-exists('carbon--theme') and
1228
- map-has-key($carbon--theme, 'focus-inverse'),
1229
- map-get($carbon--theme, 'focus-inverse'),
1230
- #ffffff
1231
- ) !default;
1232
-
1233
- /// @type {undefined}
1234
- /// @access public
1235
- /// @group @carbon/themes
1236
- $background-hover: if(
1237
- global-variable-exists('carbon--theme') and
1238
- map-has-key($carbon--theme, 'background-hover'),
1239
- map-get($carbon--theme, 'background-hover'),
1240
- #e5e5e5
1241
- ) !default;
1242
-
1243
- /// @type {undefined}
1244
- /// @access public
1245
- /// @group @carbon/themes
1246
- $layer-hover: if(
1247
- global-variable-exists('carbon--theme') and
1248
- map-has-key($carbon--theme, 'layer-hover'),
1249
- map-get($carbon--theme, 'layer-hover'),
1250
- #e5e5e5
1251
- ) !default;
1252
-
1253
- /// @type {undefined}
1254
- /// @access public
1255
- /// @group @carbon/themes
1256
- $field-hover: if(
1257
- global-variable-exists('carbon--theme') and
1258
- map-has-key($carbon--theme, 'field-hover'),
1259
- map-get($carbon--theme, 'field-hover'),
1260
- #e5e5e5
1261
- ) !default;
1262
-
1263
- /// @type {undefined}
1264
- /// @access public
1265
- /// @group @carbon/themes
1266
- $background-inverse-hover: if(
1267
- global-variable-exists('carbon--theme') and
1268
- map-has-key($carbon--theme, 'background-inverse-hover'),
1269
- map-get($carbon--theme, 'background-inverse-hover'),
1270
- #4c4c4c
1271
- ) !default;
1272
-
1273
- /// @type {undefined}
1274
- /// @access public
1275
- /// @group @carbon/themes
1276
- $link-primary-hover: if(
1277
- global-variable-exists('carbon--theme') and
1278
- map-has-key($carbon--theme, 'link-primary-hover'),
1279
- map-get($carbon--theme, 'link-primary-hover'),
1280
- #0043ce
1281
- ) !default;
1282
-
1283
- /// @type {undefined}
1284
- /// @access public
1285
- /// @group @carbon/themes
1286
- $button-danger-hover: if(
1287
- global-variable-exists('carbon--theme') and
1288
- map-has-key($carbon--theme, 'button-danger-hover'),
1289
- map-get($carbon--theme, 'button-danger-hover'),
1290
- #b81921
1291
- ) !default;
1292
-
1293
- /// @type {undefined}
1294
- /// @access public
1295
- /// @group @carbon/themes
1296
- $button-primary-hover: if(
1297
- global-variable-exists('carbon--theme') and
1298
- map-has-key($carbon--theme, 'button-primary-hover'),
1299
- map-get($carbon--theme, 'button-primary-hover'),
1300
- #0353e9
1301
- ) !default;
1302
-
1303
- /// @type {undefined}
1304
- /// @access public
1305
- /// @group @carbon/themes
1306
- $button-secondary-hover: if(
1307
- global-variable-exists('carbon--theme') and
1308
- map-has-key($carbon--theme, 'button-secondary-hover'),
1309
- map-get($carbon--theme, 'button-secondary-hover'),
1310
- #4c4c4c
1311
- ) !default;
1312
-
1313
- /// @type {undefined}
1314
- /// @access public
1315
- /// @group @carbon/themes
1316
- $button-tertiary-hover: if(
1317
- global-variable-exists('carbon--theme') and
1318
- map-has-key($carbon--theme, 'button-tertiary-hover'),
1319
- map-get($carbon--theme, 'button-tertiary-hover'),
1320
- #0353e9
1321
- ) !default;
1322
-
1323
- /// @type {undefined}
1324
- /// @access public
1325
- /// @group @carbon/themes
1326
- $background-selected: if(
1327
- global-variable-exists('carbon--theme') and
1328
- map-has-key($carbon--theme, 'background-selected'),
1329
- map-get($carbon--theme, 'background-selected'),
1330
- #e0e0e0
1331
- ) !default;
1332
-
1333
- /// @type {undefined}
1334
- /// @access public
1335
- /// @group @carbon/themes
1336
- $background-selected-hover: if(
1337
- global-variable-exists('carbon--theme') and
1338
- map-has-key($carbon--theme, 'background-selected-hover'),
1339
- map-get($carbon--theme, 'background-selected-hover'),
1340
- #cacaca
1341
- ) !default;
1342
-
1343
- /// @type {undefined}
1344
- /// @access public
1345
- /// @group @carbon/themes
1346
- $layer-selected: if(
1347
- global-variable-exists('carbon--theme') and
1348
- map-has-key($carbon--theme, 'layer-selected'),
1349
- map-get($carbon--theme, 'layer-selected'),
1350
- #e0e0e0
1351
- ) !default;
1352
-
1353
- /// @type {undefined}
1354
- /// @access public
1355
- /// @group @carbon/themes
1356
- $layer-selected-hover: if(
1357
- global-variable-exists('carbon--theme') and
1358
- map-has-key($carbon--theme, 'layer-selected-hover'),
1359
- map-get($carbon--theme, 'layer-selected-hover'),
1360
- #cacaca
1361
- ) !default;
1362
-
1363
- /// @type {undefined}
1364
- /// @access public
1365
- /// @group @carbon/themes
1366
- $layer-selected-inverse: if(
1367
- global-variable-exists('carbon--theme') and
1368
- map-has-key($carbon--theme, 'layer-selected-inverse'),
1369
- map-get($carbon--theme, 'layer-selected-inverse'),
1370
- #161616
1371
- ) !default;
1372
-
1373
- /// @type {undefined}
1374
- /// @access public
1375
- /// @group @carbon/themes
1376
- $border-subtle-selected: if(
1377
- global-variable-exists('carbon--theme') and
1378
- map-has-key($carbon--theme, 'border-subtle-selected'),
1379
- map-get($carbon--theme, 'border-subtle-selected'),
1380
- #c6c6c6
1381
- ) !default;
1382
-
1383
- /// @type {undefined}
1384
- /// @access public
1385
- /// @group @carbon/themes
1386
- $border-disabled: if(
1387
- global-variable-exists('carbon--theme') and
1388
- map-has-key($carbon--theme, 'border-disabled'),
1389
- map-get($carbon--theme, 'border-disabled'),
1390
- #f4f4f4
1391
- ) !default;
1392
-
1393
- /// @type {undefined}
1394
- /// @access public
1395
- /// @group @carbon/themes
1396
- $text-disabled: if(
1397
- global-variable-exists('carbon--theme') and
1398
- map-has-key($carbon--theme, 'text-disabled'),
1399
- map-get($carbon--theme, 'text-disabled'),
1400
- #c6c6c6
1401
- ) !default;
1402
-
1403
- /// @type {undefined}
1404
- /// @access public
1405
- /// @group @carbon/themes
1406
- $button-disabled: if(
1407
- global-variable-exists('carbon--theme') and
1408
- map-has-key($carbon--theme, 'button-disabled'),
1409
- map-get($carbon--theme, 'button-disabled'),
1410
- #c6c6c6
1411
- ) !default;
1412
-
1413
- /// @type {undefined}
1414
- /// @access public
1415
- /// @group @carbon/themes
1416
- $icon-disabled: if(
1417
- global-variable-exists('carbon--theme') and
1418
- map-has-key($carbon--theme, 'icon-disabled'),
1419
- map-get($carbon--theme, 'icon-disabled'),
1420
- #c6c6c6
1421
- ) !default;
1422
-
1423
- /// @type {undefined}
1424
- /// @access public
1425
- /// @group @carbon/themes
1426
- $text-on-color-disabled: if(
1427
- global-variable-exists('carbon--theme') and
1428
- map-has-key($carbon--theme, 'text-on-color-disabled'),
1429
- map-get($carbon--theme, 'text-on-color-disabled'),
1430
- #8d8d8d
1431
- ) !default;
1432
-
1433
- /// @type {undefined}
1434
- /// @access public
1435
- /// @group @carbon/themes
1436
- $icon-on-color-disabled: if(
1437
- global-variable-exists('carbon--theme') and
1438
- map-has-key($carbon--theme, 'icon-on-color-disabled'),
1439
- map-get($carbon--theme, 'icon-on-color-disabled'),
1440
- #8d8d8d
1441
- ) !default;
1442
-
1443
- /// @type {undefined}
1444
- /// @access public
1445
- /// @group @carbon/themes
1446
- $layer-selected-disabled: if(
1447
- global-variable-exists('carbon--theme') and
1448
- map-has-key($carbon--theme, 'layer-selected-disabled'),
1449
- map-get($carbon--theme, 'layer-selected-disabled'),
1450
- #8d8d8d
1451
- ) !default;
1452
-
1453
- /// @type {undefined}
1454
- /// @access public
1455
- /// @group @carbon/themes
1456
- $skeleton-background: if(
1457
- global-variable-exists('carbon--theme') and
1458
- map-has-key($carbon--theme, 'skeleton-background'),
1459
- map-get($carbon--theme, 'skeleton-background'),
1460
- #e5e5e5
1461
- ) !default;
1462
-
1463
- /// @type {undefined}
1464
- /// @access public
1465
- /// @group @carbon/themes
1466
- $skeleton-element: if(
1467
- global-variable-exists('carbon--theme') and
1468
- map-has-key($carbon--theme, 'skeleton-element'),
1469
- map-get($carbon--theme, 'skeleton-element'),
1470
- #c6c6c6
1471
- ) !default;
1472
-
1473
- /// @type {undefined}
1474
- /// @access public
1475
- /// @group @carbon/themes
1476
- /// @alias interactive-01
1477
- /// @deprecated
1478
- $brand-01: if(
1479
- global-variable-exists('carbon--theme') and
1480
- map-has-key($carbon--theme, 'brand-01'),
1481
- map-get($carbon--theme, 'brand-01'),
1482
- #0f62fe
1483
- ) !default;
1484
-
1485
- /// @type {undefined}
1486
- /// @access public
1487
- /// @group @carbon/themes
1488
- /// @alias interactive-02
1489
- /// @deprecated
1490
- $brand-02: if(
1491
- global-variable-exists('carbon--theme') and
1492
- map-has-key($carbon--theme, 'brand-02'),
1493
- map-get($carbon--theme, 'brand-02'),
1494
- #393939
1495
- ) !default;
1496
-
1497
- /// @type {undefined}
1498
- /// @access public
1499
- /// @group @carbon/themes
1500
- /// @alias interactive-03
1501
- /// @deprecated
1502
- $brand-03: if(
1503
- global-variable-exists('carbon--theme') and
1504
- map-has-key($carbon--theme, 'brand-03'),
1505
- map-get($carbon--theme, 'brand-03'),
1506
- #0f62fe
1507
- ) !default;
1508
-
1509
- /// @type {undefined}
1510
- /// @access public
1511
- /// @group @carbon/themes
1512
- /// @alias active-ui
1513
- /// @deprecated
1514
- $active-01: if(
1515
- global-variable-exists('carbon--theme') and
1516
- map-has-key($carbon--theme, 'active-01'),
1517
- map-get($carbon--theme, 'active-01'),
1518
- #c6c6c6
1519
- ) !default;
1520
-
1521
- /// @type {undefined}
1522
- /// @access public
1523
- /// @group @carbon/themes
1524
- /// @alias hover-ui
1525
- /// @deprecated
1526
- $hover-field: if(
1527
- global-variable-exists('carbon--theme') and
1528
- map-has-key($carbon--theme, 'hover-field'),
1529
- map-get($carbon--theme, 'hover-field'),
1530
- #e5e5e5
1531
- ) !default;
1532
-
1533
- /// @type {undefined}
1534
- /// @access public
1535
- /// @group @carbon/themes
1536
- $danger: if(
1537
- global-variable-exists('carbon--theme') and
1538
- map-has-key($carbon--theme, 'danger'),
1539
- map-get($carbon--theme, 'danger'),
1540
- #da1e28
1541
- ) !default;
1542
-
1543
- /// @type {Number}
1544
- /// @access public
1545
- /// @group @carbon/themes
1546
- $caption-01: if(
1547
- global-variable-exists('carbon--theme') and
1548
- map-has-key($carbon--theme, 'caption-01'),
1549
- map-get($carbon--theme, 'caption-01'),
1550
- (
1551
- font-size: 0.75rem,
1552
- font-weight: 400,
1553
- line-height: 1.33333,
1554
- letter-spacing: 0.32px,
1555
- )
1556
- ) !default;
1557
-
1558
- /// @type {Number}
1559
- /// @access public
1560
- /// @group @carbon/themes
1561
- $caption-02: if(
1562
- global-variable-exists('carbon--theme') and
1563
- map-has-key($carbon--theme, 'caption-02'),
1564
- map-get($carbon--theme, 'caption-02'),
1565
- (
1566
- font-size: 0.875rem,
1567
- font-weight: 400,
1568
- line-height: 1.28572,
1569
- letter-spacing: 0.32px,
1570
- )
1571
- ) !default;
1572
-
1573
- /// @type {Number}
1574
- /// @access public
1575
- /// @group @carbon/themes
1576
- $label-01: if(
1577
- global-variable-exists('carbon--theme') and
1578
- map-has-key($carbon--theme, 'label-01'),
1579
- map-get($carbon--theme, 'label-01'),
1580
- (
1581
- font-size: 0.75rem,
1582
- font-weight: 400,
1583
- line-height: 1.33333,
1584
- letter-spacing: 0.32px,
1585
- )
1586
- ) !default;
1587
-
1588
- /// @type {Number}
1589
- /// @access public
1590
- /// @group @carbon/themes
1591
- $label-02: if(
1592
- global-variable-exists('carbon--theme') and
1593
- map-has-key($carbon--theme, 'label-02'),
1594
- map-get($carbon--theme, 'label-02'),
1595
- (
1596
- font-size: 0.875rem,
1597
- font-weight: 400,
1598
- line-height: 1.28572,
1599
- letter-spacing: 0.16px,
1600
- )
1601
- ) !default;
1602
-
1603
- /// @type {Number}
1604
- /// @access public
1605
- /// @group @carbon/themes
1606
- $helper-text-01: if(
1607
- global-variable-exists('carbon--theme') and
1608
- map-has-key($carbon--theme, 'helper-text-01'),
1609
- map-get($carbon--theme, 'helper-text-01'),
1610
- (
1611
- font-size: 0.75rem,
1612
- line-height: 1.33333,
1613
- letter-spacing: 0.32px,
1614
- )
1615
- ) !default;
1616
-
1617
- /// @type {Number}
1618
- /// @access public
1619
- /// @group @carbon/themes
1620
- $helper-text-02: if(
1621
- global-variable-exists('carbon--theme') and
1622
- map-has-key($carbon--theme, 'helper-text-02'),
1623
- map-get($carbon--theme, 'helper-text-02'),
1624
- (
1625
- font-size: 0.875rem,
1626
- line-height: 1.28572,
1627
- letter-spacing: 0.16px,
1628
- )
1629
- ) !default;
1630
-
1631
- /// @type {Number}
1632
- /// @access public
1633
- /// @group @carbon/themes
1634
- $body-short-01: if(
1635
- global-variable-exists('carbon--theme') and
1636
- map-has-key($carbon--theme, 'body-short-01'),
1637
- map-get($carbon--theme, 'body-short-01'),
1638
- (
1639
- font-size: 0.875rem,
1640
- font-weight: 400,
1641
- line-height: 1.28572,
1642
- letter-spacing: 0.16px,
1643
- )
1644
- ) !default;
1645
-
1646
- /// @type {Number}
1647
- /// @access public
1648
- /// @group @carbon/themes
1649
- $body-long-01: if(
1650
- global-variable-exists('carbon--theme') and
1651
- map-has-key($carbon--theme, 'body-long-01'),
1652
- map-get($carbon--theme, 'body-long-01'),
1653
- (
1654
- font-size: 0.875rem,
1655
- font-weight: 400,
1656
- line-height: 1.42857,
1657
- letter-spacing: 0.16px,
1658
- )
1659
- ) !default;
1660
-
1661
- /// @type {Number}
1662
- /// @access public
1663
- /// @group @carbon/themes
1664
- $body-short-02: if(
1665
- global-variable-exists('carbon--theme') and
1666
- map-has-key($carbon--theme, 'body-short-02'),
1667
- map-get($carbon--theme, 'body-short-02'),
1668
- (
1669
- font-size: 1rem,
1670
- font-weight: 400,
1671
- line-height: 1.375,
1672
- letter-spacing: 0,
1673
- )
1674
- ) !default;
1675
-
1676
- /// @type {Number}
1677
- /// @access public
1678
- /// @group @carbon/themes
1679
- $body-long-02: if(
1680
- global-variable-exists('carbon--theme') and
1681
- map-has-key($carbon--theme, 'body-long-02'),
1682
- map-get($carbon--theme, 'body-long-02'),
1683
- (
1684
- font-size: 1rem,
1685
- font-weight: 400,
1686
- line-height: 1.5,
1687
- letter-spacing: 0,
1688
- )
1689
- ) !default;
1690
-
1691
- /// @type {Number}
1692
- /// @access public
1693
- /// @group @carbon/themes
1694
- $code-01: if(
1695
- global-variable-exists('carbon--theme') and
1696
- map-has-key($carbon--theme, 'code-01'),
1697
- map-get($carbon--theme, 'code-01'),
1698
- (
1699
- font-family:
1700
- unquote(
1701
- "'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace"
1702
- ),
1703
- font-size: 0.75rem,
1704
- font-weight: 400,
1705
- line-height: 1.33333,
1706
- letter-spacing: 0.32px,
1707
- )
1708
- ) !default;
1709
-
1710
- /// @type {Number}
1711
- /// @access public
1712
- /// @group @carbon/themes
1713
- $code-02: if(
1714
- global-variable-exists('carbon--theme') and
1715
- map-has-key($carbon--theme, 'code-02'),
1716
- map-get($carbon--theme, 'code-02'),
1717
- (
1718
- font-family:
1719
- unquote(
1720
- "'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace"
1721
- ),
1722
- font-size: 0.875rem,
1723
- font-weight: 400,
1724
- line-height: 1.42857,
1725
- letter-spacing: 0.32px,
1726
- )
1727
- ) !default;
1728
-
1729
- /// @type {Number}
1730
- /// @access public
1731
- /// @group @carbon/themes
1732
- $heading-01: if(
1733
- global-variable-exists('carbon--theme') and
1734
- map-has-key($carbon--theme, 'heading-01'),
1735
- map-get($carbon--theme, 'heading-01'),
1736
- (
1737
- font-size: 0.875rem,
1738
- font-weight: 600,
1739
- line-height: 1.42857,
1740
- letter-spacing: 0.16px,
1741
- )
1742
- ) !default;
1743
-
1744
- /// @type {Number}
1745
- /// @access public
1746
- /// @group @carbon/themes
1747
- $productive-heading-01: if(
1748
- global-variable-exists('carbon--theme') and
1749
- map-has-key($carbon--theme, 'productive-heading-01'),
1750
- map-get($carbon--theme, 'productive-heading-01'),
1751
- (
1752
- font-size: 0.875rem,
1753
- font-weight: 600,
1754
- line-height: 1.28572,
1755
- letter-spacing: 0.16px,
1756
- )
1757
- ) !default;
1758
-
1759
- /// @type {Number}
1760
- /// @access public
1761
- /// @group @carbon/themes
1762
- $heading-02: if(
1763
- global-variable-exists('carbon--theme') and
1764
- map-has-key($carbon--theme, 'heading-02'),
1765
- map-get($carbon--theme, 'heading-02'),
1766
- (
1767
- font-size: 1rem,
1768
- font-weight: 600,
1769
- line-height: 1.5,
1770
- letter-spacing: 0,
1771
- )
1772
- ) !default;
1773
-
1774
- /// @type {Number}
1775
- /// @access public
1776
- /// @group @carbon/themes
1777
- $productive-heading-02: if(
1778
- global-variable-exists('carbon--theme') and
1779
- map-has-key($carbon--theme, 'productive-heading-02'),
1780
- map-get($carbon--theme, 'productive-heading-02'),
1781
- (
1782
- font-size: 1rem,
1783
- font-weight: 600,
1784
- line-height: 1.375,
1785
- letter-spacing: 0,
1786
- )
1787
- ) !default;
1788
-
1789
- /// @type {Number}
1790
- /// @access public
1791
- /// @group @carbon/themes
1792
- $productive-heading-03: if(
1793
- global-variable-exists('carbon--theme') and
1794
- map-has-key($carbon--theme, 'productive-heading-03'),
1795
- map-get($carbon--theme, 'productive-heading-03'),
1796
- (
1797
- font-size: 1.25rem,
1798
- font-weight: 400,
1799
- line-height: 1.4,
1800
- letter-spacing: 0,
1801
- )
1802
- ) !default;
1803
-
1804
- /// @type {Number}
1805
- /// @access public
1806
- /// @group @carbon/themes
1807
- $productive-heading-04: if(
1808
- global-variable-exists('carbon--theme') and
1809
- map-has-key($carbon--theme, 'productive-heading-04'),
1810
- map-get($carbon--theme, 'productive-heading-04'),
1811
- (
1812
- font-size: 1.75rem,
1813
- font-weight: 400,
1814
- line-height: 1.28572,
1815
- letter-spacing: 0,
1816
- )
1817
- ) !default;
1818
-
1819
- /// @type {Number}
1820
- /// @access public
1821
- /// @group @carbon/themes
1822
- $productive-heading-05: if(
1823
- global-variable-exists('carbon--theme') and
1824
- map-has-key($carbon--theme, 'productive-heading-05'),
1825
- map-get($carbon--theme, 'productive-heading-05'),
1826
- (
1827
- font-size: 2rem,
1828
- font-weight: 400,
1829
- line-height: 1.25,
1830
- letter-spacing: 0,
1831
- )
1832
- ) !default;
1833
-
1834
- /// @type {Number}
1835
- /// @access public
1836
- /// @group @carbon/themes
1837
- $productive-heading-06: if(
1838
- global-variable-exists('carbon--theme') and
1839
- map-has-key($carbon--theme, 'productive-heading-06'),
1840
- map-get($carbon--theme, 'productive-heading-06'),
1841
- (
1842
- font-size: 2.625rem,
1843
- font-weight: 300,
1844
- line-height: 1.199,
1845
- letter-spacing: 0,
1846
- )
1847
- ) !default;
1848
-
1849
- /// @type {Number}
1850
- /// @access public
1851
- /// @group @carbon/themes
1852
- $productive-heading-07: if(
1853
- global-variable-exists('carbon--theme') and
1854
- map-has-key($carbon--theme, 'productive-heading-07'),
1855
- map-get($carbon--theme, 'productive-heading-07'),
1856
- (
1857
- font-size: 3.375rem,
1858
- font-weight: 300,
1859
- line-height: 1.199,
1860
- letter-spacing: 0,
1861
- )
1862
- ) !default;
1863
-
1864
- /// @type {Number}
1865
- /// @access public
1866
- /// @group @carbon/themes
1867
- $expressive-heading-01: if(
1868
- global-variable-exists('carbon--theme') and
1869
- map-has-key($carbon--theme, 'expressive-heading-01'),
1870
- map-get($carbon--theme, 'expressive-heading-01'),
1871
- (
1872
- font-size: 0.875rem,
1873
- font-weight: 600,
1874
- line-height: 1.25,
1875
- letter-spacing: 0.16px,
1876
- )
1877
- ) !default;
1878
-
1879
- /// @type {Number}
1880
- /// @access public
1881
- /// @group @carbon/themes
1882
- $expressive-heading-02: if(
1883
- global-variable-exists('carbon--theme') and
1884
- map-has-key($carbon--theme, 'expressive-heading-02'),
1885
- map-get($carbon--theme, 'expressive-heading-02'),
1886
- (
1887
- font-size: 1rem,
1888
- font-weight: 600,
1889
- line-height: 1.5,
1890
- letter-spacing: 0,
1891
- )
1892
- ) !default;
1893
-
1894
- /// @type {Number}
1895
- /// @access public
1896
- /// @group @carbon/themes
1897
- $expressive-heading-03: if(
1898
- global-variable-exists('carbon--theme') and
1899
- map-has-key($carbon--theme, 'expressive-heading-03'),
1900
- map-get($carbon--theme, 'expressive-heading-03'),
1901
- (
1902
- font-size: 1.25rem,
1903
- font-weight: 400,
1904
- line-height: 1.4,
1905
- letter-spacing: 0,
1906
- breakpoints: (
1907
- xlg: (
1908
- font-size: 1.25rem,
1909
- line-height: 1.25,
1910
- ),
1911
- max: (
1912
- font-size: 1.5rem,
1913
- line-height: 1.334,
1914
- ),
1915
- ),
1916
- )
1917
- ) !default;
1918
-
1919
- /// @type {Number}
1920
- /// @access public
1921
- /// @group @carbon/themes
1922
- $expressive-heading-04: if(
1923
- global-variable-exists('carbon--theme') and
1924
- map-has-key($carbon--theme, 'expressive-heading-04'),
1925
- map-get($carbon--theme, 'expressive-heading-04'),
1926
- (
1927
- font-size: 1.75rem,
1928
- font-weight: 400,
1929
- line-height: 1.28572,
1930
- letter-spacing: 0,
1931
- breakpoints: (
1932
- xlg: (
1933
- font-size: 1.75rem,
1934
- line-height: 1.25,
1935
- ),
1936
- max: (
1937
- font-size: 2rem,
1938
- ),
1939
- ),
1940
- )
1941
- ) !default;
1942
-
1943
- /// @type {Number}
1944
- /// @access public
1945
- /// @group @carbon/themes
1946
- $expressive-heading-05: if(
1947
- global-variable-exists('carbon--theme') and
1948
- map-has-key($carbon--theme, 'expressive-heading-05'),
1949
- map-get($carbon--theme, 'expressive-heading-05'),
1950
- (
1951
- font-size: 2rem,
1952
- font-weight: 400,
1953
- line-height: 1.25,
1954
- letter-spacing: 0,
1955
- breakpoints: (
1956
- md: (
1957
- font-size: 2.25rem,
1958
- font-weight: 300,
1959
- line-height: 1.22,
1960
- letter-spacing: 0,
1961
- ),
1962
- lg: (
1963
- font-size: 2.625rem,
1964
- font-weight: 300,
1965
- line-height: 1.19,
1966
- letter-spacing: 0,
1967
- ),
1968
- xlg: (
1969
- font-size: 3rem,
1970
- font-weight: 300,
1971
- line-height: 1.17,
1972
- letter-spacing: 0,
1973
- ),
1974
- max: (
1975
- font-size: 3.75rem,
1976
- font-weight: 300,
1977
- letter-spacing: 0,
1978
- ),
1979
- ),
1980
- )
1981
- ) !default;
1982
-
1983
- /// @type {Number}
1984
- /// @access public
1985
- /// @group @carbon/themes
1986
- $expressive-heading-06: if(
1987
- global-variable-exists('carbon--theme') and
1988
- map-has-key($carbon--theme, 'expressive-heading-06'),
1989
- map-get($carbon--theme, 'expressive-heading-06'),
1990
- (
1991
- font-size: 2rem,
1992
- font-weight: 600,
1993
- line-height: 1.25,
1994
- letter-spacing: 0,
1995
- breakpoints: (
1996
- md: (
1997
- font-size: 2.25rem,
1998
- font-weight: 600,
1999
- line-height: 1.22,
2000
- letter-spacing: 0,
2001
- ),
2002
- lg: (
2003
- font-size: 2.625rem,
2004
- font-weight: 600,
2005
- line-height: 1.19,
2006
- letter-spacing: 0,
2007
- ),
2008
- xlg: (
2009
- font-size: 3rem,
2010
- font-weight: 600,
2011
- line-height: 1.17,
2012
- letter-spacing: 0,
2013
- ),
2014
- max: (
2015
- font-size: 3.75rem,
2016
- font-weight: 600,
2017
- letter-spacing: 0,
2018
- ),
2019
- ),
2020
- )
2021
- ) !default;
2022
-
2023
- /// @type {Number}
2024
- /// @access public
2025
- /// @group @carbon/themes
2026
- $expressive-paragraph-01: if(
2027
- global-variable-exists('carbon--theme') and
2028
- map-has-key($carbon--theme, 'expressive-paragraph-01'),
2029
- map-get($carbon--theme, 'expressive-paragraph-01'),
2030
- (
2031
- font-size: 1.5rem,
2032
- font-weight: 300,
2033
- line-height: 1.334,
2034
- letter-spacing: 0,
2035
- breakpoints: (
2036
- lg: (
2037
- font-size: 1.75rem,
2038
- line-height: 1.28572,
2039
- ),
2040
- max: (
2041
- font-size: 2rem,
2042
- line-height: 1.25,
2043
- ),
2044
- ),
2045
- )
2046
- ) !default;
2047
-
2048
- /// @type {Number}
2049
- /// @access public
2050
- /// @group @carbon/themes
2051
- $quotation-01: if(
2052
- global-variable-exists('carbon--theme') and
2053
- map-has-key($carbon--theme, 'quotation-01'),
2054
- map-get($carbon--theme, 'quotation-01'),
2055
- (
2056
- font-family: unquote("'IBM Plex Serif', 'Georgia', Times, serif"),
2057
- font-size: 1.25rem,
2058
- font-weight: 400,
2059
- line-height: 1.3,
2060
- letter-spacing: 0,
2061
- breakpoints: (
2062
- md: (
2063
- font-size: 1.25rem,
2064
- font-weight: 400,
2065
- letter-spacing: 0,
2066
- ),
2067
- lg: (
2068
- font-size: 1.5rem,
2069
- font-weight: 400,
2070
- line-height: 1.334,
2071
- letter-spacing: 0,
2072
- ),
2073
- xlg: (
2074
- font-size: 1.75rem,
2075
- font-weight: 400,
2076
- line-height: 1.28572,
2077
- letter-spacing: 0,
2078
- ),
2079
- max: (
2080
- font-size: 2rem,
2081
- font-weight: 400,
2082
- line-height: 1.25,
2083
- letter-spacing: 0,
2084
- ),
2085
- ),
2086
- )
2087
- ) !default;
2088
-
2089
- /// @type {Number}
2090
- /// @access public
2091
- /// @group @carbon/themes
2092
- $quotation-02: if(
2093
- global-variable-exists('carbon--theme') and
2094
- map-has-key($carbon--theme, 'quotation-02'),
2095
- map-get($carbon--theme, 'quotation-02'),
2096
- (
2097
- font-family: unquote("'IBM Plex Serif', 'Georgia', Times, serif"),
2098
- font-size: 2rem,
2099
- font-weight: 300,
2100
- line-height: 1.25,
2101
- letter-spacing: 0,
2102
- breakpoints: (
2103
- md: (
2104
- font-size: 2.25rem,
2105
- line-height: 1.22,
2106
- ),
2107
- lg: (
2108
- font-size: 2.625rem,
2109
- line-height: 1.19,
2110
- ),
2111
- xlg: (
2112
- font-size: 3rem,
2113
- line-height: 1.17,
2114
- ),
2115
- max: (
2116
- font-size: 3.75rem,
2117
- ),
2118
- ),
2119
- )
2120
- ) !default;
2121
-
2122
- /// @type {Number}
2123
- /// @access public
2124
- /// @group @carbon/themes
2125
- $display-01: if(
2126
- global-variable-exists('carbon--theme') and
2127
- map-has-key($carbon--theme, 'display-01'),
2128
- map-get($carbon--theme, 'display-01'),
2129
- (
2130
- font-size: 2.625rem,
2131
- font-weight: 300,
2132
- line-height: 1.19,
2133
- letter-spacing: 0,
2134
- breakpoints: (
2135
- md: (
2136
- font-size: 2.625rem,
2137
- ),
2138
- lg: (
2139
- font-size: 3.375rem,
2140
- ),
2141
- xlg: (
2142
- font-size: 3.75rem,
2143
- line-height: 1.17,
2144
- ),
2145
- max: (
2146
- font-size: 4.75rem,
2147
- line-height: 1.13,
2148
- ),
2149
- ),
2150
- )
2151
- ) !default;
2152
-
2153
- /// @type {Number}
2154
- /// @access public
2155
- /// @group @carbon/themes
2156
- $display-02: if(
2157
- global-variable-exists('carbon--theme') and
2158
- map-has-key($carbon--theme, 'display-02'),
2159
- map-get($carbon--theme, 'display-02'),
2160
- (
2161
- font-size: 2.625rem,
2162
- font-weight: 600,
2163
- line-height: 1.19,
2164
- letter-spacing: 0,
2165
- breakpoints: (
2166
- md: (
2167
- font-size: 2.625rem,
2168
- ),
2169
- lg: (
2170
- font-size: 3.375rem,
2171
- ),
2172
- xlg: (
2173
- font-size: 3.75rem,
2174
- line-height: 1.16,
2175
- ),
2176
- max: (
2177
- font-size: 4.75rem,
2178
- line-height: 1.13,
2179
- ),
2180
- ),
2181
- )
2182
- ) !default;
2183
-
2184
- /// @type {Number}
2185
- /// @access public
2186
- /// @group @carbon/themes
2187
- $display-03: if(
2188
- global-variable-exists('carbon--theme') and
2189
- map-has-key($carbon--theme, 'display-03'),
2190
- map-get($carbon--theme, 'display-03'),
2191
- (
2192
- font-size: 2.625rem,
2193
- font-weight: 300,
2194
- line-height: 1.19,
2195
- letter-spacing: 0,
2196
- breakpoints: (
2197
- md: (
2198
- font-size: 4.25rem,
2199
- line-height: 1.15,
2200
- ),
2201
- lg: (
2202
- font-size: 5.75rem,
2203
- line-height: 1.11,
2204
- letter-spacing: -0.64px,
2205
- ),
2206
- xlg: (
2207
- font-size: 7.625rem,
2208
- line-height: 1.07,
2209
- ),
2210
- max: (
2211
- font-size: 9.75rem,
2212
- line-height: 1.05,
2213
- letter-spacing: -0.96px,
2214
- ),
2215
- ),
2216
- )
2217
- ) !default;
2218
-
2219
- /// @type {Number}
2220
- /// @access public
2221
- /// @group @carbon/themes
2222
- $display-04: if(
2223
- global-variable-exists('carbon--theme') and
2224
- map-has-key($carbon--theme, 'display-04'),
2225
- map-get($carbon--theme, 'display-04'),
2226
- (
2227
- font-size: 2.625rem,
2228
- font-weight: 600,
2229
- line-height: 1.19,
2230
- letter-spacing: 0,
2231
- breakpoints: (
2232
- md: (
2233
- font-size: 4.25rem,
2234
- line-height: 1.15,
2235
- ),
2236
- lg: (
2237
- font-size: 5.75rem,
2238
- line-height: 1.11,
2239
- letter-spacing: -0.64px,
2240
- ),
2241
- xlg: (
2242
- font-size: 7.625rem,
2243
- line-height: 1.07,
2244
- letter-spacing: -0.64px,
2245
- ),
2246
- max: (
2247
- font-size: 9.75rem,
2248
- line-height: 1.05,
2249
- letter-spacing: -0.96px,
2250
- ),
2251
- ),
2252
- )
2253
- ) !default;
2254
-
2255
- /// @type {Number}
2256
- /// @access public
2257
- /// @group @carbon/themes
2258
- $legal-01: if(
2259
- global-variable-exists('carbon--theme') and
2260
- map-has-key($carbon--theme, 'legal-01'),
2261
- map-get($carbon--theme, 'legal-01'),
2262
- (
2263
- font-size: 0.75rem,
2264
- font-weight: 400,
2265
- line-height: 1.33333,
2266
- letter-spacing: 0.32px,
2267
- )
2268
- ) !default;
2269
-
2270
- /// @type {Number}
2271
- /// @access public
2272
- /// @group @carbon/themes
2273
- $legal-02: if(
2274
- global-variable-exists('carbon--theme') and
2275
- map-has-key($carbon--theme, 'legal-02'),
2276
- map-get($carbon--theme, 'legal-02'),
2277
- (
2278
- font-size: 0.875rem,
2279
- font-weight: 400,
2280
- line-height: 1.28572,
2281
- letter-spacing: 0.16px,
2282
- )
2283
- ) !default;
2284
-
2285
- /// @type {Number}
2286
- /// @access public
2287
- /// @group @carbon/themes
2288
- $body-compact-01: if(
2289
- global-variable-exists('carbon--theme') and
2290
- map-has-key($carbon--theme, 'body-compact-01'),
2291
- map-get($carbon--theme, 'body-compact-01'),
2292
- (
2293
- font-size: 0.875rem,
2294
- font-weight: 400,
2295
- line-height: 1.28572,
2296
- letter-spacing: 0.16px,
2297
- )
2298
- ) !default;
2299
-
2300
- /// @type {Number}
2301
- /// @access public
2302
- /// @group @carbon/themes
2303
- $body-compact-02: if(
2304
- global-variable-exists('carbon--theme') and
2305
- map-has-key($carbon--theme, 'body-compact-02'),
2306
- map-get($carbon--theme, 'body-compact-02'),
2307
- (
2308
- font-size: 1rem,
2309
- font-weight: 400,
2310
- line-height: 1.375,
2311
- letter-spacing: 0,
2312
- )
2313
- ) !default;
2314
-
2315
- /// @type {Number}
2316
- /// @access public
2317
- /// @group @carbon/themes
2318
- $body-01: if(
2319
- global-variable-exists('carbon--theme') and
2320
- map-has-key($carbon--theme, 'body-01'),
2321
- map-get($carbon--theme, 'body-01'),
2322
- (
2323
- font-size: 0.875rem,
2324
- font-weight: 400,
2325
- line-height: 1.42857,
2326
- letter-spacing: 0.16px,
2327
- )
2328
- ) !default;
2329
-
2330
- /// @type {Number}
2331
- /// @access public
2332
- /// @group @carbon/themes
2333
- $body-02: if(
2334
- global-variable-exists('carbon--theme') and
2335
- map-has-key($carbon--theme, 'body-02'),
2336
- map-get($carbon--theme, 'body-02'),
2337
- (
2338
- font-size: 1rem,
2339
- font-weight: 400,
2340
- line-height: 1.5,
2341
- letter-spacing: 0,
2342
- )
2343
- ) !default;
2344
-
2345
- /// @type {Number}
2346
- /// @access public
2347
- /// @group @carbon/themes
2348
- $heading-compact-01: if(
2349
- global-variable-exists('carbon--theme') and
2350
- map-has-key($carbon--theme, 'heading-compact-01'),
2351
- map-get($carbon--theme, 'heading-compact-01'),
2352
- (
2353
- font-size: 0.875rem,
2354
- font-weight: 600,
2355
- line-height: 1.28572,
2356
- letter-spacing: 0.16px,
2357
- )
2358
- ) !default;
2359
-
2360
- /// @type {Number}
2361
- /// @access public
2362
- /// @group @carbon/themes
2363
- $heading-compact-02: if(
2364
- global-variable-exists('carbon--theme') and
2365
- map-has-key($carbon--theme, 'heading-compact-02'),
2366
- map-get($carbon--theme, 'heading-compact-02'),
2367
- (
2368
- font-size: 1rem,
2369
- font-weight: 600,
2370
- line-height: 1.375,
2371
- letter-spacing: 0,
2372
- )
2373
- ) !default;
2374
-
2375
- /// @type {Number}
2376
- /// @access public
2377
- /// @group @carbon/themes
2378
- $heading-03: if(
2379
- global-variable-exists('carbon--theme') and
2380
- map-has-key($carbon--theme, 'heading-03'),
2381
- map-get($carbon--theme, 'heading-03'),
2382
- (
2383
- font-size: 1.25rem,
2384
- font-weight: 400,
2385
- line-height: 1.4,
2386
- letter-spacing: 0,
2387
- )
2388
- ) !default;
2389
-
2390
- /// @type {Number}
2391
- /// @access public
2392
- /// @group @carbon/themes
2393
- $heading-04: if(
2394
- global-variable-exists('carbon--theme') and
2395
- map-has-key($carbon--theme, 'heading-04'),
2396
- map-get($carbon--theme, 'heading-04'),
2397
- (
2398
- font-size: 1.75rem,
2399
- font-weight: 400,
2400
- line-height: 1.28572,
2401
- letter-spacing: 0,
2402
- )
2403
- ) !default;
2404
-
2405
- /// @type {Number}
2406
- /// @access public
2407
- /// @group @carbon/themes
2408
- $heading-05: if(
2409
- global-variable-exists('carbon--theme') and
2410
- map-has-key($carbon--theme, 'heading-05'),
2411
- map-get($carbon--theme, 'heading-05'),
2412
- (
2413
- font-size: 2rem,
2414
- font-weight: 400,
2415
- line-height: 1.25,
2416
- letter-spacing: 0,
2417
- )
2418
- ) !default;
2419
-
2420
- /// @type {Number}
2421
- /// @access public
2422
- /// @group @carbon/themes
2423
- $heading-06: if(
2424
- global-variable-exists('carbon--theme') and
2425
- map-has-key($carbon--theme, 'heading-06'),
2426
- map-get($carbon--theme, 'heading-06'),
2427
- (
2428
- font-size: 2.625rem,
2429
- font-weight: 300,
2430
- line-height: 1.199,
2431
- letter-spacing: 0,
2432
- )
2433
- ) !default;
2434
-
2435
- /// @type {Number}
2436
- /// @access public
2437
- /// @group @carbon/themes
2438
- $heading-07: if(
2439
- global-variable-exists('carbon--theme') and
2440
- map-has-key($carbon--theme, 'heading-07'),
2441
- map-get($carbon--theme, 'heading-07'),
2442
- (
2443
- font-size: 3.375rem,
2444
- font-weight: 300,
2445
- line-height: 1.199,
2446
- letter-spacing: 0,
2447
- )
2448
- ) !default;
2449
-
2450
- /// @type {Number}
2451
- /// @access public
2452
- /// @group @carbon/themes
2453
- $fluid-heading-03: if(
2454
- global-variable-exists('carbon--theme') and
2455
- map-has-key($carbon--theme, 'fluid-heading-03'),
2456
- map-get($carbon--theme, 'fluid-heading-03'),
2457
- (
2458
- font-size: 1.25rem,
2459
- font-weight: 400,
2460
- line-height: 1.4,
2461
- letter-spacing: 0,
2462
- breakpoints: (
2463
- xlg: (
2464
- font-size: 1.25rem,
2465
- line-height: 1.25,
2466
- ),
2467
- max: (
2468
- font-size: 1.5rem,
2469
- line-height: 1.334,
2470
- ),
2471
- ),
2472
- )
2473
- ) !default;
2474
-
2475
- /// @type {Number}
2476
- /// @access public
2477
- /// @group @carbon/themes
2478
- $fluid-heading-04: if(
2479
- global-variable-exists('carbon--theme') and
2480
- map-has-key($carbon--theme, 'fluid-heading-04'),
2481
- map-get($carbon--theme, 'fluid-heading-04'),
2482
- (
2483
- font-size: 1.75rem,
2484
- font-weight: 400,
2485
- line-height: 1.28572,
2486
- letter-spacing: 0,
2487
- breakpoints: (
2488
- xlg: (
2489
- font-size: 1.75rem,
2490
- line-height: 1.25,
2491
- ),
2492
- max: (
2493
- font-size: 2rem,
2494
- ),
2495
- ),
2496
- )
2497
- ) !default;
2498
-
2499
- /// @type {Number}
2500
- /// @access public
2501
- /// @group @carbon/themes
2502
- $fluid-heading-05: if(
2503
- global-variable-exists('carbon--theme') and
2504
- map-has-key($carbon--theme, 'fluid-heading-05'),
2505
- map-get($carbon--theme, 'fluid-heading-05'),
2506
- (
2507
- font-size: 2rem,
2508
- font-weight: 400,
2509
- line-height: 1.25,
2510
- letter-spacing: 0,
2511
- breakpoints: (
2512
- md: (
2513
- font-size: 2.25rem,
2514
- font-weight: 300,
2515
- line-height: 1.22,
2516
- letter-spacing: 0,
2517
- ),
2518
- lg: (
2519
- font-size: 2.625rem,
2520
- font-weight: 300,
2521
- line-height: 1.19,
2522
- letter-spacing: 0,
2523
- ),
2524
- xlg: (
2525
- font-size: 3rem,
2526
- font-weight: 300,
2527
- line-height: 1.17,
2528
- letter-spacing: 0,
2529
- ),
2530
- max: (
2531
- font-size: 3.75rem,
2532
- font-weight: 300,
2533
- letter-spacing: 0,
2534
- ),
2535
- ),
2536
- )
2537
- ) !default;
2538
-
2539
- /// @type {Number}
2540
- /// @access public
2541
- /// @group @carbon/themes
2542
- $fluid-heading-06: if(
2543
- global-variable-exists('carbon--theme') and
2544
- map-has-key($carbon--theme, 'fluid-heading-06'),
2545
- map-get($carbon--theme, 'fluid-heading-06'),
2546
- (
2547
- font-size: 2rem,
2548
- font-weight: 600,
2549
- line-height: 1.25,
2550
- letter-spacing: 0,
2551
- breakpoints: (
2552
- md: (
2553
- font-size: 2.25rem,
2554
- font-weight: 600,
2555
- line-height: 1.22,
2556
- letter-spacing: 0,
2557
- ),
2558
- lg: (
2559
- font-size: 2.625rem,
2560
- font-weight: 600,
2561
- line-height: 1.19,
2562
- letter-spacing: 0,
2563
- ),
2564
- xlg: (
2565
- font-size: 3rem,
2566
- font-weight: 600,
2567
- line-height: 1.17,
2568
- letter-spacing: 0,
2569
- ),
2570
- max: (
2571
- font-size: 3.75rem,
2572
- font-weight: 600,
2573
- letter-spacing: 0,
2574
- ),
2575
- ),
2576
- )
2577
- ) !default;
2578
-
2579
- /// @type {Number}
2580
- /// @access public
2581
- /// @group @carbon/themes
2582
- $fluid-paragraph-01: if(
2583
- global-variable-exists('carbon--theme') and
2584
- map-has-key($carbon--theme, 'fluid-paragraph-01'),
2585
- map-get($carbon--theme, 'fluid-paragraph-01'),
2586
- (
2587
- font-size: 1.5rem,
2588
- font-weight: 300,
2589
- line-height: 1.334,
2590
- letter-spacing: 0,
2591
- breakpoints: (
2592
- lg: (
2593
- font-size: 1.75rem,
2594
- line-height: 1.28572,
2595
- ),
2596
- max: (
2597
- font-size: 2rem,
2598
- line-height: 1.25,
2599
- ),
2600
- ),
2601
- )
2602
- ) !default;
2603
-
2604
- /// @type {Number}
2605
- /// @access public
2606
- /// @group @carbon/themes
2607
- $fluid-quotation-01: if(
2608
- global-variable-exists('carbon--theme') and
2609
- map-has-key($carbon--theme, 'fluid-quotation-01'),
2610
- map-get($carbon--theme, 'fluid-quotation-01'),
2611
- (
2612
- font-family: unquote("'IBM Plex Serif', 'Georgia', Times, serif"),
2613
- font-size: 1.25rem,
2614
- font-weight: 400,
2615
- line-height: 1.3,
2616
- letter-spacing: 0,
2617
- breakpoints: (
2618
- md: (
2619
- font-size: 1.25rem,
2620
- font-weight: 400,
2621
- letter-spacing: 0,
2622
- ),
2623
- lg: (
2624
- font-size: 1.5rem,
2625
- font-weight: 400,
2626
- line-height: 1.334,
2627
- letter-spacing: 0,
2628
- ),
2629
- xlg: (
2630
- font-size: 1.75rem,
2631
- font-weight: 400,
2632
- line-height: 1.28572,
2633
- letter-spacing: 0,
2634
- ),
2635
- max: (
2636
- font-size: 2rem,
2637
- font-weight: 400,
2638
- line-height: 1.25,
2639
- letter-spacing: 0,
2640
- ),
2641
- ),
2642
- )
2643
- ) !default;
2644
-
2645
- /// @type {Number}
2646
- /// @access public
2647
- /// @group @carbon/themes
2648
- $fluid-quotation-02: if(
2649
- global-variable-exists('carbon--theme') and
2650
- map-has-key($carbon--theme, 'fluid-quotation-02'),
2651
- map-get($carbon--theme, 'fluid-quotation-02'),
2652
- (
2653
- font-family: unquote("'IBM Plex Serif', 'Georgia', Times, serif"),
2654
- font-size: 2rem,
2655
- font-weight: 300,
2656
- line-height: 1.25,
2657
- letter-spacing: 0,
2658
- breakpoints: (
2659
- md: (
2660
- font-size: 2.25rem,
2661
- line-height: 1.22,
2662
- ),
2663
- lg: (
2664
- font-size: 2.625rem,
2665
- line-height: 1.19,
2666
- ),
2667
- xlg: (
2668
- font-size: 3rem,
2669
- line-height: 1.17,
2670
- ),
2671
- max: (
2672
- font-size: 3.75rem,
2673
- ),
2674
- ),
2675
- )
2676
- ) !default;
2677
-
2678
- /// @type {Number}
2679
- /// @access public
2680
- /// @group @carbon/themes
2681
- $fluid-display-01: if(
2682
- global-variable-exists('carbon--theme') and
2683
- map-has-key($carbon--theme, 'fluid-display-01'),
2684
- map-get($carbon--theme, 'fluid-display-01'),
2685
- (
2686
- font-size: 2.625rem,
2687
- font-weight: 300,
2688
- line-height: 1.19,
2689
- letter-spacing: 0,
2690
- breakpoints: (
2691
- md: (
2692
- font-size: 2.625rem,
2693
- ),
2694
- lg: (
2695
- font-size: 3.375rem,
2696
- ),
2697
- xlg: (
2698
- font-size: 3.75rem,
2699
- line-height: 1.17,
2700
- ),
2701
- max: (
2702
- font-size: 4.75rem,
2703
- line-height: 1.13,
2704
- ),
2705
- ),
2706
- )
2707
- ) !default;
2708
-
2709
- /// @type {Number}
2710
- /// @access public
2711
- /// @group @carbon/themes
2712
- $fluid-display-02: if(
2713
- global-variable-exists('carbon--theme') and
2714
- map-has-key($carbon--theme, 'fluid-display-02'),
2715
- map-get($carbon--theme, 'fluid-display-02'),
2716
- (
2717
- font-size: 2.625rem,
2718
- font-weight: 600,
2719
- line-height: 1.19,
2720
- letter-spacing: 0,
2721
- breakpoints: (
2722
- md: (
2723
- font-size: 2.625rem,
2724
- ),
2725
- lg: (
2726
- font-size: 3.375rem,
2727
- ),
2728
- xlg: (
2729
- font-size: 3.75rem,
2730
- line-height: 1.16,
2731
- ),
2732
- max: (
2733
- font-size: 4.75rem,
2734
- line-height: 1.13,
2735
- ),
2736
- ),
2737
- )
2738
- ) !default;
2739
-
2740
- /// @type {Number}
2741
- /// @access public
2742
- /// @group @carbon/themes
2743
- $fluid-display-03: if(
2744
- global-variable-exists('carbon--theme') and
2745
- map-has-key($carbon--theme, 'fluid-display-03'),
2746
- map-get($carbon--theme, 'fluid-display-03'),
2747
- (
2748
- font-size: 2.625rem,
2749
- font-weight: 300,
2750
- line-height: 1.19,
2751
- letter-spacing: 0,
2752
- breakpoints: (
2753
- md: (
2754
- font-size: 4.25rem,
2755
- line-height: 1.15,
2756
- ),
2757
- lg: (
2758
- font-size: 5.75rem,
2759
- line-height: 1.11,
2760
- letter-spacing: -0.64px,
2761
- ),
2762
- xlg: (
2763
- font-size: 7.625rem,
2764
- line-height: 1.07,
2765
- ),
2766
- max: (
2767
- font-size: 9.75rem,
2768
- line-height: 1.05,
2769
- letter-spacing: -0.96px,
2770
- ),
2771
- ),
2772
- )
2773
- ) !default;
2774
-
2775
- /// @type {Number}
2776
- /// @access public
2777
- /// @group @carbon/themes
2778
- $fluid-display-04: if(
2779
- global-variable-exists('carbon--theme') and
2780
- map-has-key($carbon--theme, 'fluid-display-04'),
2781
- map-get($carbon--theme, 'fluid-display-04'),
2782
- (
2783
- font-size: 2.625rem,
2784
- font-weight: 600,
2785
- line-height: 1.19,
2786
- letter-spacing: 0,
2787
- breakpoints: (
2788
- md: (
2789
- font-size: 4.25rem,
2790
- line-height: 1.15,
2791
- ),
2792
- lg: (
2793
- font-size: 5.75rem,
2794
- line-height: 1.11,
2795
- letter-spacing: -0.64px,
2796
- ),
2797
- xlg: (
2798
- font-size: 7.625rem,
2799
- line-height: 1.07,
2800
- letter-spacing: -0.64px,
2801
- ),
2802
- max: (
2803
- font-size: 9.75rem,
2804
- line-height: 1.05,
2805
- letter-spacing: -0.96px,
2806
- ),
2807
- ),
2808
- )
2809
- ) !default;
2810
-
2811
- /// @type {Number}
2812
- /// @access public
2813
- /// @group @carbon/themes
2814
- $spacing-01: if(
2815
- global-variable-exists('carbon--theme') and
2816
- map-has-key($carbon--theme, 'spacing-01'),
2817
- map-get($carbon--theme, 'spacing-01'),
2818
- 0.125rem
2819
- ) !default;
2820
-
2821
- /// @type {Number}
2822
- /// @access public
2823
- /// @group @carbon/themes
2824
- $spacing-02: if(
2825
- global-variable-exists('carbon--theme') and
2826
- map-has-key($carbon--theme, 'spacing-02'),
2827
- map-get($carbon--theme, 'spacing-02'),
2828
- 0.25rem
2829
- ) !default;
2830
-
2831
- /// @type {Number}
2832
- /// @access public
2833
- /// @group @carbon/themes
2834
- $spacing-03: if(
2835
- global-variable-exists('carbon--theme') and
2836
- map-has-key($carbon--theme, 'spacing-03'),
2837
- map-get($carbon--theme, 'spacing-03'),
2838
- 0.5rem
2839
- ) !default;
2840
-
2841
- /// @type {Number}
2842
- /// @access public
2843
- /// @group @carbon/themes
2844
- $spacing-04: if(
2845
- global-variable-exists('carbon--theme') and
2846
- map-has-key($carbon--theme, 'spacing-04'),
2847
- map-get($carbon--theme, 'spacing-04'),
2848
- 0.75rem
2849
- ) !default;
2850
-
2851
- /// @type {Number}
2852
- /// @access public
2853
- /// @group @carbon/themes
2854
- $spacing-05: if(
2855
- global-variable-exists('carbon--theme') and
2856
- map-has-key($carbon--theme, 'spacing-05'),
2857
- map-get($carbon--theme, 'spacing-05'),
2858
- 1rem
2859
- ) !default;
2860
-
2861
- /// @type {Number}
2862
- /// @access public
2863
- /// @group @carbon/themes
2864
- $spacing-06: if(
2865
- global-variable-exists('carbon--theme') and
2866
- map-has-key($carbon--theme, 'spacing-06'),
2867
- map-get($carbon--theme, 'spacing-06'),
2868
- 1.5rem
2869
- ) !default;
2870
-
2871
- /// @type {Number}
2872
- /// @access public
2873
- /// @group @carbon/themes
2874
- $spacing-07: if(
2875
- global-variable-exists('carbon--theme') and
2876
- map-has-key($carbon--theme, 'spacing-07'),
2877
- map-get($carbon--theme, 'spacing-07'),
2878
- 2rem
2879
- ) !default;
2880
-
2881
- /// @type {Number}
2882
- /// @access public
2883
- /// @group @carbon/themes
2884
- $spacing-08: if(
2885
- global-variable-exists('carbon--theme') and
2886
- map-has-key($carbon--theme, 'spacing-08'),
2887
- map-get($carbon--theme, 'spacing-08'),
2888
- 2.5rem
2889
- ) !default;
2890
-
2891
- /// @type {Number}
2892
- /// @access public
2893
- /// @group @carbon/themes
2894
- $spacing-09: if(
2895
- global-variable-exists('carbon--theme') and
2896
- map-has-key($carbon--theme, 'spacing-09'),
2897
- map-get($carbon--theme, 'spacing-09'),
2898
- 3rem
2899
- ) !default;
2900
-
2901
- /// @type {Number}
2902
- /// @access public
2903
- /// @group @carbon/themes
2904
- $spacing-10: if(
2905
- global-variable-exists('carbon--theme') and
2906
- map-has-key($carbon--theme, 'spacing-10'),
2907
- map-get($carbon--theme, 'spacing-10'),
2908
- 4rem
2909
- ) !default;
2910
-
2911
- /// @type {Number}
2912
- /// @access public
2913
- /// @group @carbon/themes
2914
- $spacing-11: if(
2915
- global-variable-exists('carbon--theme') and
2916
- map-has-key($carbon--theme, 'spacing-11'),
2917
- map-get($carbon--theme, 'spacing-11'),
2918
- 5rem
2919
- ) !default;
2920
-
2921
- /// @type {Number}
2922
- /// @access public
2923
- /// @group @carbon/themes
2924
- $spacing-12: if(
2925
- global-variable-exists('carbon--theme') and
2926
- map-has-key($carbon--theme, 'spacing-12'),
2927
- map-get($carbon--theme, 'spacing-12'),
2928
- 6rem
2929
- ) !default;
2930
-
2931
- /// @type {Number}
2932
- /// @access public
2933
- /// @group @carbon/themes
2934
- $spacing-13: if(
2935
- global-variable-exists('carbon--theme') and
2936
- map-has-key($carbon--theme, 'spacing-13'),
2937
- map-get($carbon--theme, 'spacing-13'),
2938
- 10rem
2939
- ) !default;
2940
-
2941
- /// @type {Number}
2942
- /// @access public
2943
- /// @group @carbon/themes
2944
- $fluid-spacing-01: if(
2945
- global-variable-exists('carbon--theme') and
2946
- map-has-key($carbon--theme, 'fluid-spacing-01'),
2947
- map-get($carbon--theme, 'fluid-spacing-01'),
2948
- 0
2949
- ) !default;
2950
-
2951
- /// @type {Number}
2952
- /// @access public
2953
- /// @group @carbon/themes
2954
- $fluid-spacing-02: if(
2955
- global-variable-exists('carbon--theme') and
2956
- map-has-key($carbon--theme, 'fluid-spacing-02'),
2957
- map-get($carbon--theme, 'fluid-spacing-02'),
2958
- 2vw
2959
- ) !default;
2960
-
2961
- /// @type {Number}
2962
- /// @access public
2963
- /// @group @carbon/themes
2964
- $fluid-spacing-03: if(
2965
- global-variable-exists('carbon--theme') and
2966
- map-has-key($carbon--theme, 'fluid-spacing-03'),
2967
- map-get($carbon--theme, 'fluid-spacing-03'),
2968
- 5vw
2969
- ) !default;
2970
-
2971
- /// @type {Number}
2972
- /// @access public
2973
- /// @group @carbon/themes
2974
- $fluid-spacing-04: if(
2975
- global-variable-exists('carbon--theme') and
2976
- map-has-key($carbon--theme, 'fluid-spacing-04'),
2977
- map-get($carbon--theme, 'fluid-spacing-04'),
2978
- 10vw
2979
- ) !default;
2980
-
2981
- /// @type {Number}
2982
- /// @access public
2983
- /// @group @carbon/themes
2984
- $layout-01: if(
2985
- global-variable-exists('carbon--theme') and
2986
- map-has-key($carbon--theme, 'layout-01'),
2987
- map-get($carbon--theme, 'layout-01'),
2988
- 1rem
2989
- ) !default;
2990
-
2991
- /// @type {Number}
2992
- /// @access public
2993
- /// @group @carbon/themes
2994
- $layout-02: if(
2995
- global-variable-exists('carbon--theme') and
2996
- map-has-key($carbon--theme, 'layout-02'),
2997
- map-get($carbon--theme, 'layout-02'),
2998
- 1.5rem
2999
- ) !default;
3000
-
3001
- /// @type {Number}
3002
- /// @access public
3003
- /// @group @carbon/themes
3004
- $layout-03: if(
3005
- global-variable-exists('carbon--theme') and
3006
- map-has-key($carbon--theme, 'layout-03'),
3007
- map-get($carbon--theme, 'layout-03'),
3008
- 2rem
3009
- ) !default;
3010
-
3011
- /// @type {Number}
3012
- /// @access public
3013
- /// @group @carbon/themes
3014
- $layout-04: if(
3015
- global-variable-exists('carbon--theme') and
3016
- map-has-key($carbon--theme, 'layout-04'),
3017
- map-get($carbon--theme, 'layout-04'),
3018
- 3rem
3019
- ) !default;
3020
-
3021
- /// @type {Number}
3022
- /// @access public
3023
- /// @group @carbon/themes
3024
- $layout-05: if(
3025
- global-variable-exists('carbon--theme') and
3026
- map-has-key($carbon--theme, 'layout-05'),
3027
- map-get($carbon--theme, 'layout-05'),
3028
- 4rem
3029
- ) !default;
3030
-
3031
- /// @type {Number}
3032
- /// @access public
3033
- /// @group @carbon/themes
3034
- $layout-06: if(
3035
- global-variable-exists('carbon--theme') and
3036
- map-has-key($carbon--theme, 'layout-06'),
3037
- map-get($carbon--theme, 'layout-06'),
3038
- 6rem
3039
- ) !default;
3040
-
3041
- /// @type {Number}
3042
- /// @access public
3043
- /// @group @carbon/themes
3044
- $layout-07: if(
3045
- global-variable-exists('carbon--theme') and
3046
- map-has-key($carbon--theme, 'layout-07'),
3047
- map-get($carbon--theme, 'layout-07'),
3048
- 10rem
3049
- ) !default;
3050
-
3051
- /// @type {Number}
3052
- /// @access public
3053
- /// @group @carbon/themes
3054
- $container-01: if(
3055
- global-variable-exists('carbon--theme') and
3056
- map-has-key($carbon--theme, 'container-01'),
3057
- map-get($carbon--theme, 'container-01'),
3058
- 1.5rem
3059
- ) !default;
3060
-
3061
- /// @type {Number}
3062
- /// @access public
3063
- /// @group @carbon/themes
3064
- $container-02: if(
3065
- global-variable-exists('carbon--theme') and
3066
- map-has-key($carbon--theme, 'container-02'),
3067
- map-get($carbon--theme, 'container-02'),
3068
- 2rem
3069
- ) !default;
3070
-
3071
- /// @type {Number}
3072
- /// @access public
3073
- /// @group @carbon/themes
3074
- $container-03: if(
3075
- global-variable-exists('carbon--theme') and
3076
- map-has-key($carbon--theme, 'container-03'),
3077
- map-get($carbon--theme, 'container-03'),
3078
- 2.5rem
3079
- ) !default;
3080
-
3081
- /// @type {Number}
3082
- /// @access public
3083
- /// @group @carbon/themes
3084
- $container-04: if(
3085
- global-variable-exists('carbon--theme') and
3086
- map-has-key($carbon--theme, 'container-04'),
3087
- map-get($carbon--theme, 'container-04'),
3088
- 3rem
3089
- ) !default;
3090
-
3091
- /// @type {Number}
3092
- /// @access public
3093
- /// @group @carbon/themes
3094
- $container-05: if(
3095
- global-variable-exists('carbon--theme') and
3096
- map-has-key($carbon--theme, 'container-05'),
3097
- map-get($carbon--theme, 'container-05'),
3098
- 4rem
3099
- ) !default;
3100
-
3101
- /// @type {Number}
3102
- /// @access public
3103
- /// @group @carbon/themes
3104
- $size-xsmall: if(
3105
- global-variable-exists('carbon--theme') and
3106
- map-has-key($carbon--theme, 'size-xsmall'),
3107
- map-get($carbon--theme, 'size-xsmall'),
3108
- 1.5rem
3109
- ) !default;
3110
-
3111
- /// @type {Number}
3112
- /// @access public
3113
- /// @group @carbon/themes
3114
- $size-small: if(
3115
- global-variable-exists('carbon--theme') and
3116
- map-has-key($carbon--theme, 'size-small'),
3117
- map-get($carbon--theme, 'size-small'),
3118
- 2rem
3119
- ) !default;
3120
-
3121
- /// @type {Number}
3122
- /// @access public
3123
- /// @group @carbon/themes
3124
- $size-medium: if(
3125
- global-variable-exists('carbon--theme') and
3126
- map-has-key($carbon--theme, 'size-medium'),
3127
- map-get($carbon--theme, 'size-medium'),
3128
- 2.5rem
3129
- ) !default;
3130
-
3131
- /// @type {Number}
3132
- /// @access public
3133
- /// @group @carbon/themes
3134
- $size-large: if(
3135
- global-variable-exists('carbon--theme') and
3136
- map-has-key($carbon--theme, 'size-large'),
3137
- map-get($carbon--theme, 'size-large'),
3138
- 3rem
3139
- ) !default;
3140
-
3141
- /// @type {Number}
3142
- /// @access public
3143
- /// @group @carbon/themes
3144
- $size-xlarge: if(
3145
- global-variable-exists('carbon--theme') and
3146
- map-has-key($carbon--theme, 'size-xlarge'),
3147
- map-get($carbon--theme, 'size-xlarge'),
3148
- 4rem
3149
- ) !default;
3150
-
3151
- /// @type {Number}
3152
- /// @access public
3153
- /// @group @carbon/themes
3154
- $size-2XLarge: if(
3155
- global-variable-exists('carbon--theme') and
3156
- map-has-key($carbon--theme, 'size-2XLarge'),
3157
- map-get($carbon--theme, 'size-2XLarge'),
3158
- 5rem
3159
- ) !default;
3160
-
3161
- /// @type {Number}
3162
- /// @access public
3163
- /// @group @carbon/themes
3164
- $icon-size-01: if(
3165
- global-variable-exists('carbon--theme') and
3166
- map-has-key($carbon--theme, 'icon-size-01'),
3167
- map-get($carbon--theme, 'icon-size-01'),
3168
- 1rem
3169
- ) !default;
3170
-
3171
- /// @type {Number}
3172
- /// @access public
3173
- /// @group @carbon/themes
3174
- $icon-size-02: if(
3175
- global-variable-exists('carbon--theme') and
3176
- map-has-key($carbon--theme, 'icon-size-02'),
3177
- map-get($carbon--theme, 'icon-size-02'),
3178
- 1.25rem
3179
- ) !default;
9
+ @use 'sass:map';
10
+ @use '../config';
11
+ @use '../theme';
12
+
13
+ /// Internal helper for generating CSS Custom Properties
14
+ @function _get($token) {
15
+ @if config.$use-fallback-value == false {
16
+ @return var(--#{config.$prefix}-#{$token});
17
+ } @else {
18
+ @return var(--#{config.$prefix}-#{$token}, #{theme.get($token)});
19
+ }
20
+ }
21
+
22
+ /// The CSS Custom Property for the `background` token
23
+ $background: _get('background') !default;
24
+
25
+ /// The CSS Custom Property for the `background-active` token
26
+ $background-active: _get('background-active') !default;
27
+
28
+ /// The CSS Custom Property for the `background-selected` token
29
+ $background-selected: _get('background-selected') !default;
30
+
31
+ /// The CSS Custom Property for the `background-selected-hover` token
32
+ $background-selected-hover: _get('background-selected-hover') !default;
33
+
34
+ /// The CSS Custom Property for the `background-hover` token
35
+ $background-hover: _get('background-hover') !default;
36
+
37
+ /// The CSS Custom Property for the `background-brand` token
38
+ $background-brand: _get('background-brand') !default;
39
+
40
+ /// The CSS Custom Property for the `background-inverse` token
41
+ $background-inverse: _get('background-inverse') !default;
42
+
43
+ /// The CSS Custom Property for the `background-inverse-hover` token
44
+ $background-inverse-hover: _get('background-inverse-hover') !default;
45
+
46
+ /// The CSS Custom Property for the `layer-01` token
47
+ $layer-01: _get('layer-01') !default;
48
+
49
+ /// The CSS Custom Property for the `layer-active-01` token
50
+ $layer-active-01: _get('layer-active-01') !default;
51
+
52
+ /// The CSS Custom Property for the `layer-hover-01` token
53
+ $layer-hover-01: _get('layer-hover-01') !default;
54
+
55
+ /// The CSS Custom Property for the `layer-selected-01` token
56
+ $layer-selected-01: _get('layer-selected-01') !default;
57
+
58
+ /// The CSS Custom Property for the `layer-selected-hover-01` token
59
+ $layer-selected-hover-01: _get('layer-selected-hover-01') !default;
60
+
61
+ /// The CSS Custom Property for the `layer-02` token
62
+ $layer-02: _get('layer-02') !default;
63
+
64
+ /// The CSS Custom Property for the `layer-active-02` token
65
+ $layer-active-02: _get('layer-active-02') !default;
66
+
67
+ /// The CSS Custom Property for the `layer-hover-02` token
68
+ $layer-hover-02: _get('layer-hover-02') !default;
69
+
70
+ /// The CSS Custom Property for the `layer-selected-02` token
71
+ $layer-selected-02: _get('layer-selected-02') !default;
72
+
73
+ /// The CSS Custom Property for the `layer-selected-hover-02` token
74
+ $layer-selected-hover-02: _get('layer-selected-hover-02') !default;
75
+
76
+ /// The CSS Custom Property for the `layer-03` token
77
+ $layer-03: _get('layer-03') !default;
78
+
79
+ /// The CSS Custom Property for the `layer-active-03` token
80
+ $layer-active-03: _get('layer-active-03') !default;
81
+
82
+ /// The CSS Custom Property for the `layer-hover-03` token
83
+ $layer-hover-03: _get('layer-hover-03') !default;
84
+
85
+ /// The CSS Custom Property for the `layer-selected-03` token
86
+ $layer-selected-03: _get('layer-selected-03') !default;
87
+
88
+ /// The CSS Custom Property for the `layer-selected-hover-03` token
89
+ $layer-selected-hover-03: _get('layer-selected-hover-03') !default;
90
+
91
+ /// The CSS Custom Property for the `layer-selected-inverse` token
92
+ $layer-selected-inverse: _get('layer-selected-inverse') !default;
93
+
94
+ /// The CSS Custom Property for the `layer-selected-disabled` token
95
+ $layer-selected-disabled: _get('layer-selected-disabled') !default;
96
+
97
+ /// The CSS Custom Property for the `layer-accent-01` token
98
+ $layer-accent-01: _get('layer-accent-01') !default;
99
+
100
+ /// The CSS Custom Property for the `layer-accent-active-01` token
101
+ $layer-accent-active-01: _get('layer-accent-active-01') !default;
102
+
103
+ /// The CSS Custom Property for the `layer-accent-hover-01` token
104
+ $layer-accent-hover-01: _get('layer-accent-hover-01') !default;
105
+
106
+ /// The CSS Custom Property for the `layer-accent-02` token
107
+ $layer-accent-02: _get('layer-accent-02') !default;
108
+
109
+ /// The CSS Custom Property for the `layer-accent-active-02` token
110
+ $layer-accent-active-02: _get('layer-accent-active-02') !default;
111
+
112
+ /// The CSS Custom Property for the `layer-accent-hover-02` token
113
+ $layer-accent-hover-02: _get('layer-accent-hover-02') !default;
114
+
115
+ /// The CSS Custom Property for the `layer-accent-03` token
116
+ $layer-accent-03: _get('layer-accent-03') !default;
117
+
118
+ /// The CSS Custom Property for the `layer-accent-active-03` token
119
+ $layer-accent-active-03: _get('layer-accent-active-03') !default;
120
+
121
+ /// The CSS Custom Property for the `layer-accent-hover-03` token
122
+ $layer-accent-hover-03: _get('layer-accent-hover-03') !default;
123
+
124
+ /// The CSS Custom Property for the `field-01` token
125
+ $field-01: _get('field-01') !default;
126
+
127
+ /// The CSS Custom Property for the `field-hover-01` token
128
+ $field-hover-01: _get('field-hover-01') !default;
129
+
130
+ /// The CSS Custom Property for the `field-02` token
131
+ $field-02: _get('field-02') !default;
132
+
133
+ /// The CSS Custom Property for the `field-hover-02` token
134
+ $field-hover-02: _get('field-hover-02') !default;
135
+
136
+ /// The CSS Custom Property for the `field-03` token
137
+ $field-03: _get('field-03') !default;
138
+
139
+ /// The CSS Custom Property for the `field-hover-03` token
140
+ $field-hover-03: _get('field-hover-03') !default;
141
+
142
+ /// The CSS Custom Property for the `interactive` token
143
+ $interactive: _get('interactive') !default;
144
+
145
+ /// The CSS Custom Property for the `border-subtle-00` token
146
+ $border-subtle-00: _get('border-subtle-00') !default;
147
+
148
+ /// The CSS Custom Property for the `border-subtle-01` token
149
+ $border-subtle-01: _get('border-subtle-01') !default;
150
+
151
+ /// The CSS Custom Property for the `border-subtle-selected-01` token
152
+ $border-subtle-selected-01: _get('border-subtle-selected-01') !default;
153
+
154
+ /// The CSS Custom Property for the `border-subtle-02` token
155
+ $border-subtle-02: _get('border-subtle-02') !default;
156
+
157
+ /// The CSS Custom Property for the `border-subtle-selected-02` token
158
+ $border-subtle-selected-02: _get('border-subtle-selected-02') !default;
159
+
160
+ /// The CSS Custom Property for the `border-subtle-03` token
161
+ $border-subtle-03: _get('border-subtle-03') !default;
162
+
163
+ /// The CSS Custom Property for the `border-subtle-selected-03` token
164
+ $border-subtle-selected-03: _get('border-subtle-selected-03') !default;
165
+
166
+ /// The CSS Custom Property for the `border-strong-01` token
167
+ $border-strong-01: _get('border-strong-01') !default;
168
+
169
+ /// The CSS Custom Property for the `border-strong-02` token
170
+ $border-strong-02: _get('border-strong-02') !default;
171
+
172
+ /// The CSS Custom Property for the `border-strong-03` token
173
+ $border-strong-03: _get('border-strong-03') !default;
174
+
175
+ /// The CSS Custom Property for the `border-inverse` token
176
+ $border-inverse: _get('border-inverse') !default;
177
+
178
+ /// The CSS Custom Property for the `border-interactive` token
179
+ $border-interactive: _get('border-interactive') !default;
180
+
181
+ /// The CSS Custom Property for the `border-disabled` token
182
+ $border-disabled: _get('border-disabled') !default;
183
+
184
+ /// The CSS Custom Property for the `text-primary` token
185
+ $text-primary: _get('text-primary') !default;
186
+
187
+ /// The CSS Custom Property for the `text-secondary` token
188
+ $text-secondary: _get('text-secondary') !default;
189
+
190
+ /// The CSS Custom Property for the `text-placeholder` token
191
+ $text-placeholder: _get('text-placeholder') !default;
192
+
193
+ /// The CSS Custom Property for the `text-helper` token
194
+ $text-helper: _get('text-helper') !default;
195
+
196
+ /// The CSS Custom Property for the `text-error` token
197
+ $text-error: _get('text-error') !default;
198
+
199
+ /// The CSS Custom Property for the `text-inverse` token
200
+ $text-inverse: _get('text-inverse') !default;
201
+
202
+ /// The CSS Custom Property for the `text-on-color` token
203
+ $text-on-color: _get('text-on-color') !default;
204
+
205
+ /// The CSS Custom Property for the `text-on-color-disabled` token
206
+ $text-on-color-disabled: _get('text-on-color-disabled') !default;
207
+
208
+ /// The CSS Custom Property for the `text-disabled` token
209
+ $text-disabled: _get('text-disabled') !default;
210
+
211
+ /// The CSS Custom Property for the `link-primary` token
212
+ $link-primary: _get('link-primary') !default;
213
+
214
+ /// The CSS Custom Property for the `link-primary-hover` token
215
+ $link-primary-hover: _get('link-primary-hover') !default;
216
+
217
+ /// The CSS Custom Property for the `link-secondary` token
218
+ $link-secondary: _get('link-secondary') !default;
219
+
220
+ /// The CSS Custom Property for the `link-visited` token
221
+ $link-visited: _get('link-visited') !default;
222
+
223
+ /// The CSS Custom Property for the `link-inverse` token
224
+ $link-inverse: _get('link-inverse') !default;
225
+
226
+ /// The CSS Custom Property for the `link-inverse-active` token
227
+ $link-inverse-active: _get('link-inverse-active') !default;
228
+
229
+ /// The CSS Custom Property for the `link-inverse-hover` token
230
+ $link-inverse-hover: _get('link-inverse-hover') !default;
231
+
232
+ /// The CSS Custom Property for the `icon-primary` token
233
+ $icon-primary: _get('icon-primary') !default;
234
+
235
+ /// The CSS Custom Property for the `icon-secondary` token
236
+ $icon-secondary: _get('icon-secondary') !default;
237
+
238
+ /// The CSS Custom Property for the `icon-inverse` token
239
+ $icon-inverse: _get('icon-inverse') !default;
240
+
241
+ /// The CSS Custom Property for the `icon-on-color` token
242
+ $icon-on-color: _get('icon-on-color') !default;
243
+
244
+ /// The CSS Custom Property for the `icon-on-color-disabled` token
245
+ $icon-on-color-disabled: _get('icon-on-color-disabled') !default;
246
+
247
+ /// The CSS Custom Property for the `icon-disabled` token
248
+ $icon-disabled: _get('icon-disabled') !default;
249
+
250
+ /// The CSS Custom Property for the `support-error` token
251
+ $support-error: _get('support-error') !default;
252
+
253
+ /// The CSS Custom Property for the `support-success` token
254
+ $support-success: _get('support-success') !default;
255
+
256
+ /// The CSS Custom Property for the `support-warning` token
257
+ $support-warning: _get('support-warning') !default;
258
+
259
+ /// The CSS Custom Property for the `support-info` token
260
+ $support-info: _get('support-info') !default;
261
+
262
+ /// The CSS Custom Property for the `support-error-inverse` token
263
+ $support-error-inverse: _get('support-error-inverse') !default;
264
+
265
+ /// The CSS Custom Property for the `support-success-inverse` token
266
+ $support-success-inverse: _get('support-success-inverse') !default;
267
+
268
+ /// The CSS Custom Property for the `support-warning-inverse` token
269
+ $support-warning-inverse: _get('support-warning-inverse') !default;
270
+
271
+ /// The CSS Custom Property for the `support-info-inverse` token
272
+ $support-info-inverse: _get('support-info-inverse') !default;
273
+
274
+ /// The CSS Custom Property for the `support-caution-major` token
275
+ $support-caution-major: _get('support-caution-major') !default;
276
+
277
+ /// The CSS Custom Property for the `support-caution-minor` token
278
+ $support-caution-minor: _get('support-caution-minor') !default;
279
+
280
+ /// The CSS Custom Property for the `support-caution-undefined` token
281
+ $support-caution-undefined: _get('support-caution-undefined') !default;
282
+
283
+ /// The CSS Custom Property for the `highlight` token
284
+ $highlight: _get('highlight') !default;
285
+
286
+ /// The CSS Custom Property for the `overlay` token
287
+ $overlay: _get('overlay') !default;
288
+
289
+ /// The CSS Custom Property for the `toggle-off` token
290
+ $toggle-off: _get('toggle-off') !default;
291
+
292
+ /// The CSS Custom Property for the `shadow` token
293
+ $shadow: _get('shadow') !default;
294
+
295
+ /// The CSS Custom Property for the `focus` token
296
+ $focus: _get('focus') !default;
297
+
298
+ /// The CSS Custom Property for the `focus-inset` token
299
+ $focus-inset: _get('focus-inset') !default;
300
+
301
+ /// The CSS Custom Property for the `focus-inverse` token
302
+ $focus-inverse: _get('focus-inverse') !default;
303
+
304
+ /// The CSS Custom Property for the `skeleton-background` token
305
+ $skeleton-background: _get('skeleton-background') !default;
306
+
307
+ /// The CSS Custom Property for the `skeleton-element` token
308
+ $skeleton-element: _get('skeleton-element') !default;