@carbon/themes 10.30.0 → 10.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -18
- package/es/index.js +1343 -584
- package/lib/index.js +1495 -656
- package/package.json +6 -6
- package/scss/generated/_mixins.scss +1421 -146
- package/scss/generated/_themes.scss +718 -1
- package/scss/generated/_tokens.scss +750 -0
- package/scss/modules/generated/_themes.scss +201 -1
- package/src/g10.js +97 -2
- package/src/g100.js +95 -0
- package/src/g90.js +95 -0
- package/src/tokens.js +186 -0
- package/src/v9.js +95 -0
- package/src/white.js +95 -0
- package/umd/index.js +1495 -656
|
@@ -104,6 +104,86 @@
|
|
|
104
104
|
$button-separator: map-get($theme, 'button-separator') !global;
|
|
105
105
|
$skeleton-01: map-get($theme, 'skeleton-01') !global;
|
|
106
106
|
$skeleton-02: map-get($theme, 'skeleton-02') !global;
|
|
107
|
+
$background: map-get($theme, 'background') !global;
|
|
108
|
+
$layer: map-get($theme, 'layer') !global;
|
|
109
|
+
$layer-accent: map-get($theme, 'layer-accent') !global;
|
|
110
|
+
$field: map-get($theme, 'field') !global;
|
|
111
|
+
$background-inverse: map-get($theme, 'background-inverse') !global;
|
|
112
|
+
$background-brand: map-get($theme, 'background-brand') !global;
|
|
113
|
+
$interactive: map-get($theme, 'interactive') !global;
|
|
114
|
+
$border-subtle: map-get($theme, 'border-subtle') !global;
|
|
115
|
+
$border-strong: map-get($theme, 'border-strong') !global;
|
|
116
|
+
$border-inverse: map-get($theme, 'border-inverse') !global;
|
|
117
|
+
$border-interactive: map-get($theme, 'border-interactive') !global;
|
|
118
|
+
$text-primary: map-get($theme, 'text-primary') !global;
|
|
119
|
+
$text-secondary: map-get($theme, 'text-secondary') !global;
|
|
120
|
+
$text-placeholder: map-get($theme, 'text-placeholder') !global;
|
|
121
|
+
$text-helper: map-get($theme, 'text-helper') !global;
|
|
122
|
+
$text-on-color: map-get($theme, 'text-on-color') !global;
|
|
123
|
+
$text-inverse: map-get($theme, 'text-inverse') !global;
|
|
124
|
+
$link-primary: map-get($theme, 'link-primary') !global;
|
|
125
|
+
$link-secondary: map-get($theme, 'link-secondary') !global;
|
|
126
|
+
$link-visited: map-get($theme, 'link-visited') !global;
|
|
127
|
+
$link-inverse: map-get($theme, 'link-inverse') !global;
|
|
128
|
+
$icon-primary: map-get($theme, 'icon-primary') !global;
|
|
129
|
+
$icon-secondary: map-get($theme, 'icon-secondary') !global;
|
|
130
|
+
$icon-on-color: map-get($theme, 'icon-on-color') !global;
|
|
131
|
+
$icon-inverse: map-get($theme, 'icon-inverse') !global;
|
|
132
|
+
$support-error: map-get($theme, 'support-error') !global;
|
|
133
|
+
$support-success: map-get($theme, 'support-success') !global;
|
|
134
|
+
$support-warning: map-get($theme, 'support-warning') !global;
|
|
135
|
+
$support-info: map-get($theme, 'support-info') !global;
|
|
136
|
+
$support-error-inverse: map-get($theme, 'support-error-inverse') !global;
|
|
137
|
+
$support-success-inverse: map-get($theme, 'support-success-inverse') !global;
|
|
138
|
+
$support-warning-inverse: map-get($theme, 'support-warning-inverse') !global;
|
|
139
|
+
$support-info-inverse: map-get($theme, 'support-info-inverse') !global;
|
|
140
|
+
$overlay: map-get($theme, 'overlay') !global;
|
|
141
|
+
$toggle-off: map-get($theme, 'toggle-off') !global;
|
|
142
|
+
$button-primary: map-get($theme, 'button-primary') !global;
|
|
143
|
+
$button-secondary: map-get($theme, 'button-secondary') !global;
|
|
144
|
+
$button-tertiary: map-get($theme, 'button-tertiary') !global;
|
|
145
|
+
$button-danger-primary: map-get($theme, 'button-danger-primary') !global;
|
|
146
|
+
$button-danger-secondary: map-get($theme, 'button-danger-secondary') !global;
|
|
147
|
+
$background-active: map-get($theme, 'background-active') !global;
|
|
148
|
+
$layer-active: map-get($theme, 'layer-active') !global;
|
|
149
|
+
$button-danger-active: map-get($theme, 'button-danger-active') !global;
|
|
150
|
+
$button-primary-active: map-get($theme, 'button-primary-active') !global;
|
|
151
|
+
$button-secondary-active: map-get($theme, 'button-secondary-active') !global;
|
|
152
|
+
$button-tertiary-active: map-get($theme, 'button-tertiary-active') !global;
|
|
153
|
+
$focus-inset: map-get($theme, 'focus-inset') !global;
|
|
154
|
+
$focus-inverse: map-get($theme, 'focus-inverse') !global;
|
|
155
|
+
$background-hover: map-get($theme, 'background-hover') !global;
|
|
156
|
+
$layer-hover: map-get($theme, 'layer-hover') !global;
|
|
157
|
+
$field-hover: map-get($theme, 'field-hover') !global;
|
|
158
|
+
$background-inverse-hover: map-get(
|
|
159
|
+
$theme,
|
|
160
|
+
'background-inverse-hover'
|
|
161
|
+
) !global;
|
|
162
|
+
$link-primary-hover: map-get($theme, 'link-primary-hover') !global;
|
|
163
|
+
$button-danger-hover: map-get($theme, 'button-danger-hover') !global;
|
|
164
|
+
$button-primary-hover: map-get($theme, 'button-primary-hover') !global;
|
|
165
|
+
$button-secondary-hover: map-get($theme, 'button-secondary-hover') !global;
|
|
166
|
+
$button-tertiary-hover: map-get($theme, 'button-tertiary-hover') !global;
|
|
167
|
+
$background-selected: map-get($theme, 'background-selected') !global;
|
|
168
|
+
$background-selected-hover: map-get(
|
|
169
|
+
$theme,
|
|
170
|
+
'background-selected-hover'
|
|
171
|
+
) !global;
|
|
172
|
+
$layer-selected: map-get($theme, 'layer-selected') !global;
|
|
173
|
+
$layer-selected-hover: map-get($theme, 'layer-selected-hover') !global;
|
|
174
|
+
$layer-selected-inverse: map-get($theme, 'layer-selected-inverse') !global;
|
|
175
|
+
$border-subtle-selected: map-get($theme, 'border-subtle-selected') !global;
|
|
176
|
+
$layer-disabled: map-get($theme, 'layer-disabled') !global;
|
|
177
|
+
$field-disabled: map-get($theme, 'field-disabled') !global;
|
|
178
|
+
$border-disabled: map-get($theme, 'border-disabled') !global;
|
|
179
|
+
$text-disabled: map-get($theme, 'text-disabled') !global;
|
|
180
|
+
$button-disabled: map-get($theme, 'button-disabled') !global;
|
|
181
|
+
$icon-disabled: map-get($theme, 'icon-disabled') !global;
|
|
182
|
+
$text-on-color-disabled: map-get($theme, 'text-on-color-disabled') !global;
|
|
183
|
+
$icon-on-color-disabled: map-get($theme, 'icon-on-color-disabled') !global;
|
|
184
|
+
$layer-selected-disabled: map-get($theme, 'layer-selected-disabled') !global;
|
|
185
|
+
$skeleton-background: map-get($theme, 'skeleton-background') !global;
|
|
186
|
+
$skeleton-element: map-get($theme, 'skeleton-element') !global;
|
|
107
187
|
$brand-01: map-get($theme, 'brand-01') !global;
|
|
108
188
|
$brand-02: map-get($theme, 'brand-02') !global;
|
|
109
189
|
$brand-03: map-get($theme, 'brand-03') !global;
|
|
@@ -153,6 +233,7 @@
|
|
|
153
233
|
$spacing-10: map-get($theme, 'spacing-10') !global;
|
|
154
234
|
$spacing-11: map-get($theme, 'spacing-11') !global;
|
|
155
235
|
$spacing-12: map-get($theme, 'spacing-12') !global;
|
|
236
|
+
$spacing-13: map-get($theme, 'spacing-13') !global;
|
|
156
237
|
$fluid-spacing-01: map-get($theme, 'fluid-spacing-01') !global;
|
|
157
238
|
$fluid-spacing-02: map-get($theme, 'fluid-spacing-02') !global;
|
|
158
239
|
$fluid-spacing-03: map-get($theme, 'fluid-spacing-03') !global;
|
|
@@ -439,6 +520,302 @@
|
|
|
439
520
|
--#{$custom-property-prefix}-skeleton-02,
|
|
440
521
|
map-get($theme, 'skeleton-02')
|
|
441
522
|
) !global;
|
|
523
|
+
$background: var(
|
|
524
|
+
--#{$custom-property-prefix}-background,
|
|
525
|
+
map-get($theme, 'background')
|
|
526
|
+
) !global;
|
|
527
|
+
$layer: var(
|
|
528
|
+
--#{$custom-property-prefix}-layer,
|
|
529
|
+
map-get($theme, 'layer')
|
|
530
|
+
) !global;
|
|
531
|
+
$layer-accent: var(
|
|
532
|
+
--#{$custom-property-prefix}-layer-accent,
|
|
533
|
+
map-get($theme, 'layer-accent')
|
|
534
|
+
) !global;
|
|
535
|
+
$field: var(
|
|
536
|
+
--#{$custom-property-prefix}-field,
|
|
537
|
+
map-get($theme, 'field')
|
|
538
|
+
) !global;
|
|
539
|
+
$background-inverse: var(
|
|
540
|
+
--#{$custom-property-prefix}-background-inverse,
|
|
541
|
+
map-get($theme, 'background-inverse')
|
|
542
|
+
) !global;
|
|
543
|
+
$background-brand: var(
|
|
544
|
+
--#{$custom-property-prefix}-background-brand,
|
|
545
|
+
map-get($theme, 'background-brand')
|
|
546
|
+
) !global;
|
|
547
|
+
$interactive: var(
|
|
548
|
+
--#{$custom-property-prefix}-interactive,
|
|
549
|
+
map-get($theme, 'interactive')
|
|
550
|
+
) !global;
|
|
551
|
+
$border-subtle: var(
|
|
552
|
+
--#{$custom-property-prefix}-border-subtle,
|
|
553
|
+
map-get($theme, 'border-subtle')
|
|
554
|
+
) !global;
|
|
555
|
+
$border-strong: var(
|
|
556
|
+
--#{$custom-property-prefix}-border-strong,
|
|
557
|
+
map-get($theme, 'border-strong')
|
|
558
|
+
) !global;
|
|
559
|
+
$border-inverse: var(
|
|
560
|
+
--#{$custom-property-prefix}-border-inverse,
|
|
561
|
+
map-get($theme, 'border-inverse')
|
|
562
|
+
) !global;
|
|
563
|
+
$border-interactive: var(
|
|
564
|
+
--#{$custom-property-prefix}-border-interactive,
|
|
565
|
+
map-get($theme, 'border-interactive')
|
|
566
|
+
) !global;
|
|
567
|
+
$text-primary: var(
|
|
568
|
+
--#{$custom-property-prefix}-text-primary,
|
|
569
|
+
map-get($theme, 'text-primary')
|
|
570
|
+
) !global;
|
|
571
|
+
$text-secondary: var(
|
|
572
|
+
--#{$custom-property-prefix}-text-secondary,
|
|
573
|
+
map-get($theme, 'text-secondary')
|
|
574
|
+
) !global;
|
|
575
|
+
$text-placeholder: var(
|
|
576
|
+
--#{$custom-property-prefix}-text-placeholder,
|
|
577
|
+
map-get($theme, 'text-placeholder')
|
|
578
|
+
) !global;
|
|
579
|
+
$text-helper: var(
|
|
580
|
+
--#{$custom-property-prefix}-text-helper,
|
|
581
|
+
map-get($theme, 'text-helper')
|
|
582
|
+
) !global;
|
|
583
|
+
$text-on-color: var(
|
|
584
|
+
--#{$custom-property-prefix}-text-on-color,
|
|
585
|
+
map-get($theme, 'text-on-color')
|
|
586
|
+
) !global;
|
|
587
|
+
$text-inverse: var(
|
|
588
|
+
--#{$custom-property-prefix}-text-inverse,
|
|
589
|
+
map-get($theme, 'text-inverse')
|
|
590
|
+
) !global;
|
|
591
|
+
$link-primary: var(
|
|
592
|
+
--#{$custom-property-prefix}-link-primary,
|
|
593
|
+
map-get($theme, 'link-primary')
|
|
594
|
+
) !global;
|
|
595
|
+
$link-secondary: var(
|
|
596
|
+
--#{$custom-property-prefix}-link-secondary,
|
|
597
|
+
map-get($theme, 'link-secondary')
|
|
598
|
+
) !global;
|
|
599
|
+
$link-visited: var(
|
|
600
|
+
--#{$custom-property-prefix}-link-visited,
|
|
601
|
+
map-get($theme, 'link-visited')
|
|
602
|
+
) !global;
|
|
603
|
+
$link-inverse: var(
|
|
604
|
+
--#{$custom-property-prefix}-link-inverse,
|
|
605
|
+
map-get($theme, 'link-inverse')
|
|
606
|
+
) !global;
|
|
607
|
+
$icon-primary: var(
|
|
608
|
+
--#{$custom-property-prefix}-icon-primary,
|
|
609
|
+
map-get($theme, 'icon-primary')
|
|
610
|
+
) !global;
|
|
611
|
+
$icon-secondary: var(
|
|
612
|
+
--#{$custom-property-prefix}-icon-secondary,
|
|
613
|
+
map-get($theme, 'icon-secondary')
|
|
614
|
+
) !global;
|
|
615
|
+
$icon-on-color: var(
|
|
616
|
+
--#{$custom-property-prefix}-icon-on-color,
|
|
617
|
+
map-get($theme, 'icon-on-color')
|
|
618
|
+
) !global;
|
|
619
|
+
$icon-inverse: var(
|
|
620
|
+
--#{$custom-property-prefix}-icon-inverse,
|
|
621
|
+
map-get($theme, 'icon-inverse')
|
|
622
|
+
) !global;
|
|
623
|
+
$support-error: var(
|
|
624
|
+
--#{$custom-property-prefix}-support-error,
|
|
625
|
+
map-get($theme, 'support-error')
|
|
626
|
+
) !global;
|
|
627
|
+
$support-success: var(
|
|
628
|
+
--#{$custom-property-prefix}-support-success,
|
|
629
|
+
map-get($theme, 'support-success')
|
|
630
|
+
) !global;
|
|
631
|
+
$support-warning: var(
|
|
632
|
+
--#{$custom-property-prefix}-support-warning,
|
|
633
|
+
map-get($theme, 'support-warning')
|
|
634
|
+
) !global;
|
|
635
|
+
$support-info: var(
|
|
636
|
+
--#{$custom-property-prefix}-support-info,
|
|
637
|
+
map-get($theme, 'support-info')
|
|
638
|
+
) !global;
|
|
639
|
+
$support-error-inverse: var(
|
|
640
|
+
--#{$custom-property-prefix}-support-error-inverse,
|
|
641
|
+
map-get($theme, 'support-error-inverse')
|
|
642
|
+
) !global;
|
|
643
|
+
$support-success-inverse: var(
|
|
644
|
+
--#{$custom-property-prefix}-support-success-inverse,
|
|
645
|
+
map-get($theme, 'support-success-inverse')
|
|
646
|
+
) !global;
|
|
647
|
+
$support-warning-inverse: var(
|
|
648
|
+
--#{$custom-property-prefix}-support-warning-inverse,
|
|
649
|
+
map-get($theme, 'support-warning-inverse')
|
|
650
|
+
) !global;
|
|
651
|
+
$support-info-inverse: var(
|
|
652
|
+
--#{$custom-property-prefix}-support-info-inverse,
|
|
653
|
+
map-get($theme, 'support-info-inverse')
|
|
654
|
+
) !global;
|
|
655
|
+
$overlay: var(
|
|
656
|
+
--#{$custom-property-prefix}-overlay,
|
|
657
|
+
map-get($theme, 'overlay')
|
|
658
|
+
) !global;
|
|
659
|
+
$toggle-off: var(
|
|
660
|
+
--#{$custom-property-prefix}-toggle-off,
|
|
661
|
+
map-get($theme, 'toggle-off')
|
|
662
|
+
) !global;
|
|
663
|
+
$button-primary: var(
|
|
664
|
+
--#{$custom-property-prefix}-button-primary,
|
|
665
|
+
map-get($theme, 'button-primary')
|
|
666
|
+
) !global;
|
|
667
|
+
$button-secondary: var(
|
|
668
|
+
--#{$custom-property-prefix}-button-secondary,
|
|
669
|
+
map-get($theme, 'button-secondary')
|
|
670
|
+
) !global;
|
|
671
|
+
$button-tertiary: var(
|
|
672
|
+
--#{$custom-property-prefix}-button-tertiary,
|
|
673
|
+
map-get($theme, 'button-tertiary')
|
|
674
|
+
) !global;
|
|
675
|
+
$button-danger-primary: var(
|
|
676
|
+
--#{$custom-property-prefix}-button-danger-primary,
|
|
677
|
+
map-get($theme, 'button-danger-primary')
|
|
678
|
+
) !global;
|
|
679
|
+
$button-danger-secondary: var(
|
|
680
|
+
--#{$custom-property-prefix}-button-danger-secondary,
|
|
681
|
+
map-get($theme, 'button-danger-secondary')
|
|
682
|
+
) !global;
|
|
683
|
+
$background-active: var(
|
|
684
|
+
--#{$custom-property-prefix}-background-active,
|
|
685
|
+
map-get($theme, 'background-active')
|
|
686
|
+
) !global;
|
|
687
|
+
$layer-active: var(
|
|
688
|
+
--#{$custom-property-prefix}-layer-active,
|
|
689
|
+
map-get($theme, 'layer-active')
|
|
690
|
+
) !global;
|
|
691
|
+
$button-danger-active: var(
|
|
692
|
+
--#{$custom-property-prefix}-button-danger-active,
|
|
693
|
+
map-get($theme, 'button-danger-active')
|
|
694
|
+
) !global;
|
|
695
|
+
$button-primary-active: var(
|
|
696
|
+
--#{$custom-property-prefix}-button-primary-active,
|
|
697
|
+
map-get($theme, 'button-primary-active')
|
|
698
|
+
) !global;
|
|
699
|
+
$button-secondary-active: var(
|
|
700
|
+
--#{$custom-property-prefix}-button-secondary-active,
|
|
701
|
+
map-get($theme, 'button-secondary-active')
|
|
702
|
+
) !global;
|
|
703
|
+
$button-tertiary-active: var(
|
|
704
|
+
--#{$custom-property-prefix}-button-tertiary-active,
|
|
705
|
+
map-get($theme, 'button-tertiary-active')
|
|
706
|
+
) !global;
|
|
707
|
+
$focus-inset: var(
|
|
708
|
+
--#{$custom-property-prefix}-focus-inset,
|
|
709
|
+
map-get($theme, 'focus-inset')
|
|
710
|
+
) !global;
|
|
711
|
+
$focus-inverse: var(
|
|
712
|
+
--#{$custom-property-prefix}-focus-inverse,
|
|
713
|
+
map-get($theme, 'focus-inverse')
|
|
714
|
+
) !global;
|
|
715
|
+
$background-hover: var(
|
|
716
|
+
--#{$custom-property-prefix}-background-hover,
|
|
717
|
+
map-get($theme, 'background-hover')
|
|
718
|
+
) !global;
|
|
719
|
+
$layer-hover: var(
|
|
720
|
+
--#{$custom-property-prefix}-layer-hover,
|
|
721
|
+
map-get($theme, 'layer-hover')
|
|
722
|
+
) !global;
|
|
723
|
+
$field-hover: var(
|
|
724
|
+
--#{$custom-property-prefix}-field-hover,
|
|
725
|
+
map-get($theme, 'field-hover')
|
|
726
|
+
) !global;
|
|
727
|
+
$background-inverse-hover: var(
|
|
728
|
+
--#{$custom-property-prefix}-background-inverse-hover,
|
|
729
|
+
map-get($theme, 'background-inverse-hover')
|
|
730
|
+
) !global;
|
|
731
|
+
$link-primary-hover: var(
|
|
732
|
+
--#{$custom-property-prefix}-link-primary-hover,
|
|
733
|
+
map-get($theme, 'link-primary-hover')
|
|
734
|
+
) !global;
|
|
735
|
+
$button-danger-hover: var(
|
|
736
|
+
--#{$custom-property-prefix}-button-danger-hover,
|
|
737
|
+
map-get($theme, 'button-danger-hover')
|
|
738
|
+
) !global;
|
|
739
|
+
$button-primary-hover: var(
|
|
740
|
+
--#{$custom-property-prefix}-button-primary-hover,
|
|
741
|
+
map-get($theme, 'button-primary-hover')
|
|
742
|
+
) !global;
|
|
743
|
+
$button-secondary-hover: var(
|
|
744
|
+
--#{$custom-property-prefix}-button-secondary-hover,
|
|
745
|
+
map-get($theme, 'button-secondary-hover')
|
|
746
|
+
) !global;
|
|
747
|
+
$button-tertiary-hover: var(
|
|
748
|
+
--#{$custom-property-prefix}-button-tertiary-hover,
|
|
749
|
+
map-get($theme, 'button-tertiary-hover')
|
|
750
|
+
) !global;
|
|
751
|
+
$background-selected: var(
|
|
752
|
+
--#{$custom-property-prefix}-background-selected,
|
|
753
|
+
map-get($theme, 'background-selected')
|
|
754
|
+
) !global;
|
|
755
|
+
$background-selected-hover: var(
|
|
756
|
+
--#{$custom-property-prefix}-background-selected-hover,
|
|
757
|
+
map-get($theme, 'background-selected-hover')
|
|
758
|
+
) !global;
|
|
759
|
+
$layer-selected: var(
|
|
760
|
+
--#{$custom-property-prefix}-layer-selected,
|
|
761
|
+
map-get($theme, 'layer-selected')
|
|
762
|
+
) !global;
|
|
763
|
+
$layer-selected-hover: var(
|
|
764
|
+
--#{$custom-property-prefix}-layer-selected-hover,
|
|
765
|
+
map-get($theme, 'layer-selected-hover')
|
|
766
|
+
) !global;
|
|
767
|
+
$layer-selected-inverse: var(
|
|
768
|
+
--#{$custom-property-prefix}-layer-selected-inverse,
|
|
769
|
+
map-get($theme, 'layer-selected-inverse')
|
|
770
|
+
) !global;
|
|
771
|
+
$border-subtle-selected: var(
|
|
772
|
+
--#{$custom-property-prefix}-border-subtle-selected,
|
|
773
|
+
map-get($theme, 'border-subtle-selected')
|
|
774
|
+
) !global;
|
|
775
|
+
$layer-disabled: var(
|
|
776
|
+
--#{$custom-property-prefix}-layer-disabled,
|
|
777
|
+
map-get($theme, 'layer-disabled')
|
|
778
|
+
) !global;
|
|
779
|
+
$field-disabled: var(
|
|
780
|
+
--#{$custom-property-prefix}-field-disabled,
|
|
781
|
+
map-get($theme, 'field-disabled')
|
|
782
|
+
) !global;
|
|
783
|
+
$border-disabled: var(
|
|
784
|
+
--#{$custom-property-prefix}-border-disabled,
|
|
785
|
+
map-get($theme, 'border-disabled')
|
|
786
|
+
) !global;
|
|
787
|
+
$text-disabled: var(
|
|
788
|
+
--#{$custom-property-prefix}-text-disabled,
|
|
789
|
+
map-get($theme, 'text-disabled')
|
|
790
|
+
) !global;
|
|
791
|
+
$button-disabled: var(
|
|
792
|
+
--#{$custom-property-prefix}-button-disabled,
|
|
793
|
+
map-get($theme, 'button-disabled')
|
|
794
|
+
) !global;
|
|
795
|
+
$icon-disabled: var(
|
|
796
|
+
--#{$custom-property-prefix}-icon-disabled,
|
|
797
|
+
map-get($theme, 'icon-disabled')
|
|
798
|
+
) !global;
|
|
799
|
+
$text-on-color-disabled: var(
|
|
800
|
+
--#{$custom-property-prefix}-text-on-color-disabled,
|
|
801
|
+
map-get($theme, 'text-on-color-disabled')
|
|
802
|
+
) !global;
|
|
803
|
+
$icon-on-color-disabled: var(
|
|
804
|
+
--#{$custom-property-prefix}-icon-on-color-disabled,
|
|
805
|
+
map-get($theme, 'icon-on-color-disabled')
|
|
806
|
+
) !global;
|
|
807
|
+
$layer-selected-disabled: var(
|
|
808
|
+
--#{$custom-property-prefix}-layer-selected-disabled,
|
|
809
|
+
map-get($theme, 'layer-selected-disabled')
|
|
810
|
+
) !global;
|
|
811
|
+
$skeleton-background: var(
|
|
812
|
+
--#{$custom-property-prefix}-skeleton-background,
|
|
813
|
+
map-get($theme, 'skeleton-background')
|
|
814
|
+
) !global;
|
|
815
|
+
$skeleton-element: var(
|
|
816
|
+
--#{$custom-property-prefix}-skeleton-element,
|
|
817
|
+
map-get($theme, 'skeleton-element')
|
|
818
|
+
) !global;
|
|
442
819
|
$brand-01: var(
|
|
443
820
|
--#{$custom-property-prefix}-brand-01,
|
|
444
821
|
map-get($theme, 'brand-01')
|
|
@@ -511,6 +888,10 @@
|
|
|
511
888
|
--#{$custom-property-prefix}-spacing-12,
|
|
512
889
|
map-get($theme, 'spacing-12')
|
|
513
890
|
) !global;
|
|
891
|
+
$spacing-13: var(
|
|
892
|
+
--#{$custom-property-prefix}-spacing-13,
|
|
893
|
+
map-get($theme, 'spacing-13')
|
|
894
|
+
) !global;
|
|
514
895
|
$fluid-spacing-01: var(
|
|
515
896
|
--#{$custom-property-prefix}-fluid-spacing-01,
|
|
516
897
|
map-get($theme, 'fluid-spacing-01')
|
|
@@ -1184,502 +1565,1396 @@
|
|
|
1184
1565
|
@include custom-property('skeleton-02', map-get($theme, 'skeleton-02'));
|
|
1185
1566
|
}
|
|
1186
1567
|
|
|
1187
|
-
@if should-emit($theme, $parent-carbon-theme, 'brand-01', $emit-difference)
|
|
1188
|
-
{
|
|
1189
|
-
@include custom-property('brand-01', map-get($theme, 'brand-01'));
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
@if should-emit($theme, $parent-carbon-theme, 'brand-02', $emit-difference)
|
|
1193
|
-
{
|
|
1194
|
-
@include custom-property('brand-02', map-get($theme, 'brand-02'));
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
@if should-emit($theme, $parent-carbon-theme, 'brand-03', $emit-difference)
|
|
1198
|
-
{
|
|
1199
|
-
@include custom-property('brand-03', map-get($theme, 'brand-03'));
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
|
-
@if should-emit($theme, $parent-carbon-theme, 'active-01', $emit-difference)
|
|
1203
|
-
{
|
|
1204
|
-
@include custom-property('active-01', map-get($theme, 'active-01'));
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
1568
|
@if should-emit(
|
|
1208
1569
|
$theme,
|
|
1209
1570
|
$parent-carbon-theme,
|
|
1210
|
-
'
|
|
1571
|
+
'background',
|
|
1211
1572
|
$emit-difference
|
|
1212
1573
|
)
|
|
1213
1574
|
{
|
|
1214
|
-
@include custom-property('
|
|
1575
|
+
@include custom-property('background', map-get($theme, 'background'));
|
|
1215
1576
|
}
|
|
1216
1577
|
|
|
1217
|
-
@if should-emit($theme, $parent-carbon-theme, '
|
|
1218
|
-
@include custom-property('
|
|
1578
|
+
@if should-emit($theme, $parent-carbon-theme, 'layer', $emit-difference) {
|
|
1579
|
+
@include custom-property('layer', map-get($theme, 'layer'));
|
|
1219
1580
|
}
|
|
1220
1581
|
|
|
1221
1582
|
@if should-emit(
|
|
1222
1583
|
$theme,
|
|
1223
1584
|
$parent-carbon-theme,
|
|
1224
|
-
'
|
|
1585
|
+
'layer-accent',
|
|
1225
1586
|
$emit-difference
|
|
1226
1587
|
)
|
|
1227
1588
|
{
|
|
1228
|
-
@include custom-property('
|
|
1589
|
+
@include custom-property('layer-accent', map-get($theme, 'layer-accent'));
|
|
1229
1590
|
}
|
|
1230
1591
|
|
|
1231
|
-
@if should-emit($theme, $parent-carbon-theme, '
|
|
1232
|
-
|
|
1233
|
-
@include custom-property('label-01', map-get($theme, 'label-01'));
|
|
1592
|
+
@if should-emit($theme, $parent-carbon-theme, 'field', $emit-difference) {
|
|
1593
|
+
@include custom-property('field', map-get($theme, 'field'));
|
|
1234
1594
|
}
|
|
1235
1595
|
|
|
1236
1596
|
@if should-emit(
|
|
1237
1597
|
$theme,
|
|
1238
1598
|
$parent-carbon-theme,
|
|
1239
|
-
'
|
|
1599
|
+
'background-inverse',
|
|
1240
1600
|
$emit-difference
|
|
1241
1601
|
)
|
|
1242
1602
|
{
|
|
1243
1603
|
@include custom-property(
|
|
1244
|
-
'
|
|
1245
|
-
map-get($theme, '
|
|
1604
|
+
'background-inverse',
|
|
1605
|
+
map-get($theme, 'background-inverse')
|
|
1246
1606
|
);
|
|
1247
1607
|
}
|
|
1248
1608
|
|
|
1249
1609
|
@if should-emit(
|
|
1250
1610
|
$theme,
|
|
1251
1611
|
$parent-carbon-theme,
|
|
1252
|
-
'
|
|
1612
|
+
'background-brand',
|
|
1253
1613
|
$emit-difference
|
|
1254
1614
|
)
|
|
1255
1615
|
{
|
|
1256
1616
|
@include custom-property(
|
|
1257
|
-
'
|
|
1258
|
-
map-get($theme, '
|
|
1617
|
+
'background-brand',
|
|
1618
|
+
map-get($theme, 'background-brand')
|
|
1259
1619
|
);
|
|
1260
1620
|
}
|
|
1261
1621
|
|
|
1262
1622
|
@if should-emit(
|
|
1263
1623
|
$theme,
|
|
1264
1624
|
$parent-carbon-theme,
|
|
1265
|
-
'
|
|
1625
|
+
'interactive',
|
|
1266
1626
|
$emit-difference
|
|
1267
1627
|
)
|
|
1268
1628
|
{
|
|
1269
|
-
@include custom-property('
|
|
1629
|
+
@include custom-property('interactive', map-get($theme, 'interactive'));
|
|
1270
1630
|
}
|
|
1271
1631
|
|
|
1272
1632
|
@if should-emit(
|
|
1273
1633
|
$theme,
|
|
1274
1634
|
$parent-carbon-theme,
|
|
1275
|
-
'
|
|
1635
|
+
'border-subtle',
|
|
1276
1636
|
$emit-difference
|
|
1277
1637
|
)
|
|
1278
1638
|
{
|
|
1279
1639
|
@include custom-property(
|
|
1280
|
-
'
|
|
1281
|
-
map-get($theme, '
|
|
1640
|
+
'border-subtle',
|
|
1641
|
+
map-get($theme, 'border-subtle')
|
|
1282
1642
|
);
|
|
1283
1643
|
}
|
|
1284
1644
|
|
|
1285
1645
|
@if should-emit(
|
|
1286
1646
|
$theme,
|
|
1287
1647
|
$parent-carbon-theme,
|
|
1288
|
-
'
|
|
1648
|
+
'border-strong',
|
|
1289
1649
|
$emit-difference
|
|
1290
1650
|
)
|
|
1291
1651
|
{
|
|
1292
|
-
@include custom-property(
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
@include custom-property('code-01', map-get($theme, 'code-01'));
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
@if should-emit($theme, $parent-carbon-theme, 'code-02', $emit-difference) {
|
|
1300
|
-
@include custom-property('code-02', map-get($theme, 'code-02'));
|
|
1652
|
+
@include custom-property(
|
|
1653
|
+
'border-strong',
|
|
1654
|
+
map-get($theme, 'border-strong')
|
|
1655
|
+
);
|
|
1301
1656
|
}
|
|
1302
1657
|
|
|
1303
1658
|
@if should-emit(
|
|
1304
1659
|
$theme,
|
|
1305
1660
|
$parent-carbon-theme,
|
|
1306
|
-
'
|
|
1661
|
+
'border-inverse',
|
|
1307
1662
|
$emit-difference
|
|
1308
1663
|
)
|
|
1309
1664
|
{
|
|
1310
|
-
@include custom-property(
|
|
1665
|
+
@include custom-property(
|
|
1666
|
+
'border-inverse',
|
|
1667
|
+
map-get($theme, 'border-inverse')
|
|
1668
|
+
);
|
|
1311
1669
|
}
|
|
1312
1670
|
|
|
1313
1671
|
@if should-emit(
|
|
1314
1672
|
$theme,
|
|
1315
1673
|
$parent-carbon-theme,
|
|
1316
|
-
'
|
|
1674
|
+
'border-interactive',
|
|
1317
1675
|
$emit-difference
|
|
1318
1676
|
)
|
|
1319
1677
|
{
|
|
1320
1678
|
@include custom-property(
|
|
1321
|
-
'
|
|
1322
|
-
map-get($theme, '
|
|
1679
|
+
'border-interactive',
|
|
1680
|
+
map-get($theme, 'border-interactive')
|
|
1323
1681
|
);
|
|
1324
1682
|
}
|
|
1325
1683
|
|
|
1326
1684
|
@if should-emit(
|
|
1327
1685
|
$theme,
|
|
1328
1686
|
$parent-carbon-theme,
|
|
1329
|
-
'
|
|
1687
|
+
'text-primary',
|
|
1330
1688
|
$emit-difference
|
|
1331
1689
|
)
|
|
1332
1690
|
{
|
|
1333
|
-
@include custom-property('
|
|
1691
|
+
@include custom-property('text-primary', map-get($theme, 'text-primary'));
|
|
1334
1692
|
}
|
|
1335
1693
|
|
|
1336
1694
|
@if should-emit(
|
|
1337
1695
|
$theme,
|
|
1338
1696
|
$parent-carbon-theme,
|
|
1339
|
-
'
|
|
1697
|
+
'text-secondary',
|
|
1340
1698
|
$emit-difference
|
|
1341
1699
|
)
|
|
1342
1700
|
{
|
|
1343
1701
|
@include custom-property(
|
|
1344
|
-
'
|
|
1345
|
-
map-get($theme, '
|
|
1702
|
+
'text-secondary',
|
|
1703
|
+
map-get($theme, 'text-secondary')
|
|
1346
1704
|
);
|
|
1347
1705
|
}
|
|
1348
1706
|
|
|
1349
1707
|
@if should-emit(
|
|
1350
1708
|
$theme,
|
|
1351
1709
|
$parent-carbon-theme,
|
|
1352
|
-
'
|
|
1710
|
+
'text-placeholder',
|
|
1353
1711
|
$emit-difference
|
|
1354
1712
|
)
|
|
1355
1713
|
{
|
|
1356
1714
|
@include custom-property(
|
|
1357
|
-
'
|
|
1358
|
-
map-get($theme, '
|
|
1715
|
+
'text-placeholder',
|
|
1716
|
+
map-get($theme, 'text-placeholder')
|
|
1359
1717
|
);
|
|
1360
1718
|
}
|
|
1361
1719
|
|
|
1362
1720
|
@if should-emit(
|
|
1363
1721
|
$theme,
|
|
1364
1722
|
$parent-carbon-theme,
|
|
1365
|
-
'
|
|
1723
|
+
'text-helper',
|
|
1366
1724
|
$emit-difference
|
|
1367
1725
|
)
|
|
1368
1726
|
{
|
|
1369
|
-
@include custom-property(
|
|
1370
|
-
'productive-heading-04',
|
|
1371
|
-
map-get($theme, 'productive-heading-04')
|
|
1372
|
-
);
|
|
1727
|
+
@include custom-property('text-helper', map-get($theme, 'text-helper'));
|
|
1373
1728
|
}
|
|
1374
1729
|
|
|
1375
1730
|
@if should-emit(
|
|
1376
1731
|
$theme,
|
|
1377
1732
|
$parent-carbon-theme,
|
|
1378
|
-
'
|
|
1733
|
+
'text-on-color',
|
|
1379
1734
|
$emit-difference
|
|
1380
1735
|
)
|
|
1381
1736
|
{
|
|
1382
1737
|
@include custom-property(
|
|
1383
|
-
'
|
|
1384
|
-
map-get($theme, '
|
|
1738
|
+
'text-on-color',
|
|
1739
|
+
map-get($theme, 'text-on-color')
|
|
1385
1740
|
);
|
|
1386
1741
|
}
|
|
1387
1742
|
|
|
1388
1743
|
@if should-emit(
|
|
1389
1744
|
$theme,
|
|
1390
1745
|
$parent-carbon-theme,
|
|
1391
|
-
'
|
|
1746
|
+
'text-inverse',
|
|
1392
1747
|
$emit-difference
|
|
1393
1748
|
)
|
|
1394
1749
|
{
|
|
1395
|
-
@include custom-property(
|
|
1396
|
-
'productive-heading-06',
|
|
1397
|
-
map-get($theme, 'productive-heading-06')
|
|
1398
|
-
);
|
|
1750
|
+
@include custom-property('text-inverse', map-get($theme, 'text-inverse'));
|
|
1399
1751
|
}
|
|
1400
1752
|
|
|
1401
1753
|
@if should-emit(
|
|
1402
1754
|
$theme,
|
|
1403
1755
|
$parent-carbon-theme,
|
|
1404
|
-
'
|
|
1756
|
+
'link-primary',
|
|
1405
1757
|
$emit-difference
|
|
1406
1758
|
)
|
|
1407
1759
|
{
|
|
1408
|
-
@include custom-property(
|
|
1409
|
-
'productive-heading-07',
|
|
1410
|
-
map-get($theme, 'productive-heading-07')
|
|
1411
|
-
);
|
|
1760
|
+
@include custom-property('link-primary', map-get($theme, 'link-primary'));
|
|
1412
1761
|
}
|
|
1413
1762
|
|
|
1414
1763
|
@if should-emit(
|
|
1415
1764
|
$theme,
|
|
1416
1765
|
$parent-carbon-theme,
|
|
1417
|
-
'
|
|
1766
|
+
'link-secondary',
|
|
1418
1767
|
$emit-difference
|
|
1419
1768
|
)
|
|
1420
1769
|
{
|
|
1421
1770
|
@include custom-property(
|
|
1422
|
-
'
|
|
1423
|
-
map-get($theme, '
|
|
1771
|
+
'link-secondary',
|
|
1772
|
+
map-get($theme, 'link-secondary')
|
|
1424
1773
|
);
|
|
1425
1774
|
}
|
|
1426
1775
|
|
|
1427
1776
|
@if should-emit(
|
|
1428
1777
|
$theme,
|
|
1429
1778
|
$parent-carbon-theme,
|
|
1430
|
-
'
|
|
1779
|
+
'link-visited',
|
|
1431
1780
|
$emit-difference
|
|
1432
1781
|
)
|
|
1433
1782
|
{
|
|
1434
|
-
@include custom-property(
|
|
1435
|
-
'expressive-heading-02',
|
|
1436
|
-
map-get($theme, 'expressive-heading-02')
|
|
1437
|
-
);
|
|
1783
|
+
@include custom-property('link-visited', map-get($theme, 'link-visited'));
|
|
1438
1784
|
}
|
|
1439
1785
|
|
|
1440
1786
|
@if should-emit(
|
|
1441
1787
|
$theme,
|
|
1442
1788
|
$parent-carbon-theme,
|
|
1443
|
-
'
|
|
1789
|
+
'link-inverse',
|
|
1444
1790
|
$emit-difference
|
|
1445
1791
|
)
|
|
1446
1792
|
{
|
|
1447
|
-
@include custom-property(
|
|
1448
|
-
'expressive-heading-03',
|
|
1449
|
-
map-get($theme, 'expressive-heading-03')
|
|
1450
|
-
);
|
|
1793
|
+
@include custom-property('link-inverse', map-get($theme, 'link-inverse'));
|
|
1451
1794
|
}
|
|
1452
1795
|
|
|
1453
1796
|
@if should-emit(
|
|
1454
1797
|
$theme,
|
|
1455
1798
|
$parent-carbon-theme,
|
|
1456
|
-
'
|
|
1799
|
+
'icon-primary',
|
|
1457
1800
|
$emit-difference
|
|
1458
1801
|
)
|
|
1459
1802
|
{
|
|
1460
|
-
@include custom-property(
|
|
1461
|
-
'expressive-heading-04',
|
|
1462
|
-
map-get($theme, 'expressive-heading-04')
|
|
1463
|
-
);
|
|
1803
|
+
@include custom-property('icon-primary', map-get($theme, 'icon-primary'));
|
|
1464
1804
|
}
|
|
1465
1805
|
|
|
1466
1806
|
@if should-emit(
|
|
1467
1807
|
$theme,
|
|
1468
1808
|
$parent-carbon-theme,
|
|
1469
|
-
'
|
|
1809
|
+
'icon-secondary',
|
|
1470
1810
|
$emit-difference
|
|
1471
1811
|
)
|
|
1472
1812
|
{
|
|
1473
1813
|
@include custom-property(
|
|
1474
|
-
'
|
|
1475
|
-
map-get($theme, '
|
|
1814
|
+
'icon-secondary',
|
|
1815
|
+
map-get($theme, 'icon-secondary')
|
|
1476
1816
|
);
|
|
1477
1817
|
}
|
|
1478
1818
|
|
|
1479
1819
|
@if should-emit(
|
|
1480
1820
|
$theme,
|
|
1481
1821
|
$parent-carbon-theme,
|
|
1482
|
-
'
|
|
1822
|
+
'icon-on-color',
|
|
1483
1823
|
$emit-difference
|
|
1484
1824
|
)
|
|
1485
1825
|
{
|
|
1486
1826
|
@include custom-property(
|
|
1487
|
-
'
|
|
1488
|
-
map-get($theme, '
|
|
1827
|
+
'icon-on-color',
|
|
1828
|
+
map-get($theme, 'icon-on-color')
|
|
1489
1829
|
);
|
|
1490
1830
|
}
|
|
1491
1831
|
|
|
1492
1832
|
@if should-emit(
|
|
1493
1833
|
$theme,
|
|
1494
1834
|
$parent-carbon-theme,
|
|
1495
|
-
'
|
|
1835
|
+
'icon-inverse',
|
|
1496
1836
|
$emit-difference
|
|
1497
1837
|
)
|
|
1498
1838
|
{
|
|
1499
|
-
@include custom-property(
|
|
1500
|
-
'expressive-paragraph-01',
|
|
1501
|
-
map-get($theme, 'expressive-paragraph-01')
|
|
1502
|
-
);
|
|
1839
|
+
@include custom-property('icon-inverse', map-get($theme, 'icon-inverse'));
|
|
1503
1840
|
}
|
|
1504
1841
|
|
|
1505
1842
|
@if should-emit(
|
|
1506
1843
|
$theme,
|
|
1507
1844
|
$parent-carbon-theme,
|
|
1508
|
-
'
|
|
1845
|
+
'support-error',
|
|
1509
1846
|
$emit-difference
|
|
1510
1847
|
)
|
|
1511
1848
|
{
|
|
1512
|
-
@include custom-property(
|
|
1849
|
+
@include custom-property(
|
|
1850
|
+
'support-error',
|
|
1851
|
+
map-get($theme, 'support-error')
|
|
1852
|
+
);
|
|
1513
1853
|
}
|
|
1514
1854
|
|
|
1515
1855
|
@if should-emit(
|
|
1516
1856
|
$theme,
|
|
1517
1857
|
$parent-carbon-theme,
|
|
1518
|
-
'
|
|
1858
|
+
'support-success',
|
|
1519
1859
|
$emit-difference
|
|
1520
1860
|
)
|
|
1521
1861
|
{
|
|
1522
|
-
@include custom-property(
|
|
1862
|
+
@include custom-property(
|
|
1863
|
+
'support-success',
|
|
1864
|
+
map-get($theme, 'support-success')
|
|
1865
|
+
);
|
|
1523
1866
|
}
|
|
1524
1867
|
|
|
1525
1868
|
@if should-emit(
|
|
1526
1869
|
$theme,
|
|
1527
1870
|
$parent-carbon-theme,
|
|
1528
|
-
'
|
|
1871
|
+
'support-warning',
|
|
1529
1872
|
$emit-difference
|
|
1530
1873
|
)
|
|
1531
1874
|
{
|
|
1532
|
-
@include custom-property(
|
|
1875
|
+
@include custom-property(
|
|
1876
|
+
'support-warning',
|
|
1877
|
+
map-get($theme, 'support-warning')
|
|
1878
|
+
);
|
|
1533
1879
|
}
|
|
1534
1880
|
|
|
1535
1881
|
@if should-emit(
|
|
1536
1882
|
$theme,
|
|
1537
1883
|
$parent-carbon-theme,
|
|
1538
|
-
'
|
|
1884
|
+
'support-info',
|
|
1539
1885
|
$emit-difference
|
|
1540
1886
|
)
|
|
1541
1887
|
{
|
|
1542
|
-
@include custom-property('
|
|
1888
|
+
@include custom-property('support-info', map-get($theme, 'support-info'));
|
|
1543
1889
|
}
|
|
1544
1890
|
|
|
1545
1891
|
@if should-emit(
|
|
1546
1892
|
$theme,
|
|
1547
1893
|
$parent-carbon-theme,
|
|
1548
|
-
'
|
|
1894
|
+
'support-error-inverse',
|
|
1549
1895
|
$emit-difference
|
|
1550
1896
|
)
|
|
1551
1897
|
{
|
|
1552
|
-
@include custom-property(
|
|
1898
|
+
@include custom-property(
|
|
1899
|
+
'support-error-inverse',
|
|
1900
|
+
map-get($theme, 'support-error-inverse')
|
|
1901
|
+
);
|
|
1553
1902
|
}
|
|
1554
1903
|
|
|
1555
1904
|
@if should-emit(
|
|
1556
1905
|
$theme,
|
|
1557
1906
|
$parent-carbon-theme,
|
|
1558
|
-
'
|
|
1907
|
+
'support-success-inverse',
|
|
1559
1908
|
$emit-difference
|
|
1560
1909
|
)
|
|
1561
1910
|
{
|
|
1562
|
-
@include custom-property(
|
|
1911
|
+
@include custom-property(
|
|
1912
|
+
'support-success-inverse',
|
|
1913
|
+
map-get($theme, 'support-success-inverse')
|
|
1914
|
+
);
|
|
1563
1915
|
}
|
|
1564
1916
|
|
|
1565
1917
|
@if should-emit(
|
|
1566
1918
|
$theme,
|
|
1567
1919
|
$parent-carbon-theme,
|
|
1568
|
-
'
|
|
1920
|
+
'support-warning-inverse',
|
|
1569
1921
|
$emit-difference
|
|
1570
1922
|
)
|
|
1571
1923
|
{
|
|
1572
|
-
@include custom-property(
|
|
1924
|
+
@include custom-property(
|
|
1925
|
+
'support-warning-inverse',
|
|
1926
|
+
map-get($theme, 'support-warning-inverse')
|
|
1927
|
+
);
|
|
1573
1928
|
}
|
|
1574
1929
|
|
|
1575
1930
|
@if should-emit(
|
|
1576
1931
|
$theme,
|
|
1577
1932
|
$parent-carbon-theme,
|
|
1578
|
-
'
|
|
1933
|
+
'support-info-inverse',
|
|
1579
1934
|
$emit-difference
|
|
1580
1935
|
)
|
|
1581
1936
|
{
|
|
1582
|
-
@include custom-property(
|
|
1937
|
+
@include custom-property(
|
|
1938
|
+
'support-info-inverse',
|
|
1939
|
+
map-get($theme, 'support-info-inverse')
|
|
1940
|
+
);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
@if should-emit($theme, $parent-carbon-theme, 'overlay', $emit-difference) {
|
|
1944
|
+
@include custom-property('overlay', map-get($theme, 'overlay'));
|
|
1583
1945
|
}
|
|
1584
1946
|
|
|
1585
1947
|
@if should-emit(
|
|
1586
1948
|
$theme,
|
|
1587
1949
|
$parent-carbon-theme,
|
|
1588
|
-
'
|
|
1950
|
+
'toggle-off',
|
|
1589
1951
|
$emit-difference
|
|
1590
1952
|
)
|
|
1591
1953
|
{
|
|
1592
|
-
@include custom-property('
|
|
1954
|
+
@include custom-property('toggle-off', map-get($theme, 'toggle-off'));
|
|
1593
1955
|
}
|
|
1594
1956
|
|
|
1595
1957
|
@if should-emit(
|
|
1596
1958
|
$theme,
|
|
1597
1959
|
$parent-carbon-theme,
|
|
1598
|
-
'
|
|
1960
|
+
'button-primary',
|
|
1599
1961
|
$emit-difference
|
|
1600
1962
|
)
|
|
1601
1963
|
{
|
|
1602
|
-
@include custom-property(
|
|
1964
|
+
@include custom-property(
|
|
1965
|
+
'button-primary',
|
|
1966
|
+
map-get($theme, 'button-primary')
|
|
1967
|
+
);
|
|
1603
1968
|
}
|
|
1604
1969
|
|
|
1605
1970
|
@if should-emit(
|
|
1606
1971
|
$theme,
|
|
1607
1972
|
$parent-carbon-theme,
|
|
1608
|
-
'
|
|
1973
|
+
'button-secondary',
|
|
1609
1974
|
$emit-difference
|
|
1610
1975
|
)
|
|
1611
1976
|
{
|
|
1612
|
-
@include custom-property(
|
|
1977
|
+
@include custom-property(
|
|
1978
|
+
'button-secondary',
|
|
1979
|
+
map-get($theme, 'button-secondary')
|
|
1980
|
+
);
|
|
1613
1981
|
}
|
|
1614
1982
|
|
|
1615
1983
|
@if should-emit(
|
|
1616
1984
|
$theme,
|
|
1617
1985
|
$parent-carbon-theme,
|
|
1618
|
-
'
|
|
1986
|
+
'button-tertiary',
|
|
1619
1987
|
$emit-difference
|
|
1620
1988
|
)
|
|
1621
1989
|
{
|
|
1622
|
-
@include custom-property(
|
|
1990
|
+
@include custom-property(
|
|
1991
|
+
'button-tertiary',
|
|
1992
|
+
map-get($theme, 'button-tertiary')
|
|
1993
|
+
);
|
|
1623
1994
|
}
|
|
1624
1995
|
|
|
1625
1996
|
@if should-emit(
|
|
1626
1997
|
$theme,
|
|
1627
1998
|
$parent-carbon-theme,
|
|
1628
|
-
'
|
|
1999
|
+
'button-danger-primary',
|
|
1629
2000
|
$emit-difference
|
|
1630
2001
|
)
|
|
1631
2002
|
{
|
|
1632
|
-
@include custom-property(
|
|
2003
|
+
@include custom-property(
|
|
2004
|
+
'button-danger-primary',
|
|
2005
|
+
map-get($theme, 'button-danger-primary')
|
|
2006
|
+
);
|
|
1633
2007
|
}
|
|
1634
2008
|
|
|
1635
2009
|
@if should-emit(
|
|
1636
2010
|
$theme,
|
|
1637
2011
|
$parent-carbon-theme,
|
|
1638
|
-
'
|
|
2012
|
+
'button-danger-secondary',
|
|
1639
2013
|
$emit-difference
|
|
1640
2014
|
)
|
|
1641
2015
|
{
|
|
1642
|
-
@include custom-property(
|
|
2016
|
+
@include custom-property(
|
|
2017
|
+
'button-danger-secondary',
|
|
2018
|
+
map-get($theme, 'button-danger-secondary')
|
|
2019
|
+
);
|
|
1643
2020
|
}
|
|
1644
2021
|
|
|
1645
2022
|
@if should-emit(
|
|
1646
2023
|
$theme,
|
|
1647
2024
|
$parent-carbon-theme,
|
|
1648
|
-
'
|
|
2025
|
+
'background-active',
|
|
1649
2026
|
$emit-difference
|
|
1650
2027
|
)
|
|
1651
2028
|
{
|
|
1652
|
-
@include custom-property(
|
|
2029
|
+
@include custom-property(
|
|
2030
|
+
'background-active',
|
|
2031
|
+
map-get($theme, 'background-active')
|
|
2032
|
+
);
|
|
1653
2033
|
}
|
|
1654
2034
|
|
|
1655
2035
|
@if should-emit(
|
|
1656
2036
|
$theme,
|
|
1657
2037
|
$parent-carbon-theme,
|
|
1658
|
-
'
|
|
2038
|
+
'layer-active',
|
|
1659
2039
|
$emit-difference
|
|
1660
2040
|
)
|
|
1661
2041
|
{
|
|
1662
|
-
@include custom-property('
|
|
2042
|
+
@include custom-property('layer-active', map-get($theme, 'layer-active'));
|
|
1663
2043
|
}
|
|
1664
2044
|
|
|
1665
2045
|
@if should-emit(
|
|
1666
2046
|
$theme,
|
|
1667
2047
|
$parent-carbon-theme,
|
|
1668
|
-
'
|
|
2048
|
+
'button-danger-active',
|
|
1669
2049
|
$emit-difference
|
|
1670
2050
|
)
|
|
1671
2051
|
{
|
|
1672
|
-
@include custom-property(
|
|
2052
|
+
@include custom-property(
|
|
2053
|
+
'button-danger-active',
|
|
2054
|
+
map-get($theme, 'button-danger-active')
|
|
2055
|
+
);
|
|
1673
2056
|
}
|
|
1674
2057
|
|
|
1675
2058
|
@if should-emit(
|
|
1676
2059
|
$theme,
|
|
1677
2060
|
$parent-carbon-theme,
|
|
1678
|
-
'
|
|
2061
|
+
'button-primary-active',
|
|
1679
2062
|
$emit-difference
|
|
1680
2063
|
)
|
|
1681
2064
|
{
|
|
1682
|
-
@include custom-property(
|
|
2065
|
+
@include custom-property(
|
|
2066
|
+
'button-primary-active',
|
|
2067
|
+
map-get($theme, 'button-primary-active')
|
|
2068
|
+
);
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
@if should-emit(
|
|
2072
|
+
$theme,
|
|
2073
|
+
$parent-carbon-theme,
|
|
2074
|
+
'button-secondary-active',
|
|
2075
|
+
$emit-difference
|
|
2076
|
+
)
|
|
2077
|
+
{
|
|
2078
|
+
@include custom-property(
|
|
2079
|
+
'button-secondary-active',
|
|
2080
|
+
map-get($theme, 'button-secondary-active')
|
|
2081
|
+
);
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
@if should-emit(
|
|
2085
|
+
$theme,
|
|
2086
|
+
$parent-carbon-theme,
|
|
2087
|
+
'button-tertiary-active',
|
|
2088
|
+
$emit-difference
|
|
2089
|
+
)
|
|
2090
|
+
{
|
|
2091
|
+
@include custom-property(
|
|
2092
|
+
'button-tertiary-active',
|
|
2093
|
+
map-get($theme, 'button-tertiary-active')
|
|
2094
|
+
);
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
@if should-emit(
|
|
2098
|
+
$theme,
|
|
2099
|
+
$parent-carbon-theme,
|
|
2100
|
+
'focus-inset',
|
|
2101
|
+
$emit-difference
|
|
2102
|
+
)
|
|
2103
|
+
{
|
|
2104
|
+
@include custom-property('focus-inset', map-get($theme, 'focus-inset'));
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
@if should-emit(
|
|
2108
|
+
$theme,
|
|
2109
|
+
$parent-carbon-theme,
|
|
2110
|
+
'focus-inverse',
|
|
2111
|
+
$emit-difference
|
|
2112
|
+
)
|
|
2113
|
+
{
|
|
2114
|
+
@include custom-property(
|
|
2115
|
+
'focus-inverse',
|
|
2116
|
+
map-get($theme, 'focus-inverse')
|
|
2117
|
+
);
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
@if should-emit(
|
|
2121
|
+
$theme,
|
|
2122
|
+
$parent-carbon-theme,
|
|
2123
|
+
'background-hover',
|
|
2124
|
+
$emit-difference
|
|
2125
|
+
)
|
|
2126
|
+
{
|
|
2127
|
+
@include custom-property(
|
|
2128
|
+
'background-hover',
|
|
2129
|
+
map-get($theme, 'background-hover')
|
|
2130
|
+
);
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
@if should-emit(
|
|
2134
|
+
$theme,
|
|
2135
|
+
$parent-carbon-theme,
|
|
2136
|
+
'layer-hover',
|
|
2137
|
+
$emit-difference
|
|
2138
|
+
)
|
|
2139
|
+
{
|
|
2140
|
+
@include custom-property('layer-hover', map-get($theme, 'layer-hover'));
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
@if should-emit(
|
|
2144
|
+
$theme,
|
|
2145
|
+
$parent-carbon-theme,
|
|
2146
|
+
'field-hover',
|
|
2147
|
+
$emit-difference
|
|
2148
|
+
)
|
|
2149
|
+
{
|
|
2150
|
+
@include custom-property('field-hover', map-get($theme, 'field-hover'));
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
@if should-emit(
|
|
2154
|
+
$theme,
|
|
2155
|
+
$parent-carbon-theme,
|
|
2156
|
+
'background-inverse-hover',
|
|
2157
|
+
$emit-difference
|
|
2158
|
+
)
|
|
2159
|
+
{
|
|
2160
|
+
@include custom-property(
|
|
2161
|
+
'background-inverse-hover',
|
|
2162
|
+
map-get($theme, 'background-inverse-hover')
|
|
2163
|
+
);
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
@if should-emit(
|
|
2167
|
+
$theme,
|
|
2168
|
+
$parent-carbon-theme,
|
|
2169
|
+
'link-primary-hover',
|
|
2170
|
+
$emit-difference
|
|
2171
|
+
)
|
|
2172
|
+
{
|
|
2173
|
+
@include custom-property(
|
|
2174
|
+
'link-primary-hover',
|
|
2175
|
+
map-get($theme, 'link-primary-hover')
|
|
2176
|
+
);
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
@if should-emit(
|
|
2180
|
+
$theme,
|
|
2181
|
+
$parent-carbon-theme,
|
|
2182
|
+
'button-danger-hover',
|
|
2183
|
+
$emit-difference
|
|
2184
|
+
)
|
|
2185
|
+
{
|
|
2186
|
+
@include custom-property(
|
|
2187
|
+
'button-danger-hover',
|
|
2188
|
+
map-get($theme, 'button-danger-hover')
|
|
2189
|
+
);
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
@if should-emit(
|
|
2193
|
+
$theme,
|
|
2194
|
+
$parent-carbon-theme,
|
|
2195
|
+
'button-primary-hover',
|
|
2196
|
+
$emit-difference
|
|
2197
|
+
)
|
|
2198
|
+
{
|
|
2199
|
+
@include custom-property(
|
|
2200
|
+
'button-primary-hover',
|
|
2201
|
+
map-get($theme, 'button-primary-hover')
|
|
2202
|
+
);
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
@if should-emit(
|
|
2206
|
+
$theme,
|
|
2207
|
+
$parent-carbon-theme,
|
|
2208
|
+
'button-secondary-hover',
|
|
2209
|
+
$emit-difference
|
|
2210
|
+
)
|
|
2211
|
+
{
|
|
2212
|
+
@include custom-property(
|
|
2213
|
+
'button-secondary-hover',
|
|
2214
|
+
map-get($theme, 'button-secondary-hover')
|
|
2215
|
+
);
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
@if should-emit(
|
|
2219
|
+
$theme,
|
|
2220
|
+
$parent-carbon-theme,
|
|
2221
|
+
'button-tertiary-hover',
|
|
2222
|
+
$emit-difference
|
|
2223
|
+
)
|
|
2224
|
+
{
|
|
2225
|
+
@include custom-property(
|
|
2226
|
+
'button-tertiary-hover',
|
|
2227
|
+
map-get($theme, 'button-tertiary-hover')
|
|
2228
|
+
);
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
@if should-emit(
|
|
2232
|
+
$theme,
|
|
2233
|
+
$parent-carbon-theme,
|
|
2234
|
+
'background-selected',
|
|
2235
|
+
$emit-difference
|
|
2236
|
+
)
|
|
2237
|
+
{
|
|
2238
|
+
@include custom-property(
|
|
2239
|
+
'background-selected',
|
|
2240
|
+
map-get($theme, 'background-selected')
|
|
2241
|
+
);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
@if should-emit(
|
|
2245
|
+
$theme,
|
|
2246
|
+
$parent-carbon-theme,
|
|
2247
|
+
'background-selected-hover',
|
|
2248
|
+
$emit-difference
|
|
2249
|
+
)
|
|
2250
|
+
{
|
|
2251
|
+
@include custom-property(
|
|
2252
|
+
'background-selected-hover',
|
|
2253
|
+
map-get($theme, 'background-selected-hover')
|
|
2254
|
+
);
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
@if should-emit(
|
|
2258
|
+
$theme,
|
|
2259
|
+
$parent-carbon-theme,
|
|
2260
|
+
'layer-selected',
|
|
2261
|
+
$emit-difference
|
|
2262
|
+
)
|
|
2263
|
+
{
|
|
2264
|
+
@include custom-property(
|
|
2265
|
+
'layer-selected',
|
|
2266
|
+
map-get($theme, 'layer-selected')
|
|
2267
|
+
);
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
@if should-emit(
|
|
2271
|
+
$theme,
|
|
2272
|
+
$parent-carbon-theme,
|
|
2273
|
+
'layer-selected-hover',
|
|
2274
|
+
$emit-difference
|
|
2275
|
+
)
|
|
2276
|
+
{
|
|
2277
|
+
@include custom-property(
|
|
2278
|
+
'layer-selected-hover',
|
|
2279
|
+
map-get($theme, 'layer-selected-hover')
|
|
2280
|
+
);
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
@if should-emit(
|
|
2284
|
+
$theme,
|
|
2285
|
+
$parent-carbon-theme,
|
|
2286
|
+
'layer-selected-inverse',
|
|
2287
|
+
$emit-difference
|
|
2288
|
+
)
|
|
2289
|
+
{
|
|
2290
|
+
@include custom-property(
|
|
2291
|
+
'layer-selected-inverse',
|
|
2292
|
+
map-get($theme, 'layer-selected-inverse')
|
|
2293
|
+
);
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
@if should-emit(
|
|
2297
|
+
$theme,
|
|
2298
|
+
$parent-carbon-theme,
|
|
2299
|
+
'border-subtle-selected',
|
|
2300
|
+
$emit-difference
|
|
2301
|
+
)
|
|
2302
|
+
{
|
|
2303
|
+
@include custom-property(
|
|
2304
|
+
'border-subtle-selected',
|
|
2305
|
+
map-get($theme, 'border-subtle-selected')
|
|
2306
|
+
);
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
@if should-emit(
|
|
2310
|
+
$theme,
|
|
2311
|
+
$parent-carbon-theme,
|
|
2312
|
+
'layer-disabled',
|
|
2313
|
+
$emit-difference
|
|
2314
|
+
)
|
|
2315
|
+
{
|
|
2316
|
+
@include custom-property(
|
|
2317
|
+
'layer-disabled',
|
|
2318
|
+
map-get($theme, 'layer-disabled')
|
|
2319
|
+
);
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
@if should-emit(
|
|
2323
|
+
$theme,
|
|
2324
|
+
$parent-carbon-theme,
|
|
2325
|
+
'field-disabled',
|
|
2326
|
+
$emit-difference
|
|
2327
|
+
)
|
|
2328
|
+
{
|
|
2329
|
+
@include custom-property(
|
|
2330
|
+
'field-disabled',
|
|
2331
|
+
map-get($theme, 'field-disabled')
|
|
2332
|
+
);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
@if should-emit(
|
|
2336
|
+
$theme,
|
|
2337
|
+
$parent-carbon-theme,
|
|
2338
|
+
'border-disabled',
|
|
2339
|
+
$emit-difference
|
|
2340
|
+
)
|
|
2341
|
+
{
|
|
2342
|
+
@include custom-property(
|
|
2343
|
+
'border-disabled',
|
|
2344
|
+
map-get($theme, 'border-disabled')
|
|
2345
|
+
);
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
@if should-emit(
|
|
2349
|
+
$theme,
|
|
2350
|
+
$parent-carbon-theme,
|
|
2351
|
+
'text-disabled',
|
|
2352
|
+
$emit-difference
|
|
2353
|
+
)
|
|
2354
|
+
{
|
|
2355
|
+
@include custom-property(
|
|
2356
|
+
'text-disabled',
|
|
2357
|
+
map-get($theme, 'text-disabled')
|
|
2358
|
+
);
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
@if should-emit(
|
|
2362
|
+
$theme,
|
|
2363
|
+
$parent-carbon-theme,
|
|
2364
|
+
'button-disabled',
|
|
2365
|
+
$emit-difference
|
|
2366
|
+
)
|
|
2367
|
+
{
|
|
2368
|
+
@include custom-property(
|
|
2369
|
+
'button-disabled',
|
|
2370
|
+
map-get($theme, 'button-disabled')
|
|
2371
|
+
);
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
@if should-emit(
|
|
2375
|
+
$theme,
|
|
2376
|
+
$parent-carbon-theme,
|
|
2377
|
+
'icon-disabled',
|
|
2378
|
+
$emit-difference
|
|
2379
|
+
)
|
|
2380
|
+
{
|
|
2381
|
+
@include custom-property(
|
|
2382
|
+
'icon-disabled',
|
|
2383
|
+
map-get($theme, 'icon-disabled')
|
|
2384
|
+
);
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
@if should-emit(
|
|
2388
|
+
$theme,
|
|
2389
|
+
$parent-carbon-theme,
|
|
2390
|
+
'text-on-color-disabled',
|
|
2391
|
+
$emit-difference
|
|
2392
|
+
)
|
|
2393
|
+
{
|
|
2394
|
+
@include custom-property(
|
|
2395
|
+
'text-on-color-disabled',
|
|
2396
|
+
map-get($theme, 'text-on-color-disabled')
|
|
2397
|
+
);
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
@if should-emit(
|
|
2401
|
+
$theme,
|
|
2402
|
+
$parent-carbon-theme,
|
|
2403
|
+
'icon-on-color-disabled',
|
|
2404
|
+
$emit-difference
|
|
2405
|
+
)
|
|
2406
|
+
{
|
|
2407
|
+
@include custom-property(
|
|
2408
|
+
'icon-on-color-disabled',
|
|
2409
|
+
map-get($theme, 'icon-on-color-disabled')
|
|
2410
|
+
);
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
@if should-emit(
|
|
2414
|
+
$theme,
|
|
2415
|
+
$parent-carbon-theme,
|
|
2416
|
+
'layer-selected-disabled',
|
|
2417
|
+
$emit-difference
|
|
2418
|
+
)
|
|
2419
|
+
{
|
|
2420
|
+
@include custom-property(
|
|
2421
|
+
'layer-selected-disabled',
|
|
2422
|
+
map-get($theme, 'layer-selected-disabled')
|
|
2423
|
+
);
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
@if should-emit(
|
|
2427
|
+
$theme,
|
|
2428
|
+
$parent-carbon-theme,
|
|
2429
|
+
'skeleton-background',
|
|
2430
|
+
$emit-difference
|
|
2431
|
+
)
|
|
2432
|
+
{
|
|
2433
|
+
@include custom-property(
|
|
2434
|
+
'skeleton-background',
|
|
2435
|
+
map-get($theme, 'skeleton-background')
|
|
2436
|
+
);
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
@if should-emit(
|
|
2440
|
+
$theme,
|
|
2441
|
+
$parent-carbon-theme,
|
|
2442
|
+
'skeleton-element',
|
|
2443
|
+
$emit-difference
|
|
2444
|
+
)
|
|
2445
|
+
{
|
|
2446
|
+
@include custom-property(
|
|
2447
|
+
'skeleton-element',
|
|
2448
|
+
map-get($theme, 'skeleton-element')
|
|
2449
|
+
);
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
@if should-emit($theme, $parent-carbon-theme, 'brand-01', $emit-difference)
|
|
2453
|
+
{
|
|
2454
|
+
@include custom-property('brand-01', map-get($theme, 'brand-01'));
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
@if should-emit($theme, $parent-carbon-theme, 'brand-02', $emit-difference)
|
|
2458
|
+
{
|
|
2459
|
+
@include custom-property('brand-02', map-get($theme, 'brand-02'));
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
@if should-emit($theme, $parent-carbon-theme, 'brand-03', $emit-difference)
|
|
2463
|
+
{
|
|
2464
|
+
@include custom-property('brand-03', map-get($theme, 'brand-03'));
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
@if should-emit($theme, $parent-carbon-theme, 'active-01', $emit-difference)
|
|
2468
|
+
{
|
|
2469
|
+
@include custom-property('active-01', map-get($theme, 'active-01'));
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
@if should-emit(
|
|
2473
|
+
$theme,
|
|
2474
|
+
$parent-carbon-theme,
|
|
2475
|
+
'hover-field',
|
|
2476
|
+
$emit-difference
|
|
2477
|
+
)
|
|
2478
|
+
{
|
|
2479
|
+
@include custom-property('hover-field', map-get($theme, 'hover-field'));
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
@if should-emit($theme, $parent-carbon-theme, 'danger', $emit-difference) {
|
|
2483
|
+
@include custom-property('danger', map-get($theme, 'danger'));
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
@if should-emit(
|
|
2487
|
+
$theme,
|
|
2488
|
+
$parent-carbon-theme,
|
|
2489
|
+
'caption-01',
|
|
2490
|
+
$emit-difference
|
|
2491
|
+
)
|
|
2492
|
+
{
|
|
2493
|
+
@include custom-property('caption-01', map-get($theme, 'caption-01'));
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
@if should-emit($theme, $parent-carbon-theme, 'label-01', $emit-difference)
|
|
2497
|
+
{
|
|
2498
|
+
@include custom-property('label-01', map-get($theme, 'label-01'));
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
@if should-emit(
|
|
2502
|
+
$theme,
|
|
2503
|
+
$parent-carbon-theme,
|
|
2504
|
+
'helper-text-01',
|
|
2505
|
+
$emit-difference
|
|
2506
|
+
)
|
|
2507
|
+
{
|
|
2508
|
+
@include custom-property(
|
|
2509
|
+
'helper-text-01',
|
|
2510
|
+
map-get($theme, 'helper-text-01')
|
|
2511
|
+
);
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
@if should-emit(
|
|
2515
|
+
$theme,
|
|
2516
|
+
$parent-carbon-theme,
|
|
2517
|
+
'body-short-01',
|
|
2518
|
+
$emit-difference
|
|
2519
|
+
)
|
|
2520
|
+
{
|
|
2521
|
+
@include custom-property(
|
|
2522
|
+
'body-short-01',
|
|
2523
|
+
map-get($theme, 'body-short-01')
|
|
2524
|
+
);
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
@if should-emit(
|
|
2528
|
+
$theme,
|
|
2529
|
+
$parent-carbon-theme,
|
|
2530
|
+
'body-long-01',
|
|
2531
|
+
$emit-difference
|
|
2532
|
+
)
|
|
2533
|
+
{
|
|
2534
|
+
@include custom-property('body-long-01', map-get($theme, 'body-long-01'));
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
@if should-emit(
|
|
2538
|
+
$theme,
|
|
2539
|
+
$parent-carbon-theme,
|
|
2540
|
+
'body-short-02',
|
|
2541
|
+
$emit-difference
|
|
2542
|
+
)
|
|
2543
|
+
{
|
|
2544
|
+
@include custom-property(
|
|
2545
|
+
'body-short-02',
|
|
2546
|
+
map-get($theme, 'body-short-02')
|
|
2547
|
+
);
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
@if should-emit(
|
|
2551
|
+
$theme,
|
|
2552
|
+
$parent-carbon-theme,
|
|
2553
|
+
'body-long-02',
|
|
2554
|
+
$emit-difference
|
|
2555
|
+
)
|
|
2556
|
+
{
|
|
2557
|
+
@include custom-property('body-long-02', map-get($theme, 'body-long-02'));
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
@if should-emit($theme, $parent-carbon-theme, 'code-01', $emit-difference) {
|
|
2561
|
+
@include custom-property('code-01', map-get($theme, 'code-01'));
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
@if should-emit($theme, $parent-carbon-theme, 'code-02', $emit-difference) {
|
|
2565
|
+
@include custom-property('code-02', map-get($theme, 'code-02'));
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
@if should-emit(
|
|
2569
|
+
$theme,
|
|
2570
|
+
$parent-carbon-theme,
|
|
2571
|
+
'heading-01',
|
|
2572
|
+
$emit-difference
|
|
2573
|
+
)
|
|
2574
|
+
{
|
|
2575
|
+
@include custom-property('heading-01', map-get($theme, 'heading-01'));
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
@if should-emit(
|
|
2579
|
+
$theme,
|
|
2580
|
+
$parent-carbon-theme,
|
|
2581
|
+
'productive-heading-01',
|
|
2582
|
+
$emit-difference
|
|
2583
|
+
)
|
|
2584
|
+
{
|
|
2585
|
+
@include custom-property(
|
|
2586
|
+
'productive-heading-01',
|
|
2587
|
+
map-get($theme, 'productive-heading-01')
|
|
2588
|
+
);
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
@if should-emit(
|
|
2592
|
+
$theme,
|
|
2593
|
+
$parent-carbon-theme,
|
|
2594
|
+
'heading-02',
|
|
2595
|
+
$emit-difference
|
|
2596
|
+
)
|
|
2597
|
+
{
|
|
2598
|
+
@include custom-property('heading-02', map-get($theme, 'heading-02'));
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
@if should-emit(
|
|
2602
|
+
$theme,
|
|
2603
|
+
$parent-carbon-theme,
|
|
2604
|
+
'productive-heading-02',
|
|
2605
|
+
$emit-difference
|
|
2606
|
+
)
|
|
2607
|
+
{
|
|
2608
|
+
@include custom-property(
|
|
2609
|
+
'productive-heading-02',
|
|
2610
|
+
map-get($theme, 'productive-heading-02')
|
|
2611
|
+
);
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
@if should-emit(
|
|
2615
|
+
$theme,
|
|
2616
|
+
$parent-carbon-theme,
|
|
2617
|
+
'productive-heading-03',
|
|
2618
|
+
$emit-difference
|
|
2619
|
+
)
|
|
2620
|
+
{
|
|
2621
|
+
@include custom-property(
|
|
2622
|
+
'productive-heading-03',
|
|
2623
|
+
map-get($theme, 'productive-heading-03')
|
|
2624
|
+
);
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
@if should-emit(
|
|
2628
|
+
$theme,
|
|
2629
|
+
$parent-carbon-theme,
|
|
2630
|
+
'productive-heading-04',
|
|
2631
|
+
$emit-difference
|
|
2632
|
+
)
|
|
2633
|
+
{
|
|
2634
|
+
@include custom-property(
|
|
2635
|
+
'productive-heading-04',
|
|
2636
|
+
map-get($theme, 'productive-heading-04')
|
|
2637
|
+
);
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
@if should-emit(
|
|
2641
|
+
$theme,
|
|
2642
|
+
$parent-carbon-theme,
|
|
2643
|
+
'productive-heading-05',
|
|
2644
|
+
$emit-difference
|
|
2645
|
+
)
|
|
2646
|
+
{
|
|
2647
|
+
@include custom-property(
|
|
2648
|
+
'productive-heading-05',
|
|
2649
|
+
map-get($theme, 'productive-heading-05')
|
|
2650
|
+
);
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
@if should-emit(
|
|
2654
|
+
$theme,
|
|
2655
|
+
$parent-carbon-theme,
|
|
2656
|
+
'productive-heading-06',
|
|
2657
|
+
$emit-difference
|
|
2658
|
+
)
|
|
2659
|
+
{
|
|
2660
|
+
@include custom-property(
|
|
2661
|
+
'productive-heading-06',
|
|
2662
|
+
map-get($theme, 'productive-heading-06')
|
|
2663
|
+
);
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
@if should-emit(
|
|
2667
|
+
$theme,
|
|
2668
|
+
$parent-carbon-theme,
|
|
2669
|
+
'productive-heading-07',
|
|
2670
|
+
$emit-difference
|
|
2671
|
+
)
|
|
2672
|
+
{
|
|
2673
|
+
@include custom-property(
|
|
2674
|
+
'productive-heading-07',
|
|
2675
|
+
map-get($theme, 'productive-heading-07')
|
|
2676
|
+
);
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
@if should-emit(
|
|
2680
|
+
$theme,
|
|
2681
|
+
$parent-carbon-theme,
|
|
2682
|
+
'expressive-heading-01',
|
|
2683
|
+
$emit-difference
|
|
2684
|
+
)
|
|
2685
|
+
{
|
|
2686
|
+
@include custom-property(
|
|
2687
|
+
'expressive-heading-01',
|
|
2688
|
+
map-get($theme, 'expressive-heading-01')
|
|
2689
|
+
);
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
@if should-emit(
|
|
2693
|
+
$theme,
|
|
2694
|
+
$parent-carbon-theme,
|
|
2695
|
+
'expressive-heading-02',
|
|
2696
|
+
$emit-difference
|
|
2697
|
+
)
|
|
2698
|
+
{
|
|
2699
|
+
@include custom-property(
|
|
2700
|
+
'expressive-heading-02',
|
|
2701
|
+
map-get($theme, 'expressive-heading-02')
|
|
2702
|
+
);
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
@if should-emit(
|
|
2706
|
+
$theme,
|
|
2707
|
+
$parent-carbon-theme,
|
|
2708
|
+
'expressive-heading-03',
|
|
2709
|
+
$emit-difference
|
|
2710
|
+
)
|
|
2711
|
+
{
|
|
2712
|
+
@include custom-property(
|
|
2713
|
+
'expressive-heading-03',
|
|
2714
|
+
map-get($theme, 'expressive-heading-03')
|
|
2715
|
+
);
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
@if should-emit(
|
|
2719
|
+
$theme,
|
|
2720
|
+
$parent-carbon-theme,
|
|
2721
|
+
'expressive-heading-04',
|
|
2722
|
+
$emit-difference
|
|
2723
|
+
)
|
|
2724
|
+
{
|
|
2725
|
+
@include custom-property(
|
|
2726
|
+
'expressive-heading-04',
|
|
2727
|
+
map-get($theme, 'expressive-heading-04')
|
|
2728
|
+
);
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
@if should-emit(
|
|
2732
|
+
$theme,
|
|
2733
|
+
$parent-carbon-theme,
|
|
2734
|
+
'expressive-heading-05',
|
|
2735
|
+
$emit-difference
|
|
2736
|
+
)
|
|
2737
|
+
{
|
|
2738
|
+
@include custom-property(
|
|
2739
|
+
'expressive-heading-05',
|
|
2740
|
+
map-get($theme, 'expressive-heading-05')
|
|
2741
|
+
);
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
@if should-emit(
|
|
2745
|
+
$theme,
|
|
2746
|
+
$parent-carbon-theme,
|
|
2747
|
+
'expressive-heading-06',
|
|
2748
|
+
$emit-difference
|
|
2749
|
+
)
|
|
2750
|
+
{
|
|
2751
|
+
@include custom-property(
|
|
2752
|
+
'expressive-heading-06',
|
|
2753
|
+
map-get($theme, 'expressive-heading-06')
|
|
2754
|
+
);
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
@if should-emit(
|
|
2758
|
+
$theme,
|
|
2759
|
+
$parent-carbon-theme,
|
|
2760
|
+
'expressive-paragraph-01',
|
|
2761
|
+
$emit-difference
|
|
2762
|
+
)
|
|
2763
|
+
{
|
|
2764
|
+
@include custom-property(
|
|
2765
|
+
'expressive-paragraph-01',
|
|
2766
|
+
map-get($theme, 'expressive-paragraph-01')
|
|
2767
|
+
);
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
@if should-emit(
|
|
2771
|
+
$theme,
|
|
2772
|
+
$parent-carbon-theme,
|
|
2773
|
+
'quotation-01',
|
|
2774
|
+
$emit-difference
|
|
2775
|
+
)
|
|
2776
|
+
{
|
|
2777
|
+
@include custom-property('quotation-01', map-get($theme, 'quotation-01'));
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
@if should-emit(
|
|
2781
|
+
$theme,
|
|
2782
|
+
$parent-carbon-theme,
|
|
2783
|
+
'quotation-02',
|
|
2784
|
+
$emit-difference
|
|
2785
|
+
)
|
|
2786
|
+
{
|
|
2787
|
+
@include custom-property('quotation-02', map-get($theme, 'quotation-02'));
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
@if should-emit(
|
|
2791
|
+
$theme,
|
|
2792
|
+
$parent-carbon-theme,
|
|
2793
|
+
'display-01',
|
|
2794
|
+
$emit-difference
|
|
2795
|
+
)
|
|
2796
|
+
{
|
|
2797
|
+
@include custom-property('display-01', map-get($theme, 'display-01'));
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
@if should-emit(
|
|
2801
|
+
$theme,
|
|
2802
|
+
$parent-carbon-theme,
|
|
2803
|
+
'display-02',
|
|
2804
|
+
$emit-difference
|
|
2805
|
+
)
|
|
2806
|
+
{
|
|
2807
|
+
@include custom-property('display-02', map-get($theme, 'display-02'));
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
@if should-emit(
|
|
2811
|
+
$theme,
|
|
2812
|
+
$parent-carbon-theme,
|
|
2813
|
+
'display-03',
|
|
2814
|
+
$emit-difference
|
|
2815
|
+
)
|
|
2816
|
+
{
|
|
2817
|
+
@include custom-property('display-03', map-get($theme, 'display-03'));
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
@if should-emit(
|
|
2821
|
+
$theme,
|
|
2822
|
+
$parent-carbon-theme,
|
|
2823
|
+
'display-04',
|
|
2824
|
+
$emit-difference
|
|
2825
|
+
)
|
|
2826
|
+
{
|
|
2827
|
+
@include custom-property('display-04', map-get($theme, 'display-04'));
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
@if should-emit(
|
|
2831
|
+
$theme,
|
|
2832
|
+
$parent-carbon-theme,
|
|
2833
|
+
'spacing-01',
|
|
2834
|
+
$emit-difference
|
|
2835
|
+
)
|
|
2836
|
+
{
|
|
2837
|
+
@include custom-property('spacing-01', map-get($theme, 'spacing-01'));
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
@if should-emit(
|
|
2841
|
+
$theme,
|
|
2842
|
+
$parent-carbon-theme,
|
|
2843
|
+
'spacing-02',
|
|
2844
|
+
$emit-difference
|
|
2845
|
+
)
|
|
2846
|
+
{
|
|
2847
|
+
@include custom-property('spacing-02', map-get($theme, 'spacing-02'));
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
@if should-emit(
|
|
2851
|
+
$theme,
|
|
2852
|
+
$parent-carbon-theme,
|
|
2853
|
+
'spacing-03',
|
|
2854
|
+
$emit-difference
|
|
2855
|
+
)
|
|
2856
|
+
{
|
|
2857
|
+
@include custom-property('spacing-03', map-get($theme, 'spacing-03'));
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
@if should-emit(
|
|
2861
|
+
$theme,
|
|
2862
|
+
$parent-carbon-theme,
|
|
2863
|
+
'spacing-04',
|
|
2864
|
+
$emit-difference
|
|
2865
|
+
)
|
|
2866
|
+
{
|
|
2867
|
+
@include custom-property('spacing-04', map-get($theme, 'spacing-04'));
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
@if should-emit(
|
|
2871
|
+
$theme,
|
|
2872
|
+
$parent-carbon-theme,
|
|
2873
|
+
'spacing-05',
|
|
2874
|
+
$emit-difference
|
|
2875
|
+
)
|
|
2876
|
+
{
|
|
2877
|
+
@include custom-property('spacing-05', map-get($theme, 'spacing-05'));
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
@if should-emit(
|
|
2881
|
+
$theme,
|
|
2882
|
+
$parent-carbon-theme,
|
|
2883
|
+
'spacing-06',
|
|
2884
|
+
$emit-difference
|
|
2885
|
+
)
|
|
2886
|
+
{
|
|
2887
|
+
@include custom-property('spacing-06', map-get($theme, 'spacing-06'));
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
@if should-emit(
|
|
2891
|
+
$theme,
|
|
2892
|
+
$parent-carbon-theme,
|
|
2893
|
+
'spacing-07',
|
|
2894
|
+
$emit-difference
|
|
2895
|
+
)
|
|
2896
|
+
{
|
|
2897
|
+
@include custom-property('spacing-07', map-get($theme, 'spacing-07'));
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
@if should-emit(
|
|
2901
|
+
$theme,
|
|
2902
|
+
$parent-carbon-theme,
|
|
2903
|
+
'spacing-08',
|
|
2904
|
+
$emit-difference
|
|
2905
|
+
)
|
|
2906
|
+
{
|
|
2907
|
+
@include custom-property('spacing-08', map-get($theme, 'spacing-08'));
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
@if should-emit(
|
|
2911
|
+
$theme,
|
|
2912
|
+
$parent-carbon-theme,
|
|
2913
|
+
'spacing-09',
|
|
2914
|
+
$emit-difference
|
|
2915
|
+
)
|
|
2916
|
+
{
|
|
2917
|
+
@include custom-property('spacing-09', map-get($theme, 'spacing-09'));
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
@if should-emit(
|
|
2921
|
+
$theme,
|
|
2922
|
+
$parent-carbon-theme,
|
|
2923
|
+
'spacing-10',
|
|
2924
|
+
$emit-difference
|
|
2925
|
+
)
|
|
2926
|
+
{
|
|
2927
|
+
@include custom-property('spacing-10', map-get($theme, 'spacing-10'));
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
@if should-emit(
|
|
2931
|
+
$theme,
|
|
2932
|
+
$parent-carbon-theme,
|
|
2933
|
+
'spacing-11',
|
|
2934
|
+
$emit-difference
|
|
2935
|
+
)
|
|
2936
|
+
{
|
|
2937
|
+
@include custom-property('spacing-11', map-get($theme, 'spacing-11'));
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
@if should-emit(
|
|
2941
|
+
$theme,
|
|
2942
|
+
$parent-carbon-theme,
|
|
2943
|
+
'spacing-12',
|
|
2944
|
+
$emit-difference
|
|
2945
|
+
)
|
|
2946
|
+
{
|
|
2947
|
+
@include custom-property('spacing-12', map-get($theme, 'spacing-12'));
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
@if should-emit(
|
|
2951
|
+
$theme,
|
|
2952
|
+
$parent-carbon-theme,
|
|
2953
|
+
'spacing-13',
|
|
2954
|
+
$emit-difference
|
|
2955
|
+
)
|
|
2956
|
+
{
|
|
2957
|
+
@include custom-property('spacing-13', map-get($theme, 'spacing-13'));
|
|
1683
2958
|
}
|
|
1684
2959
|
|
|
1685
2960
|
@if should-emit(
|