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