lightning-base-components 1.16.3-alpha → 1.16.5-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/README.md +7 -0
  2. package/metadata/raptor.json +110 -0
  3. package/package.json +59 -2
  4. package/scopedImports/@salesforce-label-LightningForm.cancel.js +1 -0
  5. package/scopedImports/@salesforce-label-LightningForm.closeError.js +1 -0
  6. package/scopedImports/@salesforce-label-LightningForm.edit.js +1 -0
  7. package/scopedImports/@salesforce-label-LightningForm.editErrorHelp.js +1 -0
  8. package/scopedImports/@salesforce-label-LightningForm.error.js +1 -0
  9. package/scopedImports/@salesforce-label-LightningForm.errorPopoverHeading.js +1 -0
  10. package/scopedImports/@salesforce-label-LightningForm.preview.js +1 -0
  11. package/scopedImports/@salesforce-label-LightningForm.previewHeader.js +1 -0
  12. package/scopedImports/@salesforce-label-LightningForm.reload.js +1 -0
  13. package/scopedImports/@salesforce-label-LightningForm.save.js +1 -0
  14. package/scopedImports/@salesforce-label-LightningForm.saveFieldErrorSummary.js +1 -0
  15. package/scopedImports/@salesforce-label-LightningForm.undo.js +1 -0
  16. package/scopedImports/@salesforce-label-LightningLookup.messageWhenMissingInformation.js +1 -0
  17. package/src/lightning/button/__docs__/button.md +13 -0
  18. package/src/lightning/button/button.slds.css +155 -11
  19. package/src/lightning/buttonGroup/button-group.slds.css +35 -59
  20. package/src/lightning/buttonIcon/button-icon.slds.css +287 -122
  21. package/src/lightning/buttonIconStateful/button-icon-stateful.slds.css +224 -39
  22. package/src/lightning/buttonStateful/button-stateful.slds.css +3269 -0
  23. package/src/lightning/card/card.slds.css +50 -0
  24. package/src/lightning/colorPickerCustom/color-picker-custom.slds.css +180 -364
  25. package/src/lightning/colorPickerPanel/color-picker-panel.slds.css +46 -413
  26. package/src/lightning/datatable/datatable.js +2 -2
  27. package/src/lightning/datatable/rowSelection.js +21 -4
  28. package/src/lightning/datetimepicker/datetimepicker.html +1 -3
  29. package/src/lightning/datetimepicker/datetimepicker.js +5 -0
  30. package/src/lightning/fileDownload/__docs__/fileDownload.md +41 -0
  31. package/src/lightning/helptext/help-text.slds.css +184 -39
  32. package/src/lightning/icon/icon.slds.css +823 -3
  33. package/src/lightning/input/input-checkbox.slds.css +291 -32
  34. package/src/lightning/input/input-text.slds.css +70 -7
  35. package/src/lightning/inputAddress/__docs__/inputAddress.md +1 -1
  36. package/src/lightning/inputAddress/inputAddress.js +2 -1
  37. package/src/lightning/internationalizationLibrary/datetime/intlFormat.js +20 -2
  38. package/src/lightning/iso8601Utils/iso8601Utils.js +2 -3
  39. package/src/lightning/mediaUtils/__docs__/mediaUtils.md +87 -0
  40. package/src/lightning/mediaUtils/mediaUtils.js +321 -0
  41. package/src/lightning/mediaUtils/mediaUtils.js-meta.xml +6 -0
  42. package/src/lightning/modal/__docs__/migration.md +158 -0
  43. package/src/lightning/modal/__docs__/modal.md +414 -0
  44. package/src/lightning/modal/__examples__disabled/all/all.css +7 -0
  45. package/src/lightning/modal/__examples__disabled/all/all.html +9 -0
  46. package/src/lightning/modal/__examples__disabled/all/all.js +25 -0
  47. package/src/lightning/modal/__examples__disabled/allform/allform.css +7 -0
  48. package/src/lightning/modal/__examples__disabled/allform/allform.html +9 -0
  49. package/src/lightning/modal/__examples__disabled/allform/allform.js +49 -0
  50. package/src/lightning/modal/__examples__disabled/allmulti/allmulti.html +24 -0
  51. package/src/lightning/modal/__examples__disabled/allmulti/allmulti.js +12 -0
  52. package/src/lightning/modal/__examples__disabled/basic/basic.css +7 -0
  53. package/src/lightning/modal/__examples__disabled/basic/basic.html +9 -0
  54. package/src/lightning/modal/__examples__disabled/basic/basic.js +27 -0
  55. package/src/lightning/modal/__examples__disabled/demo/demo.html +15 -0
  56. package/src/lightning/modal/__examples__disabled/demo/demo.js +13 -0
  57. package/src/lightning/modal/__examples__disabled/demoall/demoall.html +26 -0
  58. package/src/lightning/modal/__examples__disabled/demoall/demoall.js +13 -0
  59. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.css +3 -0
  60. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.html +146 -0
  61. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.js +240 -0
  62. package/src/lightning/modal/__examples__disabled/demofootless/demofootless.html +17 -0
  63. package/src/lightning/modal/__examples__disabled/demofootless/demofootless.js +11 -0
  64. package/src/lightning/modal/__examples__disabled/demoheadless/demoheadless.html +20 -0
  65. package/src/lightning/modal/__examples__disabled/demoheadless/demoheadless.js +12 -0
  66. package/src/lightning/modal/__examples__disabled/footless/footless.css +7 -0
  67. package/src/lightning/modal/__examples__disabled/footless/footless.html +9 -0
  68. package/src/lightning/modal/__examples__disabled/footless/footless.js +19 -0
  69. package/src/lightning/modal/__examples__disabled/headless/headless.css +7 -0
  70. package/src/lightning/modal/__examples__disabled/headless/headless.html +9 -0
  71. package/src/lightning/modal/__examples__disabled/headless/headless.js +27 -0
  72. package/src/lightning/modal/modal.html +3 -0
  73. package/src/lightning/modal/modal.js +93 -0
  74. package/src/lightning/modal/modal.js-meta.xml +6 -0
  75. package/src/lightning/modalBody/__docs__/modalBody.md +61 -0
  76. package/src/lightning/modalBody/modalBody.html +13 -0
  77. package/src/lightning/modalBody/modalBody.js +203 -0
  78. package/src/lightning/modalBody/modalBody.js-meta.xml +6 -0
  79. package/src/lightning/modalFooter/__docs__/modalFooter.md +72 -0
  80. package/src/lightning/modalFooter/modalFooter.html +8 -0
  81. package/src/lightning/modalFooter/modalFooter.js +161 -0
  82. package/src/lightning/modalFooter/modalFooter.js-meta.xml +6 -0
  83. package/src/lightning/modalHeader/__docs__/modalHeader.md +64 -0
  84. package/src/lightning/modalHeader/modalHeader.html +16 -0
  85. package/src/lightning/modalHeader/modalHeader.js +204 -0
  86. package/src/lightning/modalHeader/modalHeader.js-meta.xml +6 -0
  87. package/src/lightning/primitiveBubble/tooltip.slds.css +45 -1
  88. package/src/lightning/primitiveCellFactory/primitiveCellFactory.js +4 -12
  89. package/src/lightning/primitiveColorpickerButton/color-picker-button.slds.css +2994 -319
  90. package/src/lightning/primitiveDatatableIeditPanel/primitiveDatatableIeditPanel.html +14 -11
  91. package/src/lightning/primitiveDatatableIeditPanel/primitiveDatatableIeditPanel.js +1 -0
  92. package/src/lightning/primitiveIcon/icon.slds.css +823 -3
  93. package/src/lightning/progressStep/base.html +1 -0
  94. package/src/lightning/progressStep/path.html +1 -1
  95. package/src/lightning/radioGroup/input-radio-group.slds.css +168 -379
  96. package/src/lightning/spinner/spinner.slds.css +8 -2
  97. package/src/lightning/timepicker/timepicker.html +1 -4
  98. package/src/lightning/timepicker/timepicker.js +9 -5
  99. package/src/lightning/treeGrid/treeGrid.js +66 -1
  100. package/src/lightning/utilsPrivate/linkUtils.js +1 -1
  101. package/src/lightning/formattedAddress/__component__/formattedAddress.spec.js +0 -61
  102. package/src/lightning/formattedAddress/__component__/formattedAddressDisabled.spec.js +0 -20
  103. package/src/lightning/formattedAddress/__component__/x/basic/basic.html +0 -10
  104. package/src/lightning/formattedAddress/__component__/x/basic/basic.js +0 -17
  105. package/src/lightning/input/__component__/inputCheckbox.spec.js +0 -60
  106. package/src/lightning/input/__component__/inputDateTimePicker.spec.js +0 -60
  107. package/src/lightning/input/__component__/inputNumber.spec.js +0 -75
  108. package/src/lightning/input/__component__/inputSelection.spec.js +0 -83
  109. package/src/lightning/input/__component__/x/tall/tall.css +0 -5
  110. package/src/lightning/input/__component__/x/tall/tall.html +0 -5
  111. package/src/lightning/input/__component__/x/tall/tall.js +0 -7
@@ -1,450 +1,3125 @@
1
1
  /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
2
- Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
2
+ Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
3
+
4
+ :host([data-render-mode="shadow"]) {
5
+ /**
6
+ * Establish independent formatting context, we don't want ancestor rules affecting our layout.
7
+ * This assumes there will not be a direct, child inline-level element.
8
+ * See https://www.w3.org/TR/css-display-3/#establish-an-independent-formatting-context
9
+ */
10
+ display: inline-flex;
11
+ }
12
+
13
+ :host([data-render-mode="shadow"]) [part~='boundary'] {
14
+ padding-block-start: var(--sds-c-icon-spacing-block-start, var(--sds-c-icon-spacing));
15
+ padding-block-end: var(--sds-c-icon-spacing-block-end, var(--sds-c-icon-spacing));
16
+ padding-inline-start: var(--sds-c-icon-spacing-inline-start, var(--sds-c-icon-spacing));
17
+ padding-inline-end: var(--sds-c-icon-spacing-inline-end, var(--sds-c-icon-spacing));
18
+ border-radius: var(--sds-c-icon-radius-border);
19
+ border-width: var(--sds-c-icon-sizing-border, 1px);
20
+ border-style: solid;
21
+ border-color: var(--sds-c-icon-color-border, transparent);
22
+ background-color: var(--sds-c-icon-color-background);
23
+ }
3
24
 
4
- /* Document
5
- * --------------------- */
25
+ :host([data-render-mode="shadow"]) [part~='icon'] {
26
+ display: flex; /* See line #5 */
27
+ height: var(--sds-c-icon-sizing-height, var(--sds-c-icon-sizing));
28
+ width: var(--sds-c-icon-sizing-width, var(--sds-c-icon-sizing));
29
+ color: var(--sds-c-icon-color-foreground);
30
+ }
6
31
 
7
32
  /**
8
- * Normalize box sizing to border box for all browsers.
33
+ * Normalize svgs and control width/height with Styling Hooks
9
34
  */
10
35
 
11
- *,
12
- ::before,
13
- ::after {
14
- box-sizing: border-box;
36
+ :host([data-render-mode="shadow"]) svg {
37
+ width: 100%;
38
+ height: 100%;
15
39
  }
16
40
 
17
- /* Grouping Content
18
- * --------------------- */
41
+ :host([data-render-mode="shadow"][icon-name='standard\:contact']) {
42
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
43
+ }
19
44
 
20
- /**
21
- * Add the correct display in IE.
22
- */
45
+ :host([data-render-mode="shadow"][icon-name='standard\:multi_select_checkbox']) {
46
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
47
+ }
23
48
 
24
- main {
25
- display: block;
49
+ :host([data-render-mode="shadow"][icon-name='standard\:work_order']) {
50
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 227, 194));
26
51
  }
27
52
 
28
- /**
29
- * 1. Remove the margin in all browsers.
30
- * 2. Remove the padding in all browsers.
31
- * 3. Normalize font sizes in all browsers.
32
- * 4. Normalize font weight in all browsers.
33
- */
53
+ :host([data-render-mode="shadow"][icon-name='standard\:post']) {
54
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
55
+ }
34
56
 
35
- h1,
36
- h2,
37
- h3,
38
- h4,
39
- h5,
40
- h6 {
41
- font-size: 0.875rem; /* 3 */
42
- font-weight: normal; /* 4 */
43
- margin: 0; /* 1 */
44
- padding: 0; /* 2 */
57
+ :host([data-render-mode="shadow"][icon-name='standard\:global_constant']) {
58
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
45
59
  }
46
60
 
47
- /**
48
- * Remove the margin in all browsers.
49
- */
61
+ :host([data-render-mode="shadow"][icon-name='standard\:change_request']) {
62
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(11, 130, 124));
63
+ }
50
64
 
51
- p {
52
- margin: 0;
65
+ :host([data-render-mode="shadow"][icon-name='standard\:carousel']) {
66
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
53
67
  }
54
68
 
55
- /**
56
- * 1. Remove the margin in all browsers.
57
- * 2. Normalize border styles in all browsers.
58
- */
69
+ :host([data-render-mode="shadow"][icon-name='standard\:work_contract']) {
70
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
71
+ }
59
72
 
60
- hr {
61
- margin: 0; /* 1 */
62
- border: 0; /* 2 */
63
- border-top-width: 1px; /* 2 */
64
- border-style: solid; /* 2 */
65
- border-color: inherit; /* 2 */
73
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_skill']) {
74
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
66
75
  }
67
76
 
68
- /**
69
- * 1. Remove the margin in all browsers.
70
- * 2. Remove the padding in all browsers.
71
- * 3. Remove the list-style in all browsers, sub-system dependant.
72
- */
77
+ :host([data-render-mode="shadow"][icon-name='standard\:system_and_global_variable']) {
78
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
79
+ }
73
80
 
74
- ol,
75
- ul {
76
- list-style: none; /* 3 */
77
- padding: 0; /* 2 */
78
- margin: 0; /* 1 */
81
+ :host([data-render-mode="shadow"][icon-name='standard\:segments']) {
82
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
79
83
  }
80
84
 
81
- /**
82
- * Remove the margin in all browsers.
83
- */
85
+ :host([data-render-mode="shadow"][icon-name='standard\:account_info']) {
86
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
87
+ }
84
88
 
85
- dl,
86
- dt,
87
- dd {
88
- margin: 0;
89
+ :host([data-render-mode="shadow"][icon-name='standard\:goals']) {
90
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
89
91
  }
90
92
 
91
- /* Form Controls
92
- * --------------------- */
93
+ :host([data-render-mode="shadow"][icon-name='standard\:tour_check']) {
94
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
95
+ }
93
96
 
94
- /**
95
- * Remove the margin in all browsers.
96
- */
97
+ :host([data-render-mode="shadow"][icon-name='standard\:adjust_value']) {
98
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 180, 108));
99
+ }
97
100
 
98
- form {
99
- margin: 0;
101
+ :host([data-render-mode="shadow"][icon-name='standard\:case_wrap_up']) {
102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
100
103
  }
101
104
 
102
- /**
103
- * 1. Correct font properties not being inherited.
104
- * 2. Remove the margin in Firefox and Safari.
105
- * 3. Fix correct color not being inherited.
106
- */
105
+ :host([data-render-mode="shadow"][icon-name='standard\:investment_account']) {
106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
107
+ }
107
108
 
108
- button,
109
- input,
110
- optgroup,
111
- select,
112
- textarea {
113
- font: inherit; /* 1 */
114
- margin: 0; /* 2 */
115
- color: inherit; /* 3 */
109
+ :host([data-render-mode="shadow"][icon-name='standard\:store']) {
110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
116
111
  }
117
112
 
118
- /**
119
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
120
- */
113
+ :host([data-render-mode="shadow"][icon-name='standard\:slider']) {
114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
115
+ }
121
116
 
122
- button,
123
- select {
124
- text-transform: none;
117
+ :host([data-render-mode="shadow"][icon-name='standard\:output']) {
118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
125
119
  }
126
120
 
127
- /**
128
- * 1. Correct inability to style clickable `input` types in iOS.
129
- * 2. Normalizes cursor indicator on clickable elements.
130
- */
121
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_ingredient']) {
122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
123
+ }
131
124
 
132
- button,:host([data-render-mode="shadow"])
133
- [type='button'],:host([data-render-mode="shadow"])
134
- [type='reset'],:host([data-render-mode="shadow"])
135
- [type='submit'] {
136
- -webkit-appearance: button; /* 1 */
137
- appearance: button; /* 1 */
138
- cursor: pointer; /* 2 */
125
+ :host([data-render-mode="shadow"][icon-name='standard\:store_group']) {
126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
139
127
  }
140
128
 
141
- /**
142
- * Prevent option or optgroup to increase the width of a select.
143
- */
129
+ :host([data-render-mode="shadow"][icon-name='standard\:all']) {
130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
131
+ }
144
132
 
145
- select {
146
- max-width: 100%;
133
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_policy']) {
134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
147
135
  }
148
136
 
149
- /**
150
- * Correct the outline style in Safari.
151
- */
137
+ :host([data-render-mode="shadow"][icon-name='standard\:picklist_choice']) {
138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
139
+ }
152
140
 
153
- input:focus,
154
- button:focus,
155
- select:focus,
156
- textarea:focus {
157
- outline-offset: 0;
141
+ :host([data-render-mode="shadow"][icon-name='standard\:choice']) {
142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
158
143
  }
159
144
 
160
- /**
161
- * Remove the inner border and padding in Firefox.
162
- */
145
+ :host([data-render-mode="shadow"][icon-name='standard\:app']) {
146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
147
+ }
163
148
 
164
- ::-moz-focus-inner {
165
- border-style: none;
166
- padding: 0;
149
+ :host([data-render-mode="shadow"][icon-name='standard\:default']) {
150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
167
151
  }
168
152
 
169
- /**
170
- * 1. Correct the text wrapping in Edge 18- and IE.
171
- * 2. Correct the color inheritance from `fieldset` elements in IE.
172
- * 3. Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
173
- */
153
+ :host([data-render-mode="shadow"][icon-name='standard\:case_milestone']) {
154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
155
+ }
174
156
 
175
- legend {
176
- color: inherit; /* 2 */
177
- display: table; /* 1 */
178
- max-width: 100%; /* 1 */
179
- white-space: normal; /* 1 */
180
- padding: 0; /* 3 */
157
+ :host([data-render-mode="shadow"][icon-name='standard\:today']) {
158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
181
159
  }
182
160
 
183
- /**
184
- * Add the correct vertical alignment in Chrome and Firefox.
185
- */
161
+ :host([data-render-mode="shadow"][icon-name='standard\:buyer_account']) {
162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
163
+ }
186
164
 
187
- progress {
188
- vertical-align: baseline;
165
+ :host([data-render-mode="shadow"][icon-name='standard\:lead_list']) {
166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
189
167
  }
190
168
 
191
- /**
192
- * Correct the cursor style of increment and decrement buttons in Safari.
193
- */
169
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_template']) {
170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
171
+ }
194
172
 
195
- ::-webkit-inner-spin-button,
196
- ::-webkit-outer-spin-button {
197
- height: auto;
173
+ :host([data-render-mode="shadow"][icon-name='standard\:tableau']) {
174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(15, 30, 60));
198
175
  }
199
176
 
200
- /**
201
- * 1. Correct the odd appearance in Chrome and Safari.
202
- * 2. Correct the outline style in Safari.
203
- */
177
+ :host([data-render-mode="shadow"][icon-name='standard\:shift']) {
178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
179
+ }
204
180
 
205
- :host([data-render-mode="shadow"]) [type='search'] {
206
- -webkit-appearance: textfield; /* 1 */
207
- outline-offset: -2px; /* 2 */
181
+ :host([data-render-mode="shadow"][icon-name='standard\:product_item_transaction']) {
182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
208
183
  }
209
184
 
210
- /**
211
- * Remove the inner padding in Chrome and Safari on macOS.
212
- */
185
+ :host([data-render-mode="shadow"][icon-name='standard\:person_language']) {
186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
187
+ }
213
188
 
214
- ::-webkit-search-decoration {
215
- -webkit-appearance: none;
189
+ :host([data-render-mode="shadow"][icon-name='standard\:apex']) {
190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
216
191
  }
217
192
 
218
- /**
219
- * 1. Correct the inability to style clickable types in iOS and Safari.
220
- * 2. Change font properties to 'inherit' in Safari.
221
- */
193
+ :host([data-render-mode="shadow"][icon-name='standard\:reply_text']) {
194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 101));
195
+ }
222
196
 
223
- ::-webkit-file-upload-button {
224
- -webkit-appearance: button; /* 1 */
225
- font: inherit; /* 2 */
197
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_private']) {
198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
226
199
  }
227
200
 
228
- /**
229
- * Restore the focus styles unset by the previous rule.
230
- */
201
+ :host([data-render-mode="shadow"][icon-name='standard\:immunization']) {
202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
203
+ }
231
204
 
232
- :-moz-focusring {
233
- outline: 1px dotted ButtonText;
205
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_downtime_period']) {
206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
234
207
  }
235
208
 
236
- /**
237
- * Remove the additional ':invalid' styles in Firefox.
238
- * See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
239
- */
209
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity_contact role']) {
210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
211
+ }
240
212
 
241
- :-moz-ui-invalid {
242
- box-shadow: none;
213
+ :host([data-render-mode="shadow"][icon-name='standard\:retail_banking_console']) {
214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
243
215
  }
244
216
 
245
- /* Text-level semantics
246
- * --------------------- */
217
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_members']) {
218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
219
+ }
247
220
 
248
- /**
249
- * Normalizes cursor indicator on clickable elements.
250
- */
221
+ :host([data-render-mode="shadow"][icon-name='standard\:apps_admin']) {
222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
223
+ }
251
224
 
252
- a {
253
- cursor: pointer;
225
+ :host([data-render-mode="shadow"][icon-name='standard\:datadotcom']) {
226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
254
227
  }
255
228
 
256
- /**
257
- * Add the correct text decoration in Chrome, Edge, and Safari.
258
- */
229
+ :host([data-render-mode="shadow"][icon-name='standard\:settings']) {
230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
231
+ }
259
232
 
260
- abbr[title] {
261
- text-decoration: underline dotted;
262
- cursor: help;
233
+ :host([data-render-mode="shadow"][icon-name='standard\:network_contract']) {
234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
263
235
  }
264
236
 
265
- /**
266
- * Add the correct font weight in Edge and Safari.
267
- */
237
+ :host([data-render-mode="shadow"][icon-name='standard\:product_item']) {
238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 217));
239
+ }
268
240
 
269
- b,
270
- strong {
271
- font-weight: bolder;
241
+ :host([data-render-mode="shadow"][icon-name='standard\:metrics']) {
242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
272
243
  }
273
244
 
274
- /**
275
- * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
276
- * 2. Correct the odd 'em' font sizing in all browsers.
277
- * 3. Remove the margin in all browsers.
278
- */
245
+ :host([data-render-mode="shadow"][icon-name='standard\:topic2']) {
246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 208));
247
+ }
279
248
 
280
- code,
281
- kbd,
282
- samp,
283
- pre {
284
- font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; /* 1 */
285
- font-size: 1em; /* 2 */
286
- margin: 0; /* 3 */
249
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_allocation']) {
250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
287
251
  }
288
252
 
289
- /**
290
- * Prevent overflow of the container in all browsers
291
- */
253
+ :host([data-render-mode="shadow"][icon-name='standard\:care_request_reviewer']) {
254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
255
+ }
292
256
 
293
- pre {
294
- overflow: auto;
295
- -ms-overflow-style: scrollbar;
257
+ :host([data-render-mode="shadow"][icon-name='standard\:approval']) {
258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 204, 122));
296
259
  }
297
260
 
298
- /**
299
- * Add the correct font size in all browsers.
300
- */
261
+ :host([data-render-mode="shadow"][icon-name='standard\:work_queue']) {
262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
263
+ }
301
264
 
302
- small {
303
- font-size: 80%;
265
+ :host([data-render-mode="shadow"][icon-name='standard\:iot_orchestrations']) {
266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
304
267
  }
305
268
 
306
- /**
307
- * Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
308
- */
269
+ :host([data-render-mode="shadow"][icon-name='standard\:visualforce_page']) {
270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
271
+ }
309
272
 
310
- sub,
311
- sup {
312
- font-size: 75%;
313
- line-height: 0;
314
- position: relative;
315
- vertical-align: baseline;
273
+ :host([data-render-mode="shadow"][icon-name='standard\:person_account']) {
274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
316
275
  }
317
276
 
318
- sub {
319
- bottom: -0.25em;
277
+ :host([data-render-mode="shadow"][icon-name='standard\:entity']) {
278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
320
279
  }
321
280
 
322
- sup {
323
- top: -0.5em;
281
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_location']) {
282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
324
283
  }
325
284
 
326
- /* Embedded content
327
- * --------------------- */
285
+ :host([data-render-mode="shadow"][icon-name='standard\:qualifications']) {
286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
287
+ }
328
288
 
329
- /**
330
- * Change the alignment on media elements in all browsers.
331
- */
289
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_policy']) {
290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
291
+ }
332
292
 
333
- audio,
334
- canvas,
335
- iframe,
336
- img,
337
- svg,
338
- video {
339
- vertical-align: middle;
293
+ :host([data-render-mode="shadow"][icon-name='standard\:form']) {
294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
340
295
  }
341
296
 
342
- /**
343
- * Make images responsive by default.
344
- */
297
+ :host([data-render-mode="shadow"][icon-name='standard\:products']) {
298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
299
+ }
345
300
 
346
- img,:host([data-render-mode="shadow"])
347
- [type='image'] {
348
- max-width: 100%;
349
- height: auto;
301
+ :host([data-render-mode="shadow"][icon-name='standard\:order_item']) {
302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 211));
350
303
  }
351
304
 
352
- /**
353
- * Remove the border on iframes in all browsers.
354
- */
305
+ :host([data-render-mode="shadow"][icon-name='standard\:read_receipts']) {
306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
307
+ }
355
308
 
356
- iframe {
357
- border-style: none;
309
+ :host([data-render-mode="shadow"][icon-name='standard\:javascript_button']) {
310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
358
311
  }
359
312
 
360
- /**
361
- * Change the fill color to match the text color in all browsers.
362
- */
313
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_asset']) {
314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
315
+ }
363
316
 
364
- svg:not([fill]) {
365
- fill: currentColor;
317
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_rule']) {
318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
366
319
  }
367
320
 
368
- /* Tabular data
369
- * --------------------- */
321
+ :host([data-render-mode="shadow"][icon-name='standard\:loop']) {
322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
323
+ }
370
324
 
371
- /**
372
- * 1. Remove text indentation from table contents in Chrome and Safari. [Chromium Bug 999088](https://bugs.chromium.org/p/chromium/issues/detail?id=999088), [Webkit Bug 201297](https://bugs.webkit.org/show_bug.cgi?id=201297)
373
- * 2. Correct table border color inheritance in all Chrome and Safari. [Chromium Bug 935729](https://bugs.chromium.org/p/chromium/issues/detail?id=935729), [Webkit Bug 195016](https://bugs.webkit.org/show_bug.cgi?id=195016)
374
- * 3. Collapse border spacing in all browsers
375
- */
325
+ :host([data-render-mode="shadow"][icon-name='standard\:portal_roles_and_subordinates']) {
326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
327
+ }
376
328
 
377
- table {
378
- text-indent: 0; /* 1 */
379
- border-color: inherit; /* 2 */
380
- border-collapse: collapse; /* 3 */
329
+ :host([data-render-mode="shadow"][icon-name='standard\:work_capacity_limit']) {
330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
381
331
  }
382
332
 
383
- /* Shadow host
384
- * --------------------- */
333
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_organization']) {
334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
335
+ }
385
336
 
386
- /**
387
- * 1. Change the line height in all browsers
388
- * 2. Change the base font size in all browsers, inherit 100% from `html`
389
- * 3. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS
390
- * 4. Remove the grey highlight on links in iOS
391
- * 5. Font Stack:
392
- * a. Safari for OS X and iOS (San Francisco)
393
- * b. Chrome < 56 for OS X (San Francisco)
394
- * c. Windows
395
- * d. Android
396
- * e. Web Fallback
397
- * f. Emoji font stack [Mac, Windows, Linux]
398
- */
337
+ :host([data-render-mode="shadow"][icon-name='standard\:workforce_engagement']) {
338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(157, 56, 86));
339
+ }
399
340
 
400
- :host([data-render-mode="shadow"]) {
401
- line-height: 1.5;
402
- font-size: 0.875rem;
403
- -webkit-tap-highlight-color: transparent;
404
- -ms-text-size-adjust: 100%;
405
- -webkit-text-size-adjust: 100%;
406
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif,
407
- 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
341
+ :host([data-render-mode="shadow"][icon-name='standard\:constant']) {
342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
408
343
  }
409
344
 
410
- /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
411
- Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
345
+ :host([data-render-mode="shadow"][icon-name='standard\:marketing_actions']) {
346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
347
+ }
412
348
 
413
- :host([data-render-mode="shadow"]) {
414
- /**
415
- * Establish independent formatting context, we don't want ancestor rules affecting our layout.
416
- * This assumes there will not be a direct, child inline-level element.
417
- * See https://www.w3.org/TR/css-display-3/#establish-an-independent-formatting-context
418
- */
419
- display: inline-flex;
349
+ :host([data-render-mode="shadow"][icon-name='standard\:case_transcript']) {
350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
420
351
  }
421
352
 
422
- :host([data-render-mode="shadow"]) [part~='boundary'] {
423
- padding-block-start: var(--sds-c-icon-spacing-block-start, var(--sds-c-icon-spacing));
424
- padding-block-end: var(--sds-c-icon-spacing-block-end, var(--sds-c-icon-spacing));
425
- padding-inline-start: var(--sds-c-icon-spacing-inline-start, var(--sds-c-icon-spacing));
426
- padding-inline-end: var(--sds-c-icon-spacing-inline-end, var(--sds-c-icon-spacing));
427
- border-radius: var(--sds-c-icon-radius-border);
428
- border-width: var(--sds-c-icon-sizing-border, 1px);
429
- border-style: solid;
430
- border-color: var(--sds-c-icon-color-border, transparent);
431
- background-color: var(--sds-c-icon-color-background);
353
+ :host([data-render-mode="shadow"][icon-name='standard\:timesheet_entry']) {
354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
432
355
  }
433
356
 
434
- :host([data-render-mode="shadow"]) [part~='icon'] {
435
- display: flex; /* See line #5 */
436
- height: var(--sds-c-icon-sizing-height, var(--sds-c-icon-sizing));
437
- width: var(--sds-c-icon-sizing-width, var(--sds-c-icon-sizing));
438
- color: var(--sds-c-icon-color-foreground);
357
+ :host([data-render-mode="shadow"][icon-name='standard\:key_dates']) {
358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
439
359
  }
440
360
 
441
- /**
442
- * Normalize svgs and control width/height with Styling Hooks
443
- */
361
+ :host([data-render-mode="shadow"][icon-name='standard\:multi_picklist']) {
362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
363
+ }
444
364
 
445
- svg {
446
- width: 100%;
447
- height: 100%;
365
+ :host([data-render-mode="shadow"][icon-name='standard\:product_workspace']) {
366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
367
+ }
368
+
369
+ :host([data-render-mode="shadow"][icon-name='standard\:visit_templates']) {
370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
371
+ }
372
+
373
+ :host([data-render-mode="shadow"][icon-name='standard\:restriction_policy']) {
374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
375
+ }
376
+
377
+ :host([data-render-mode="shadow"][icon-name='standard\:task']) {
378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
379
+ }
380
+
381
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_best']) {
382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
383
+ }
384
+
385
+ :host([data-render-mode="shadow"][icon-name='standard\:attach']) {
386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
387
+ }
388
+
389
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_action']) {
390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
391
+ }
392
+
393
+ :host([data-render-mode="shadow"][icon-name='standard\:section']) {
394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
395
+ }
396
+
397
+ :host([data-render-mode="shadow"][icon-name='standard\:service_request']) {
398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
399
+ }
400
+
401
+ :host([data-render-mode="shadow"][icon-name='standard\:orders']) {
402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 217));
403
+ }
404
+
405
+ :host([data-render-mode="shadow"][icon-name='standard\:propagation_policy']) {
406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
407
+ }
408
+
409
+ :host([data-render-mode="shadow"][icon-name='standard\:budget']) {
410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
411
+ }
412
+
413
+ :host([data-render-mode="shadow"][icon-name='standard\:report_type']) {
414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 198, 90));
415
+ }
416
+
417
+ :host([data-render-mode="shadow"][icon-name='standard\:past_chat']) {
418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
419
+ }
420
+
421
+ :host([data-render-mode="shadow"][icon-name='standard\:feedback']) {
422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 161, 234));
423
+ }
424
+
425
+ :host([data-render-mode="shadow"][icon-name='standard\:action_list_component']) {
426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(88, 118, 163));
427
+ }
428
+
429
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity_splits']) {
430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
431
+ }
432
+
433
+ :host([data-render-mode="shadow"][icon-name='standard\:location_permit']) {
434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
435
+ }
436
+
437
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_user']) {
438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
439
+ }
440
+
441
+ :host([data-render-mode="shadow"][icon-name='standard\:filter_criteria']) {
442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
443
+ }
444
+
445
+ :host([data-render-mode="shadow"][icon-name='standard\:trailhead']) {
446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 46, 97));
447
+ }
448
+
449
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlements']) {
450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
451
+ }
452
+
453
+ :host([data-render-mode="shadow"][icon-name='standard\:checkout']) {
454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
455
+ }
456
+
457
+ :host([data-render-mode="shadow"][icon-name='standard\:formula']) {
458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
459
+ }
460
+
461
+ :host([data-render-mode="shadow"][icon-name='standard\:case_log_a_call']) {
462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
463
+ }
464
+
465
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_pattern_entry']) {
466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
467
+ }
468
+
469
+ :host([data-render-mode="shadow"][icon-name='standard\:thanks_loading']) {
470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
471
+ }
472
+
473
+ :host([data-render-mode="shadow"][icon-name='standard\:job_family']) {
474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
475
+ }
476
+
477
+ :host([data-render-mode="shadow"][icon-name='standard\:service_appointment_capacity_usage']) {
478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
479
+ }
480
+
481
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_levels']) {
482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
483
+ }
484
+
485
+ :host([data-render-mode="shadow"][icon-name='standard\:letterhead']) {
486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
487
+ }
488
+
489
+ :host([data-render-mode="shadow"][icon-name='standard\:promotions_workspace']) {
490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
491
+ }
492
+
493
+ :host([data-render-mode="shadow"][icon-name='standard\:email_chatter']) {
494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
495
+ }
496
+
497
+ :host([data-render-mode="shadow"][icon-name='standard\:document_reference']) {
498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
499
+ }
500
+
501
+ :host([data-render-mode="shadow"][icon-name='standard\:announcement']) {
502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
503
+ }
504
+
505
+ :host([data-render-mode="shadow"][icon-name='standard\:field_sales']) {
506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
507
+ }
508
+
509
+ :host([data-render-mode="shadow"][icon-name='standard\:bot']) {
510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 143));
511
+ }
512
+
513
+ :host([data-render-mode="shadow"][icon-name='standard\:macros']) {
514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
515
+ }
516
+
517
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard_ea']) {
518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
519
+ }
520
+
521
+ :host([data-render-mode="shadow"][icon-name='standard\:job_profile']) {
522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
523
+ }
524
+
525
+ :host([data-render-mode="shadow"][icon-name='standard\:steps']) {
526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
527
+ }
528
+
529
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_relationship']) {
530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
531
+ }
532
+
533
+ :host([data-render-mode="shadow"][icon-name='standard\:high_velocity_sales']) {
534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 201));
535
+ }
536
+
537
+ :host([data-render-mode="shadow"][icon-name='standard\:brand']) {
538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
539
+ }
540
+
541
+ :host([data-render-mode="shadow"][icon-name='standard\:historical_adherence']) {
542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 180, 167));
543
+ }
544
+
545
+ :host([data-render-mode="shadow"][icon-name='standard\:visits']) {
546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
547
+ }
548
+
549
+ :host([data-render-mode="shadow"][icon-name='standard\:einstein_replies']) {
550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 101));
551
+ }
552
+
553
+ :host([data-render-mode="shadow"][icon-name='standard\:coaching']) {
554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 117, 148));
555
+ }
556
+
557
+ :host([data-render-mode="shadow"][icon-name='standard\:record_lookup']) {
558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
559
+ }
560
+
561
+ :host([data-render-mode="shadow"][icon-name='standard\:product_service_campaign_item']) {
562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
563
+ }
564
+
565
+ :host([data-render-mode="shadow"][icon-name='standard\:scheduling_constraint']) {
566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
567
+ }
568
+
569
+ :host([data-render-mode="shadow"][icon-name='standard\:lightning_component']) {
570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
571
+ }
572
+
573
+ :host([data-render-mode="shadow"][icon-name='standard\:search']) {
574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
575
+ }
576
+
577
+ :host([data-render-mode="shadow"][icon-name='standard\:connected_apps']) {
578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
579
+ }
580
+
581
+ :host([data-render-mode="shadow"][icon-name='standard\:swarm_request']) {
582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 110, 140));
583
+ }
584
+
585
+ :host([data-render-mode="shadow"][icon-name='standard\:work_type_group']) {
586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
587
+ }
588
+
589
+ :host([data-render-mode="shadow"][icon-name='standard\:education']) {
590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
591
+ }
592
+
593
+ :host([data-render-mode="shadow"][icon-name='standard\:work_type']) {
594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
595
+ }
596
+
597
+ :host([data-render-mode="shadow"][icon-name='standard\:travel_mode']) {
598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
599
+ }
600
+
601
+ :host([data-render-mode="shadow"][icon-name='standard\:environment_hub']) {
602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
603
+ }
604
+
605
+ :host([data-render-mode="shadow"][icon-name='standard\:identifier']) {
606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
607
+ }
608
+
609
+ :host([data-render-mode="shadow"][icon-name='standard\:cms']) {
610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
611
+ }
612
+
613
+ :host([data-render-mode="shadow"][icon-name='standard\:call_coaching']) {
614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
615
+ }
616
+
617
+ :host([data-render-mode="shadow"][icon-name='standard\:salesforce_cms']) {
618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 223));
619
+ }
620
+
621
+ :host([data-render-mode="shadow"][icon-name='standard\:thanks']) {
622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
623
+ }
624
+
625
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_member']) {
626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
627
+ }
628
+
629
+ :host([data-render-mode="shadow"][icon-name='standard\:work_forecast']) {
630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
631
+ }
632
+
633
+ :host([data-render-mode="shadow"][icon-name='standard\:holiday_operating_hours']) {
634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
635
+ }
636
+
637
+ :host([data-render-mode="shadow"][icon-name='standard\:user_role']) {
638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(143, 201, 110));
639
+ }
640
+
641
+ :host([data-render-mode="shadow"][icon-name='standard\:observation_component']) {
642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
643
+ }
644
+
645
+ :host([data-render-mode="shadow"][icon-name='standard\:orchestrator']) {
646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 110, 179));
647
+ }
648
+
649
+ :host([data-render-mode="shadow"][icon-name='standard\:work_capacity_usage']) {
650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
651
+ }
652
+
653
+ :host([data-render-mode="shadow"][icon-name='standard\:record_create']) {
654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
655
+ }
656
+
657
+ :host([data-render-mode="shadow"][icon-name='standard\:campaign_members']) {
658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
659
+ }
660
+
661
+ :host([data-render-mode="shadow"][icon-name='standard\:retail_banking']) {
662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
663
+ }
664
+
665
+ :host([data-render-mode="shadow"][icon-name='standard\:product_service_campaign']) {
666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
667
+ }
668
+
669
+ :host([data-render-mode="shadow"][icon-name='standard\:portal_roles']) {
670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 137, 80));
671
+ }
672
+
673
+ :host([data-render-mode="shadow"][icon-name='standard\:calibration']) {
674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
675
+ }
676
+
677
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_public']) {
678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
679
+ }
680
+
681
+ :host([data-render-mode="shadow"][icon-name='standard\:display_text']) {
682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
683
+ }
684
+
685
+ :host([data-render-mode="shadow"][icon-name='standard\:product_consumed_state']) {
686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(6, 165, 154));
687
+ }
688
+
689
+ :host([data-render-mode="shadow"][icon-name='standard\:unmatched']) {
690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
691
+ }
692
+
693
+ :host([data-render-mode="shadow"][icon-name='standard\:partners']) {
694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
695
+ }
696
+
697
+ :host([data-render-mode="shadow"][icon-name='standard\:email_iq']) {
698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
699
+ }
700
+
701
+ :host([data-render-mode="shadow"][icon-name='standard\:service_crew']) {
702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
703
+ }
704
+
705
+ :host([data-render-mode="shadow"][icon-name='standard\:payment_gateway']) {
706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(11, 130, 124));
707
+ }
708
+
709
+ :host([data-render-mode="shadow"][icon-name='standard\:voice_call']) {
710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(48, 200, 90));
711
+ }
712
+
713
+ :host([data-render-mode="shadow"][icon-name='standard\:cancel_checkout']) {
714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
715
+ }
716
+
717
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_warranty']) {
718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
719
+ }
720
+
721
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_capacity']) {
722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
723
+ }
724
+
725
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_programs']) {
726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
727
+ }
728
+
729
+ :host([data-render-mode="shadow"][icon-name='standard\:quip']) {
730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(211, 69, 29));
731
+ }
732
+
733
+ :host([data-render-mode="shadow"][icon-name='standard\:quip_sheet']) {
734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(48, 200, 90));
735
+ }
736
+
737
+ :host([data-render-mode="shadow"][icon-name='standard\:timeslot']) {
738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 178, 76));
739
+ }
740
+
741
+ :host([data-render-mode="shadow"][icon-name='standard\:live_chat']) {
742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
743
+ }
744
+
745
+ :host([data-render-mode="shadow"][icon-name='standard\:service_request_detail']) {
746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
747
+ }
748
+
749
+ :host([data-render-mode="shadow"][icon-name='standard\:med_rec_statement_recommendation']) {
750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(128, 140, 222));
751
+ }
752
+
753
+ :host([data-render-mode="shadow"][icon-name='standard\:job_position']) {
754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
755
+ }
756
+
757
+ :host([data-render-mode="shadow"][icon-name='standard\:sobject_collection']) {
758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
759
+ }
760
+
761
+ :host([data-render-mode="shadow"][icon-name='standard\:user']) {
762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
763
+ }
764
+
765
+ :host([data-render-mode="shadow"][icon-name='standard\:client']) {
766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
767
+ }
768
+
769
+ :host([data-render-mode="shadow"][icon-name='standard\:screen']) {
770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
771
+ }
772
+
773
+ :host([data-render-mode="shadow"][icon-name='standard\:portal']) {
774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(174, 199, 112));
775
+ }
776
+
777
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_request']) {
778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
779
+ }
780
+
781
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_audit']) {
782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
783
+ }
784
+
785
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_preference']) {
786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
787
+ }
788
+
789
+ :host([data-render-mode="shadow"][icon-name='standard\:first_non_empty']) {
790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
791
+ }
792
+
793
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_360']) {
794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 46, 97));
795
+ }
796
+
797
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_job']) {
798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
799
+ }
800
+
801
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_absence']) {
802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
803
+ }
804
+
805
+ :host([data-render-mode="shadow"][icon-name='standard\:text_template']) {
806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
807
+ }
808
+
809
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_template']) {
810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
811
+ }
812
+
813
+ :host([data-render-mode="shadow"][icon-name='standard\:lightning_usage']) {
814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
815
+ }
816
+
817
+ :host([data-render-mode="shadow"][icon-name='standard\:product_transfer_state']) {
818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 115, 79));
819
+ }
820
+
821
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_dispense']) {
822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 150, 215));
823
+ }
824
+
825
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement']) {
826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
827
+ }
828
+
829
+ :host([data-render-mode="shadow"][icon-name='standard\:empty']) {
830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
831
+ }
832
+
833
+ :host([data-render-mode="shadow"][icon-name='standard\:text']) {
834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
835
+ }
836
+
837
+ :host([data-render-mode="shadow"][icon-name='standard\:delegated_account']) {
838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
839
+ }
840
+
841
+ :host([data-render-mode="shadow"][icon-name='standard\:fulfillment_order']) {
842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(185, 172, 145));
843
+ }
844
+
845
+ :host([data-render-mode="shadow"][icon-name='standard\:case_email']) {
846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
847
+ }
848
+
849
+ :host([data-render-mode="shadow"][icon-name='standard\:account']) {
850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
851
+ }
852
+
853
+ :host([data-render-mode="shadow"][icon-name='standard\:coupon_codes']) {
854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
855
+ }
856
+
857
+ :host([data-render-mode="shadow"][icon-name='standard\:assignment']) {
858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
859
+ }
860
+
861
+ :host([data-render-mode="shadow"][icon-name='standard\:wealth_management_console']) {
862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
863
+ }
864
+
865
+ :host([data-render-mode="shadow"][icon-name='standard\:task2']) {
866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
867
+ }
868
+
869
+ :host([data-render-mode="shadow"][icon-name='standard\:patient_medication_dosage']) {
870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
871
+ }
872
+
873
+ :host([data-render-mode="shadow"][icon-name='standard\:code_playground']) {
874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
875
+ }
876
+
877
+ :host([data-render-mode="shadow"][icon-name='standard\:social']) {
878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 116, 162));
879
+ }
880
+
881
+ :host([data-render-mode="shadow"][icon-name='standard\:endorsement']) {
882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
883
+ }
884
+
885
+ :host([data-render-mode="shadow"][icon-name='standard\:folder']) {
886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
887
+ }
888
+
889
+ :host([data-render-mode="shadow"][icon-name='standard\:service_crew_member']) {
890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
891
+ }
892
+
893
+ :host([data-render-mode="shadow"][icon-name='standard\:variation_attribute_setup']) {
894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
895
+ }
896
+
897
+ :host([data-render-mode="shadow"][icon-name='standard\:flow']) {
898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
899
+ }
900
+
901
+ :host([data-render-mode="shadow"][icon-name='standard\:recipe']) {
902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(1, 118, 211));
903
+ }
904
+
905
+ :host([data-render-mode="shadow"][icon-name='standard\:expense_report_entry']) {
906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
907
+ }
908
+
909
+ :host([data-render-mode="shadow"][icon-name='standard\:employee']) {
910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
911
+ }
912
+
913
+ :host([data-render-mode="shadow"][icon-name='standard\:omni_supervisor']) {
914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
915
+ }
916
+
917
+ :host([data-render-mode="shadow"][icon-name='standard\:capacity_plan']) {
918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
919
+ }
920
+
921
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_object']) {
922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
923
+ }
924
+
925
+ :host([data-render-mode="shadow"][icon-name='standard\:product']) {
926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
927
+ }
928
+
929
+ :host([data-render-mode="shadow"][icon-name='standard\:topic']) {
930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
931
+ }
932
+
933
+ :host([data-render-mode="shadow"][icon-name='standard\:product_required']) {
934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
935
+ }
936
+
937
+ :host([data-render-mode="shadow"][icon-name='standard\:dynamic_record_choice']) {
938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
939
+ }
940
+
941
+ :host([data-render-mode="shadow"][icon-name='standard\:aggregation_policy']) {
942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
943
+ }
944
+
945
+ :host([data-render-mode="shadow"][icon-name='standard\:warranty_term']) {
946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
947
+ }
948
+
949
+ :host([data-render-mode="shadow"][icon-name='standard\:process']) {
950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
951
+ }
952
+
953
+ :host([data-render-mode="shadow"][icon-name='standard\:swarm_session']) {
954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 103, 91));
955
+ }
956
+
957
+ :host([data-render-mode="shadow"][icon-name='standard\:people']) {
958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
959
+ }
960
+
961
+ :host([data-render-mode="shadow"][icon-name='standard\:medication']) {
962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 192, 118));
963
+ }
964
+
965
+ :host([data-render-mode="shadow"][icon-name='standard\:reward']) {
966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
967
+ }
968
+
969
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_contact']) {
970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
971
+ }
972
+
973
+ :host([data-render-mode="shadow"][icon-name='standard\:bundle_policy']) {
974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
975
+ }
976
+
977
+ :host([data-render-mode="shadow"][icon-name='standard\:performance']) {
978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 177, 86));
979
+ }
980
+
981
+ :host([data-render-mode="shadow"][icon-name='standard\:promotions']) {
982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
983
+ }
984
+
985
+ :host([data-render-mode="shadow"][icon-name='standard\:case_comment']) {
986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
987
+ }
988
+
989
+ :host([data-render-mode="shadow"][icon-name='standard\:price_book_entries']) {
990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
991
+ }
992
+
993
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_channel']) {
994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
995
+ }
996
+
997
+ :host([data-render-mode="shadow"][icon-name='standard\:apex_plugin']) {
998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
999
+ }
1000
+
1001
+ :host([data-render-mode="shadow"][icon-name='standard\:campaign']) {
1002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
1003
+ }
1004
+
1005
+ :host([data-render-mode="shadow"][icon-name='standard\:contact_request']) {
1006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 137, 84));
1007
+ }
1008
+
1009
+ :host([data-render-mode="shadow"][icon-name='standard\:business_hours']) {
1010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
1011
+ }
1012
+
1013
+ :host([data-render-mode="shadow"][icon-name='standard\:evernote']) {
1014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(134, 200, 111));
1015
+ }
1016
+
1017
+ :host([data-render-mode="shadow"][icon-name='standard\:variation_products']) {
1018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1019
+ }
1020
+
1021
+ :host([data-render-mode="shadow"][icon-name='standard\:trailhead_alt']) {
1022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 57, 107));
1023
+ }
1024
+
1025
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory']) {
1026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1027
+ }
1028
+
1029
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_lifecycle_analytics']) {
1030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(146, 116, 223));
1031
+ }
1032
+
1033
+ :host([data-render-mode="shadow"][icon-name='standard\:code_set']) {
1034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1035
+ }
1036
+
1037
+ :host([data-render-mode="shadow"][icon-name='standard\:case']) {
1038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1039
+ }
1040
+
1041
+ :host([data-render-mode="shadow"][icon-name='standard\:slack']) {
1042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 21, 75));
1043
+ }
1044
+
1045
+ :host([data-render-mode="shadow"][icon-name='standard\:currency']) {
1046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1047
+ }
1048
+
1049
+ :host([data-render-mode="shadow"][icon-name='standard\:record']) {
1050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
1051
+ }
1052
+
1053
+ :host([data-render-mode="shadow"][icon-name='standard\:code_set_bundle']) {
1054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1055
+ }
1056
+
1057
+ :host([data-render-mode="shadow"][icon-name='standard\:queue']) {
1058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1059
+ }
1060
+
1061
+ :host([data-render-mode="shadow"][icon-name='standard\:schedule_objective']) {
1062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1063
+ }
1064
+
1065
+ :host([data-render-mode="shadow"][icon-name='standard\:contract_line_item']) {
1066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1067
+ }
1068
+
1069
+ :host([data-render-mode="shadow"][icon-name='standard\:skill_entity']) {
1070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
1071
+ }
1072
+
1073
+ :host([data-render-mode="shadow"][icon-name='standard\:skill']) {
1074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
1075
+ }
1076
+
1077
+ :host([data-render-mode="shadow"][icon-name='standard\:operating_hours']) {
1078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
1079
+ }
1080
+
1081
+ :host([data-render-mode="shadow"][icon-name='standard\:custom']) {
1082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
1083
+ }
1084
+
1085
+ :host([data-render-mode="shadow"][icon-name='standard\:related_list']) {
1086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(89, 188, 171));
1087
+ }
1088
+
1089
+ :host([data-render-mode="shadow"][icon-name='standard\:bot_training']) {
1090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(88, 118, 163));
1091
+ }
1092
+
1093
+ :host([data-render-mode="shadow"][icon-name='standard\:case_change_status']) {
1094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1095
+ }
1096
+
1097
+ :host([data-render-mode="shadow"][icon-name='standard\:insurance_console']) {
1098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
1099
+ }
1100
+
1101
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard_component']) {
1102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1103
+ }
1104
+
1105
+ :host([data-render-mode="shadow"][icon-name='standard\:incident']) {
1106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 5, 23));
1107
+ }
1108
+
1109
+ :host([data-render-mode="shadow"][icon-name='standard\:contract']) {
1110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1111
+ }
1112
+
1113
+ :host([data-render-mode="shadow"][icon-name='standard\:sobject']) {
1114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1115
+ }
1116
+
1117
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_cadence_target']) {
1118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1119
+ }
1120
+
1121
+ :host([data-render-mode="shadow"][icon-name='standard\:photo']) {
1122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(215, 209, 209));
1123
+ }
1124
+
1125
+ :host([data-render-mode="shadow"][icon-name='standard\:apps']) {
1126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1127
+ }
1128
+
1129
+ :host([data-render-mode="shadow"][icon-name='standard\:timesheet']) {
1130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1131
+ }
1132
+
1133
+ :host([data-render-mode="shadow"][icon-name='standard\:drafts']) {
1134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
1135
+ }
1136
+
1137
+ :host([data-render-mode="shadow"][icon-name='standard\:outcome']) {
1138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1139
+ }
1140
+
1141
+ :host([data-render-mode="shadow"][icon-name='standard\:discounts']) {
1142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1143
+ }
1144
+
1145
+ :host([data-render-mode="shadow"][icon-name='standard\:work_order_item']) {
1146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(51, 168, 220));
1147
+ }
1148
+
1149
+ :host([data-render-mode="shadow"][icon-name='standard\:pricebook']) {
1150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
1151
+ }
1152
+
1153
+ :host([data-render-mode="shadow"][icon-name='standard\:scan_card']) {
1154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 158, 88));
1155
+ }
1156
+
1157
+ :host([data-render-mode="shadow"][icon-name='standard\:note']) {
1158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
1159
+ }
1160
+
1161
+ :host([data-render-mode="shadow"][icon-name='standard\:serialized_product_transaction']) {
1162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1163
+ }
1164
+
1165
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_pattern']) {
1166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1167
+ }
1168
+
1169
+ :host([data-render-mode="shadow"][icon-name='standard\:buyer_group']) {
1170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1171
+ }
1172
+
1173
+ :host([data-render-mode="shadow"][icon-name='standard\:product_quantity_rules']) {
1174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1175
+ }
1176
+
1177
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_reconciliation']) {
1178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(63, 113, 154));
1179
+ }
1180
+
1181
+ :host([data-render-mode="shadow"][icon-name='standard\:procedure']) {
1182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
1183
+ }
1184
+
1185
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity']) {
1186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1187
+ }
1188
+
1189
+ :host([data-render-mode="shadow"][icon-name='standard\:news']) {
1190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1191
+ }
1192
+
1193
+ :host([data-render-mode="shadow"][icon-name='standard\:sort_policy']) {
1194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1195
+ }
1196
+
1197
+ :host([data-render-mode="shadow"][icon-name='standard\:display_rich_text']) {
1198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1199
+ }
1200
+
1201
+ :host([data-render-mode="shadow"][icon-name='standard\:strategy']) {
1202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 113));
1203
+ }
1204
+
1205
+ :host([data-render-mode="shadow"][icon-name='standard\:call_history']) {
1206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1207
+ }
1208
+
1209
+ :host([data-render-mode="shadow"][icon-name='standard\:webcart']) {
1210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1211
+ }
1212
+
1213
+ :host([data-render-mode="shadow"][icon-name='standard\:serialized_product']) {
1214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1215
+ }
1216
+
1217
+ :host([data-render-mode="shadow"][icon-name='standard\:report']) {
1218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(46, 203, 190));
1219
+ }
1220
+
1221
+ :host([data-render-mode="shadow"][icon-name='standard\:groups']) {
1222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(119, 158, 242));
1223
+ }
1224
+
1225
+ :host([data-render-mode="shadow"][icon-name='standard\:data_model']) {
1226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1227
+ }
1228
+
1229
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard']) {
1230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
1231
+ }
1232
+
1233
+ :host([data-render-mode="shadow"][icon-name='standard\:generic_loading']) {
1234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
1235
+ }
1236
+
1237
+ :host([data-render-mode="shadow"][icon-name='standard\:number_input']) {
1238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1239
+ }
1240
+
1241
+ :host([data-render-mode="shadow"][icon-name='standard\:toggle']) {
1242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1243
+ }
1244
+
1245
+ :host([data-render-mode="shadow"][icon-name='standard\:address']) {
1246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1247
+ }
1248
+
1249
+ :host([data-render-mode="shadow"][icon-name='standard\:price_books']) {
1250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1251
+ }
1252
+
1253
+ :host([data-render-mode="shadow"][icon-name='standard\:entity_milestone']) {
1254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
1255
+ }
1256
+
1257
+ :host([data-render-mode="shadow"][icon-name='standard\:wealth_management']) {
1258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
1259
+ }
1260
+
1261
+ :host([data-render-mode="shadow"][icon-name='standard\:customers']) {
1262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1263
+ }
1264
+
1265
+ :host([data-render-mode="shadow"][icon-name='standard\:story']) {
1266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1267
+ }
1268
+
1269
+ :host([data-render-mode="shadow"][icon-name='standard\:service_appointment']) {
1270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1271
+ }
1272
+
1273
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_plan']) {
1274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1275
+ }
1276
+
1277
+ :host([data-render-mode="shadow"][icon-name='standard\:data_integration_hub']) {
1278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1279
+ }
1280
+
1281
+ :host([data-render-mode="shadow"][icon-name='standard\:person_name']) {
1282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1283
+ }
1284
+
1285
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_template_entry']) {
1286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
1287
+ }
1288
+
1289
+ :host([data-render-mode="shadow"][icon-name='standard\:hierarchy']) {
1290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1291
+ }
1292
+
1293
+ :host([data-render-mode="shadow"][icon-name='standard\:custom_component_task']) {
1294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
1295
+ }
1296
+
1297
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_marketing_budget']) {
1298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1299
+ }
1300
+
1301
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_action_source']) {
1302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
1303
+ }
1304
+
1305
+ :host([data-render-mode="shadow"][icon-name='standard\:skill_requirement']) {
1306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
1307
+ }
1308
+
1309
+ :host([data-render-mode="shadow"][icon-name='standard\:filter_criteria_rule']) {
1310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1311
+ }
1312
+
1313
+ :host([data-render-mode="shadow"][icon-name='standard\:location']) {
1314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1315
+ }
1316
+
1317
+ :host([data-render-mode="shadow"][icon-name='standard\:radio_button']) {
1318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1319
+ }
1320
+
1321
+ :host([data-render-mode="shadow"][icon-name='standard\:avatar_loading']) {
1322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
1323
+ }
1324
+
1325
+ :host([data-render-mode="shadow"][icon-name='standard\:article']) {
1326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1327
+ }
1328
+
1329
+ :host([data-render-mode="shadow"][icon-name='standard\:invocable_action']) {
1330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1331
+ }
1332
+
1333
+ :host([data-render-mode="shadow"][icon-name='standard\:device']) {
1334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1335
+ }
1336
+
1337
+ :host([data-render-mode="shadow"][icon-name='standard\:proposition']) {
1338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1339
+ }
1340
+
1341
+ :host([data-render-mode="shadow"][icon-name='standard\:snippets']) {
1342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1343
+ }
1344
+
1345
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_portal_users']) {
1346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 219));
1347
+ }
1348
+
1349
+ :host([data-render-mode="shadow"][icon-name='standard\:actions_and_buttons']) {
1350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1351
+ }
1352
+
1353
+ :host([data-render-mode="shadow"][icon-name='standard\:record_update']) {
1354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1355
+ }
1356
+
1357
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_type']) {
1358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1359
+ }
1360
+
1361
+ :host([data-render-mode="shadow"][icon-name='standard\:log_a_call']) {
1362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 195, 204));
1363
+ }
1364
+
1365
+ :host([data-render-mode="shadow"][icon-name='standard\:quotes']) {
1366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
1367
+ }
1368
+
1369
+ :host([data-render-mode="shadow"][icon-name='standard\:question_feed']) {
1370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1371
+ }
1372
+
1373
+ :host([data-render-mode="shadow"][icon-name='standard\:kanban']) {
1374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1375
+ }
1376
+
1377
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan']) {
1378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
1379
+ }
1380
+
1381
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_template']) {
1382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1383
+ }
1384
+
1385
+ :host([data-render-mode="shadow"][icon-name='standard\:merge']) {
1386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1387
+ }
1388
+
1389
+ :host([data-render-mode="shadow"][icon-name='standard\:expense']) {
1390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
1391
+ }
1392
+
1393
+ :host([data-render-mode="shadow"][icon-name='standard\:dataset']) {
1394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
1395
+ }
1396
+
1397
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_preference']) {
1398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1399
+ }
1400
+
1401
+ :host([data-render-mode="shadow"][icon-name='standard\:product_consumed']) {
1402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(85, 188, 156));
1403
+ }
1404
+
1405
+ :host([data-render-mode="shadow"][icon-name='standard\:canvas']) {
1406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
1407
+ }
1408
+
1409
+ :host([data-render-mode="shadow"][icon-name='standard\:forecasts']) {
1410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
1411
+ }
1412
+
1413
+ :host([data-render-mode="shadow"][icon-name='standard\:relationship']) {
1414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1415
+ }
1416
+
1417
+ :host([data-render-mode="shadow"][icon-name='standard\:tour']) {
1418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
1419
+ }
1420
+
1421
+ :host([data-render-mode="shadow"][icon-name='standard\:service_resource']) {
1422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1423
+ }
1424
+
1425
+ :host([data-render-mode="shadow"][icon-name='standard\:filter']) {
1426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 57, 238));
1427
+ }
1428
+
1429
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_path']) {
1430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1431
+ }
1432
+
1433
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_scheduling_operation']) {
1434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1435
+ }
1436
+
1437
+ :host([data-render-mode="shadow"][icon-name='standard\:events']) {
1438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 219));
1439
+ }
1440
+
1441
+ :host([data-render-mode="shadow"][icon-name='standard\:data_mapping']) {
1442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(6, 28, 63));
1443
+ }
1444
+
1445
+ :host([data-render-mode="shadow"][icon-name='standard\:sms']) {
1446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
1447
+ }
1448
+
1449
+ :host([data-render-mode="shadow"][icon-name='standard\:rtc_presence']) {
1450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
1451
+ }
1452
+
1453
+ :host([data-render-mode="shadow"][icon-name='standard\:avatar']) {
1454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
1455
+ }
1456
+
1457
+ :host([data-render-mode="shadow"][icon-name='standard\:record_delete']) {
1458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1459
+ }
1460
+
1461
+ :host([data-render-mode="shadow"][icon-name='standard\:solution']) {
1462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(143, 201, 114));
1463
+ }
1464
+
1465
+ :host([data-render-mode="shadow"][icon-name='standard\:agent_home']) {
1466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 57, 107));
1467
+ }
1468
+
1469
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_claim']) {
1470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1471
+ }
1472
+
1473
+ :host([data-render-mode="shadow"][icon-name='standard\:individual']) {
1474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1475
+ }
1476
+
1477
+ :host([data-render-mode="shadow"][icon-name='standard\:custom_notification']) {
1478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 183, 228));
1479
+ }
1480
+
1481
+ :host([data-render-mode="shadow"][icon-name='standard\:contract_payment']) {
1482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
1483
+ }
1484
+
1485
+ :host([data-render-mode="shadow"][icon-name='standard\:date_input']) {
1486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1487
+ }
1488
+
1489
+ :host([data-render-mode="shadow"][icon-name='standard\:catalog']) {
1490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(2, 126, 70));
1491
+ }
1492
+
1493
+ :host([data-render-mode="shadow"][icon-name='standard\:template']) {
1494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1495
+ }
1496
+
1497
+ :host([data-render-mode="shadow"][icon-name='standard\:activation_target']) {
1498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
1499
+ }
1500
+
1501
+ :host([data-render-mode="shadow"][icon-name='standard\:selling_model']) {
1502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(173, 123, 238));
1503
+ }
1504
+
1505
+ :host([data-render-mode="shadow"][icon-name='standard\:shipment']) {
1506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1507
+ }
1508
+
1509
+ :host([data-render-mode="shadow"][icon-name='standard\:budget_allocation']) {
1510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
1511
+ }
1512
+
1513
+ :host([data-render-mode="shadow"][icon-name='standard\:record_signature_task']) {
1514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1515
+ }
1516
+
1517
+ :host([data-render-mode="shadow"][icon-name='standard\:event']) {
1518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1519
+ }
1520
+
1521
+ :host([data-render-mode="shadow"][icon-name='standard\:insurance']) {
1522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
1523
+ }
1524
+
1525
+ :host([data-render-mode="shadow"][icon-name='standard\:live_chat_visitor']) {
1526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 137, 96));
1527
+ }
1528
+
1529
+ :host([data-render-mode="shadow"][icon-name='standard\:textarea']) {
1530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1531
+ }
1532
+
1533
+ :host([data-render-mode="shadow"][icon-name='standard\:work_step']) {
1534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
1535
+ }
1536
+
1537
+ :host([data-render-mode="shadow"][icon-name='standard\:picklist_type']) {
1538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1539
+ }
1540
+
1541
+ :host([data-render-mode="shadow"][icon-name='standard\:survey']) {
1542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 159, 214));
1543
+ }
1544
+
1545
+ :host([data-render-mode="shadow"][icon-name='standard\:link']) {
1546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
1547
+ }
1548
+
1549
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_session']) {
1550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1551
+ }
1552
+
1553
+ :host([data-render-mode="shadow"][icon-name='standard\:video']) {
1554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
1555
+ }
1556
+
1557
+ :host([data-render-mode="shadow"][icon-name='standard\:list_email']) {
1558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 174, 181));
1559
+ }
1560
+
1561
+ :host([data-render-mode="shadow"][icon-name='standard\:med_rec_recommendation']) {
1562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 187, 202));
1563
+ }
1564
+
1565
+ :host([data-render-mode="shadow"][icon-name='standard\:recycle_bin']) {
1566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
1567
+ }
1568
+
1569
+ :host([data-render-mode="shadow"][icon-name='standard\:document']) {
1570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
1571
+ }
1572
+
1573
+ :host([data-render-mode="shadow"][icon-name='standard\:product_transfer']) {
1574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 115, 79));
1575
+ }
1576
+
1577
+ :host([data-render-mode="shadow"][icon-name='standard\:instore_locations']) {
1578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1579
+ }
1580
+
1581
+ :host([data-render-mode="shadow"][icon-name='standard\:recent']) {
1582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
1583
+ }
1584
+
1585
+ :host([data-render-mode="shadow"][icon-name='standard\:practitioner_role']) {
1586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1587
+ }
1588
+
1589
+ :host([data-render-mode="shadow"][icon-name='standard\:password']) {
1590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1591
+ }
1592
+
1593
+ :host([data-render-mode="shadow"][icon-name='standard\:expense_report']) {
1594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
1595
+ }
1596
+
1597
+ :host([data-render-mode="shadow"][icon-name='standard\:branch_merge']) {
1598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
1599
+ }
1600
+
1601
+ :host([data-render-mode="shadow"][icon-name='standard\:insights']) {
1602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 148, 237));
1603
+ }
1604
+
1605
+ :host([data-render-mode="shadow"][icon-name='standard\:dropbox']) {
1606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(82, 174, 249));
1607
+ }
1608
+
1609
+ :host([data-render-mode="shadow"][icon-name='standard\:unified_health_score']) {
1610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1611
+ }
1612
+
1613
+ :host([data-render-mode="shadow"][icon-name='standard\:calculated_insights']) {
1614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 167, 248));
1615
+ }
1616
+
1617
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_job_position']) {
1618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1619
+ }
1620
+
1621
+ :host([data-render-mode="shadow"][icon-name='standard\:file']) {
1622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
1623
+ }
1624
+
1625
+ :host([data-render-mode="shadow"][icon-name='standard\:currency_input']) {
1626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1627
+ }
1628
+
1629
+ :host([data-render-mode="shadow"][icon-name='standard\:variable']) {
1630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1631
+ }
1632
+
1633
+ :host([data-render-mode="shadow"][icon-name='standard\:team_member']) {
1634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1635
+ }
1636
+
1637
+ :host([data-render-mode="shadow"][icon-name='standard\:pricing_workspace']) {
1638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1639
+ }
1640
+
1641
+ :host([data-render-mode="shadow"][icon-name='standard\:agent_session']) {
1642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
1643
+ }
1644
+
1645
+ :host([data-render-mode="shadow"][icon-name='standard\:guidance_center']) {
1646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1647
+ }
1648
+
1649
+ :host([data-render-mode="shadow"][icon-name='standard\:group_loading']) {
1650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
1651
+ }
1652
+
1653
+ :host([data-render-mode="shadow"][icon-name='standard\:lead']) {
1654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
1655
+ }
1656
+
1657
+ :host([data-render-mode="shadow"][icon-name='standard\:email']) {
1658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(149, 174, 197));
1659
+ }
1660
+
1661
+ :host([data-render-mode="shadow"][icon-name='standard\:service_contract']) {
1662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
1663
+ }
1664
+
1665
+ :host([data-render-mode="shadow"][icon-name='standard\:decision']) {
1666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1667
+ }
1668
+
1669
+ :host([data-render-mode="shadow"][icon-name='standard\:promotion_segments']) {
1670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1671
+ }
1672
+
1673
+ :host([data-render-mode="shadow"][icon-name='standard\:duration_downscale']) {
1674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1675
+ }
1676
+
1677
+ :host([data-render-mode="shadow"][icon-name='standard\:snippet']) {
1678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
1679
+ }
1680
+
1681
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_process']) {
1682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1683
+ }
1684
+
1685
+ :host([data-render-mode="shadow"][icon-name='standard\:contact_list']) {
1686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
1687
+ }
1688
+
1689
+ :host([data-render-mode="shadow"][icon-name='standard\:planogram']) {
1690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1691
+ }
1692
+
1693
+ :host([data-render-mode="shadow"][icon-name='standard\:activations']) {
1694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
1695
+ }
1696
+
1697
+ :host([data-render-mode="shadow"][icon-name='standard\:scheduling_policy']) {
1698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1699
+ }
1700
+
1701
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_history']) {
1702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1703
+ }
1704
+
1705
+ :host([data-render-mode="shadow"][icon-name='standard\:question_best']) {
1706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1707
+ }
1708
+
1709
+ :host([data-render-mode="shadow"][icon-name='standard\:collection_variable']) {
1710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1711
+ }
1712
+
1713
+ :host([data-render-mode="shadow"][icon-name='standard\:procedure_detail']) {
1714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1715
+ }
1716
+
1717
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_value']) {
1718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1719
+ }
1720
+
1721
+ :host([data-render-mode="shadow"][icon-name='standard\:knowledge']) {
1722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 148, 237));
1723
+ }
1724
+
1725
+ :host([data-render-mode="shadow"][icon-name='standard\:date_time']) {
1726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1727
+ }
1728
+
1729
+ :host([data-render-mode="shadow"][icon-name='standard\:category']) {
1730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(2, 126, 70));
1731
+ }
1732
+
1733
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_work_rule']) {
1734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1735
+ }
1736
+
1737
+ :host([data-render-mode="shadow"][icon-name='standard\:data_streams']) {
1738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
1739
+ }
1740
+
1741
+ :host([data-render-mode="shadow"][icon-name='standard\:textbox']) {
1742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1743
+ }
1744
+
1745
+ :host([data-render-mode="shadow"][icon-name='standard\:lead_insights']) {
1746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 176, 230));
1747
+ }
1748
+
1749
+ :host([data-render-mode="shadow"][icon-name='standard\:waits']) {
1750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1751
+ }
1752
+
1753
+ :host([data-render-mode="shadow"][icon-name='standard\:concur']) {
1754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(76, 195, 199));
1755
+ }
1756
+
1757
+ :host([data-render-mode="shadow"][icon-name='standard\:feed']) {
1758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
1759
+ }
1760
+
1761
+ :host([data-render-mode="shadow"][icon-name='standard\:sort']) {
1762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 57, 238));
1763
+ }
1764
+
1765
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_conversation']) {
1766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1767
+ }
1768
+
1769
+ :host([data-render-mode="shadow"][icon-name='standard\:service_report']) {
1770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1771
+ }
1772
+
1773
+ :host([data-render-mode="shadow"][icon-name='standard\:iot_context']) {
1774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1775
+ }
1776
+
1777
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_state_period']) {
1778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
1779
+ }
1780
+
1781
+ :host([data-render-mode="shadow"][icon-name='standard\:call']) {
1782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1783
+ }
1784
+
1785
+ :host([data-render-mode="shadow"][icon-name='standard\:collection']) {
1786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1787
+ }
1788
+
1789
+ :host([data-render-mode="shadow"][icon-name='standard\:stage']) {
1790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1791
+ }
1792
+
1793
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_cadence']) {
1794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1795
+ }
1796
+
1797
+ :host([data-render-mode="shadow"][icon-name='standard\:product_request_line_item']) {
1798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
1799
+ }
1800
+
1801
+ :host([data-render-mode="shadow"][icon-name='standard\:return_order_line_item']) {
1802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 150, 136));
1803
+ }
1804
+
1805
+ :host([data-render-mode="shadow"][icon-name='standard\:chart']) {
1806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(31, 202, 160));
1807
+ }
1808
+
1809
+ :host([data-render-mode="shadow"][icon-name='standard\:quick_text']) {
1810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 229));
1811
+ }
1812
+
1813
+ :host([data-render-mode="shadow"][icon-name='standard\:home']) {
1814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
1815
+ }
1816
+
1817
+ :host([data-render-mode="shadow"][icon-name='standard\:sossession']) {
1818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1819
+ }
1820
+
1821
+ :host([data-render-mode="shadow"][icon-name='standard\:bundle_config']) {
1822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1823
+ }
1824
+
1825
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_asset']) {
1826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1827
+ }
1828
+
1829
+ :host([data-render-mode="shadow"][icon-name='standard\:process_exception']) {
1830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 166, 35));
1831
+ }
1832
+
1833
+ :host([data-render-mode="shadow"][icon-name='standard\:product_warranty_term']) {
1834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
1835
+ }
1836
+
1837
+ :host([data-render-mode="shadow"][icon-name='standard\:problem']) {
1838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(254, 147, 57));
1839
+ }
1840
+
1841
+ :host([data-render-mode="shadow"][icon-name='standard\:stage_collection']) {
1842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1843
+ }
1844
+
1845
+ :host([data-render-mode="shadow"][icon-name='standard\:product_request']) {
1846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
1847
+ }
1848
+
1849
+ :host([data-render-mode="shadow"][icon-name='standard\:logging']) {
1850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 223));
1851
+ }
1852
+
1853
+ :host([data-render-mode="shadow"][icon-name='standard\:assigned_resource']) {
1854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
1855
+ }
1856
+
1857
+ :host([data-render-mode="shadow"][icon-name='standard\:return_order']) {
1858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 150, 136));
1859
+ }
1860
+
1861
+ :host([data-render-mode="shadow"][icon-name='standard\:poll']) {
1862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 155, 225));
1863
+ }
1864
+
1865
+ :host([data-render-mode="shadow"][icon-name='standard\:household']) {
1866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
1867
+ }
1868
+
1869
+ :host([data-render-mode="shadow"][icon-name='standard\:work_step_template']) {
1870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
1871
+ }
1872
+
1873
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_statement']) {
1874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1875
+ }
1876
+
1877
+ :host([data-render-mode="shadow"][icon-name='custom\:custom110']) {
1878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1879
+ }
1880
+
1881
+ :host([data-render-mode="shadow"][icon-name='custom\:custom100']) {
1882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 93, 118));
1883
+ }
1884
+
1885
+ :host([data-render-mode="shadow"][icon-name='custom\:custom111']) {
1886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1887
+ }
1888
+
1889
+ :host([data-render-mode="shadow"][icon-name='custom\:custom1']) {
1890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 123, 132));
1891
+ }
1892
+
1893
+ :host([data-render-mode="shadow"][icon-name='custom\:custom101']) {
1894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1895
+ }
1896
+
1897
+ :host([data-render-mode="shadow"][icon-name='custom\:custom112']) {
1898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1899
+ }
1900
+
1901
+ :host([data-render-mode="shadow"][icon-name='custom\:custom2']) {
1902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 92));
1903
+ }
1904
+
1905
+ :host([data-render-mode="shadow"][icon-name='custom\:custom102']) {
1906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1907
+ }
1908
+
1909
+ :host([data-render-mode="shadow"][icon-name='custom\:custom113']) {
1910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1911
+ }
1912
+
1913
+ :host([data-render-mode="shadow"][icon-name='custom\:custom90']) {
1914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 164, 138));
1915
+ }
1916
+
1917
+ :host([data-render-mode="shadow"][icon-name='custom\:custom3']) {
1918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 180, 108));
1919
+ }
1920
+
1921
+ :host([data-render-mode="shadow"][icon-name='custom\:custom103']) {
1922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1923
+ }
1924
+
1925
+ :host([data-render-mode="shadow"][icon-name='custom\:custom80']) {
1926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 154, 213));
1927
+ }
1928
+
1929
+ :host([data-render-mode="shadow"][icon-name='custom\:custom91']) {
1930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 123, 102));
1931
+ }
1932
+
1933
+ :host([data-render-mode="shadow"][icon-name='custom\:custom4']) {
1934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 217, 81));
1935
+ }
1936
+
1937
+ :host([data-render-mode="shadow"][icon-name='custom\:custom104']) {
1938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1939
+ }
1940
+
1941
+ :host([data-render-mode="shadow"][icon-name='custom\:custom70']) {
1942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 105, 180));
1943
+ }
1944
+
1945
+ :host([data-render-mode="shadow"][icon-name='custom\:custom81']) {
1946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(218, 98, 127));
1947
+ }
1948
+
1949
+ :host([data-render-mode="shadow"][icon-name='custom\:custom92']) {
1950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(81, 126, 130));
1951
+ }
1952
+
1953
+ :host([data-render-mode="shadow"][icon-name='custom\:custom5']) {
1954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(159, 219, 102));
1955
+ }
1956
+
1957
+ :host([data-render-mode="shadow"][icon-name='custom\:custom105']) {
1958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1959
+ }
1960
+
1961
+ :host([data-render-mode="shadow"][icon-name='custom\:custom60']) {
1962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 90, 136));
1963
+ }
1964
+
1965
+ :host([data-render-mode="shadow"][icon-name='custom\:custom71']) {
1966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 110, 227));
1967
+ }
1968
+
1969
+ :host([data-render-mode="shadow"][icon-name='custom\:custom82']) {
1970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(209, 91, 151));
1971
+ }
1972
+
1973
+ :host([data-render-mode="shadow"][icon-name='custom\:custom93']) {
1974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 77, 76));
1975
+ }
1976
+
1977
+ :host([data-render-mode="shadow"][icon-name='custom\:custom6']) {
1978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 196, 115));
1979
+ }
1980
+
1981
+ :host([data-render-mode="shadow"][icon-name='custom\:custom106']) {
1982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
1983
+ }
1984
+
1985
+ :host([data-render-mode="shadow"][icon-name='custom\:custom50']) {
1986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(73, 188, 211));
1987
+ }
1988
+
1989
+ :host([data-render-mode="shadow"][icon-name='custom\:custom61']) {
1990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 115, 118));
1991
+ }
1992
+
1993
+ :host([data-render-mode="shadow"][icon-name='custom\:custom72']) {
1994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(141, 155, 251));
1995
+ }
1996
+
1997
+ :host([data-render-mode="shadow"][icon-name='custom\:custom83']) {
1998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 128, 111));
1999
+ }
2000
+
2001
+ :host([data-render-mode="shadow"][icon-name='custom\:custom94']) {
2002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
2003
+ }
2004
+
2005
+ :host([data-render-mode="shadow"][icon-name='custom\:custom7']) {
2006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(106, 137, 229));
2007
+ }
2008
+
2009
+ :host([data-render-mode="shadow"][icon-name='custom\:custom107']) {
2010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2011
+ }
2012
+
2013
+ :host([data-render-mode="shadow"][icon-name='custom\:custom40']) {
2014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 199, 94));
2015
+ }
2016
+
2017
+ :host([data-render-mode="shadow"][icon-name='custom\:custom51']) {
2018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 199, 96));
2019
+ }
2020
+
2021
+ :host([data-render-mode="shadow"][icon-name='custom\:custom62']) {
2022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 146, 220));
2023
+ }
2024
+
2025
+ :host([data-render-mode="shadow"][icon-name='custom\:custom73']) {
2026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 158, 240));
2027
+ }
2028
+
2029
+ :host([data-render-mode="shadow"][icon-name='custom\:custom84']) {
2030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 112, 123));
2031
+ }
2032
+
2033
+ :host([data-render-mode="shadow"][icon-name='custom\:custom95']) {
2034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 207, 106));
2035
+ }
2036
+
2037
+ :host([data-render-mode="shadow"][icon-name='custom\:custom8']) {
2038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 206, 185));
2039
+ }
2040
+
2041
+ :host([data-render-mode="shadow"][icon-name='custom\:custom108']) {
2042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2043
+ }
2044
+
2045
+ :host([data-render-mode="shadow"][icon-name='custom\:custom30']) {
2046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 159, 113));
2047
+ }
2048
+
2049
+ :host([data-render-mode="shadow"][icon-name='custom\:custom41']) {
2050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 181, 181));
2051
+ }
2052
+
2053
+ :host([data-render-mode="shadow"][icon-name='custom\:custom52']) {
2054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(238, 142, 111));
2055
+ }
2056
+
2057
+ :host([data-render-mode="shadow"][icon-name='custom\:custom63']) {
2058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(124, 207, 96));
2059
+ }
2060
+
2061
+ :host([data-render-mode="shadow"][icon-name='custom\:custom74']) {
2062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(65, 200, 160));
2063
+ }
2064
+
2065
+ :host([data-render-mode="shadow"][icon-name='custom\:custom85']) {
2066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 104, 145));
2067
+ }
2068
+
2069
+ :host([data-render-mode="shadow"][icon-name='custom\:custom96']) {
2070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 157, 227));
2071
+ }
2072
+
2073
+ :host([data-render-mode="shadow"][icon-name='custom\:custom9']) {
2074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
2075
+ }
2076
+
2077
+ :host([data-render-mode="shadow"][icon-name='custom\:custom109']) {
2078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2079
+ }
2080
+
2081
+ :host([data-render-mode="shadow"][icon-name='custom\:custom20']) {
2082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 199, 200));
2083
+ }
2084
+
2085
+ :host([data-render-mode="shadow"][icon-name='custom\:custom31']) {
2086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 104, 127));
2087
+ }
2088
+
2089
+ :host([data-render-mode="shadow"][icon-name='custom\:custom42']) {
2090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 91));
2091
+ }
2092
+
2093
+ :host([data-render-mode="shadow"][icon-name='custom\:custom53']) {
2094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 110, 131));
2095
+ }
2096
+
2097
+ :host([data-render-mode="shadow"][icon-name='custom\:custom64']) {
2098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 143, 216));
2099
+ }
2100
+
2101
+ :host([data-render-mode="shadow"][icon-name='custom\:custom75']) {
2102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(205, 159, 101));
2103
+ }
2104
+
2105
+ :host([data-render-mode="shadow"][icon-name='custom\:custom86']) {
2106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 96, 171));
2107
+ }
2108
+
2109
+ :host([data-render-mode="shadow"][icon-name='custom\:custom97']) {
2110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(221, 96, 133));
2111
+ }
2112
+
2113
+ :host([data-render-mode="shadow"][icon-name='custom\:custom10']) {
2114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(100, 136, 227));
2115
+ }
2116
+
2117
+ :host([data-render-mode="shadow"][icon-name='custom\:custom21']) {
2118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 122, 237));
2119
+ }
2120
+
2121
+ :host([data-render-mode="shadow"][icon-name='custom\:custom32']) {
2122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(56, 195, 147));
2123
+ }
2124
+
2125
+ :host([data-render-mode="shadow"][icon-name='custom\:custom43']) {
2126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 147, 249));
2127
+ }
2128
+
2129
+ :host([data-render-mode="shadow"][icon-name='custom\:custom54']) {
2130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 112, 177));
2131
+ }
2132
+
2133
+ :host([data-render-mode="shadow"][icon-name='custom\:custom65']) {
2134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 121, 171));
2135
+ }
2136
+
2137
+ :host([data-render-mode="shadow"][icon-name='custom\:custom76']) {
2138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(219, 109, 122));
2139
+ }
2140
+
2141
+ :host([data-render-mode="shadow"][icon-name='custom\:custom87']) {
2142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 118, 229));
2143
+ }
2144
+
2145
+ :host([data-render-mode="shadow"][icon-name='custom\:custom98']) {
2146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 190, 92));
2147
+ }
2148
+
2149
+ :host([data-render-mode="shadow"][icon-name='custom\:custom11']) {
2150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(135, 132, 234));
2151
+ }
2152
+
2153
+ :host([data-render-mode="shadow"][icon-name='custom\:custom22']) {
2154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 133, 249));
2155
+ }
2156
+
2157
+ :host([data-render-mode="shadow"][icon-name='custom\:custom33']) {
2158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(151, 207, 93));
2159
+ }
2160
+
2161
+ :host([data-render-mode="shadow"][icon-name='custom\:custom44']) {
2162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(200, 202, 88));
2163
+ }
2164
+
2165
+ :host([data-render-mode="shadow"][icon-name='custom\:custom55']) {
2166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(214, 110, 224));
2167
+ }
2168
+
2169
+ :host([data-render-mode="shadow"][icon-name='custom\:custom66']) {
2170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 190, 95));
2171
+ }
2172
+
2173
+ :host([data-render-mode="shadow"][icon-name='custom\:custom77']) {
2174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(181, 93, 91));
2175
+ }
2176
+
2177
+ :host([data-render-mode="shadow"][icon-name='custom\:custom88']) {
2178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(153, 111, 230));
2179
+ }
2180
+
2181
+ :host([data-render-mode="shadow"][icon-name='custom\:custom99']) {
2182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(240, 133, 110));
2183
+ }
2184
+
2185
+ :host([data-render-mode="shadow"][icon-name='custom\:custom12']) {
2186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
2187
+ }
2188
+
2189
+ :host([data-render-mode="shadow"][icon-name='custom\:custom23']) {
2190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2191
+ }
2192
+
2193
+ :host([data-render-mode="shadow"][icon-name='custom\:custom34']) {
2194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(213, 138, 106));
2195
+ }
2196
+
2197
+ :host([data-render-mode="shadow"][icon-name='custom\:custom45']) {
2198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(217, 88, 121));
2199
+ }
2200
+
2201
+ :host([data-render-mode="shadow"][icon-name='custom\:custom56']) {
2202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(113, 141, 235));
2203
+ }
2204
+
2205
+ :host([data-render-mode="shadow"][icon-name='custom\:custom67']) {
2206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 125, 118));
2207
+ }
2208
+
2209
+ :host([data-render-mode="shadow"][icon-name='custom\:custom78']) {
2210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 149, 221));
2211
+ }
2212
+
2213
+ :host([data-render-mode="shadow"][icon-name='custom\:custom89']) {
2214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(62, 153, 190));
2215
+ }
2216
+
2217
+ :host([data-render-mode="shadow"][icon-name='custom\:custom13']) {
2218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(223, 97, 132));
2219
+ }
2220
+
2221
+ :host([data-render-mode="shadow"][icon-name='custom\:custom24']) {
2222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(229, 103, 152));
2223
+ }
2224
+
2225
+ :host([data-render-mode="shadow"][icon-name='custom\:custom35']) {
2226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 99, 126));
2227
+ }
2228
+
2229
+ :host([data-render-mode="shadow"][icon-name='custom\:custom46']) {
2230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 165, 231));
2231
+ }
2232
+
2233
+ :host([data-render-mode="shadow"][icon-name='custom\:custom57']) {
2234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 156, 221));
2235
+ }
2236
+
2237
+ :host([data-render-mode="shadow"][icon-name='custom\:custom68']) {
2238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 105, 121));
2239
+ }
2240
+
2241
+ :host([data-render-mode="shadow"][icon-name='custom\:custom79']) {
2242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(142, 211, 99));
2243
+ }
2244
+
2245
+ :host([data-render-mode="shadow"][icon-name='custom\:custom14']) {
2246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 194, 179));
2247
+ }
2248
+
2249
+ :host([data-render-mode="shadow"][icon-name='custom\:custom25']) {
2250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(228, 111, 190));
2251
+ }
2252
+
2253
+ :host([data-render-mode="shadow"][icon-name='custom\:custom36']) {
2254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(212, 114, 212));
2255
+ }
2256
+
2257
+ :host([data-render-mode="shadow"][icon-name='custom\:custom47']) {
2258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(95, 204, 100));
2259
+ }
2260
+
2261
+ :host([data-render-mode="shadow"][icon-name='custom\:custom58']) {
2262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
2263
+ }
2264
+
2265
+ :host([data-render-mode="shadow"][icon-name='custom\:custom69']) {
2266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(237, 99, 135));
2267
+ }
2268
+
2269
+ :host([data-render-mode="shadow"][icon-name='custom\:custom15']) {
2270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(247, 126, 117));
2271
+ }
2272
+
2273
+ :host([data-render-mode="shadow"][icon-name='custom\:custom26']) {
2274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 152, 240));
2275
+ }
2276
+
2277
+ :host([data-render-mode="shadow"][icon-name='custom\:custom37']) {
2278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(140, 137, 242));
2279
+ }
2280
+
2281
+ :host([data-render-mode="shadow"][icon-name='custom\:custom48']) {
2282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 105, 127));
2283
+ }
2284
+
2285
+ :host([data-render-mode="shadow"][icon-name='custom\:custom59']) {
2286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 208, 103));
2287
+ }
2288
+
2289
+ :host([data-render-mode="shadow"][icon-name='custom\:custom16']) {
2290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 175, 103));
2291
+ }
2292
+
2293
+ :host([data-render-mode="shadow"][icon-name='custom\:custom27']) {
2294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 176, 210));
2295
+ }
2296
+
2297
+ :host([data-render-mode="shadow"][icon-name='custom\:custom38']) {
2298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(83, 182, 215));
2299
+ }
2300
+
2301
+ :host([data-render-mode="shadow"][icon-name='custom\:custom49']) {
2302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 92, 128));
2303
+ }
2304
+
2305
+ :host([data-render-mode="shadow"][icon-name='custom\:custom17']) {
2306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(172, 211, 96));
2307
+ }
2308
+
2309
+ :host([data-render-mode="shadow"][icon-name='custom\:custom28']) {
2310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(137, 192, 89));
2311
+ }
2312
+
2313
+ :host([data-render-mode="shadow"][icon-name='custom\:custom39']) {
2314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(79, 190, 117));
2315
+ }
2316
+
2317
+ :host([data-render-mode="shadow"][icon-name='custom\:custom18']) {
2318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(77, 202, 118));
2319
+ }
2320
+
2321
+ :host([data-render-mode="shadow"][icon-name='custom\:custom29']) {
2322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(189, 210, 95));
2323
+ }
2324
+
2325
+ :host([data-render-mode="shadow"][icon-name='custom\:custom19']) {
2326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 190, 177));
2327
+ }
2328
+
2329
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom18']) {
2330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(77, 202, 118));
2331
+ }
2332
+
2333
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom29']) {
2334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(189, 210, 95));
2335
+ }
2336
+
2337
+ :host([data-render-mode="shadow"][icon-name='action\:edit_groups']) {
2338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
2339
+ }
2340
+
2341
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom9']) {
2342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
2343
+ }
2344
+
2345
+ :host([data-render-mode="shadow"][icon-name='action\:log_a_call']) {
2346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 195, 204));
2347
+ }
2348
+
2349
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom19']) {
2350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 190, 177));
2351
+ }
2352
+
2353
+ :host([data-render-mode="shadow"][icon-name='action\:filter']) {
2354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(253, 144, 181));
2355
+ }
2356
+
2357
+ :host([data-render-mode="shadow"][icon-name='action\:user_activation']) {
2358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2359
+ }
2360
+
2361
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_competitor']) {
2362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
2363
+ }
2364
+
2365
+ :host([data-render-mode="shadow"][icon-name='action\:canvas']) {
2366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
2367
+ }
2368
+
2369
+ :host([data-render-mode="shadow"][icon-name='action\:change_record_type']) {
2370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2371
+ }
2372
+
2373
+ :host([data-render-mode="shadow"][icon-name='action\:new_notebook']) {
2374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
2375
+ }
2376
+
2377
+ :host([data-render-mode="shadow"][icon-name='action\:docusign']) {
2378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 128, 219));
2379
+ }
2380
+
2381
+ :host([data-render-mode="shadow"][icon-name='action\:share_link']) {
2382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
2383
+ }
2384
+
2385
+ :host([data-render-mode="shadow"][icon-name='action\:add_file']) {
2386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2387
+ }
2388
+
2389
+ :host([data-render-mode="shadow"][icon-name='action\:edit_relationship']) {
2390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(29, 204, 191));
2391
+ }
2392
+
2393
+ :host([data-render-mode="shadow"][icon-name='action\:notebook']) {
2394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
2395
+ }
2396
+
2397
+ :host([data-render-mode="shadow"][icon-name='action\:new_lead']) {
2398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
2399
+ }
2400
+
2401
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom_object']) {
2402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(167, 212, 77));
2403
+ }
2404
+
2405
+ :host([data-render-mode="shadow"][icon-name='action\:new_account']) {
2406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
2407
+ }
2408
+
2409
+ :host([data-render-mode="shadow"][icon-name='action\:question_post_action']) {
2410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(50, 175, 92));
2411
+ }
2412
+
2413
+ :host([data-render-mode="shadow"][icon-name='action\:share_file']) {
2414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
2415
+ }
2416
+
2417
+ :host([data-render-mode="shadow"][icon-name='action\:default_custom_object']) {
2418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
2419
+ }
2420
+
2421
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_team_member']) {
2422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
2423
+ }
2424
+
2425
+ :host([data-render-mode="shadow"][icon-name='action\:add_photo_video']) {
2426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 205, 192));
2427
+ }
2428
+
2429
+ :host([data-render-mode="shadow"][icon-name='action\:sort']) {
2430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 185, 165));
2431
+ }
2432
+
2433
+ :host([data-render-mode="shadow"][icon-name='action\:call']) {
2434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(31, 202, 160));
2435
+ }
2436
+
2437
+ :host([data-render-mode="shadow"][icon-name='action\:concur']) {
2438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(76, 195, 199));
2439
+ }
2440
+
2441
+ :host([data-render-mode="shadow"][icon-name='action\:reject']) {
2442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 198, 183));
2443
+ }
2444
+
2445
+ :host([data-render-mode="shadow"][icon-name='action\:share_poll']) {
2446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 155, 225));
2447
+ }
2448
+
2449
+ :host([data-render-mode="shadow"][icon-name='action\:following']) {
2450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 207, 100));
2451
+ }
2452
+
2453
+ :host([data-render-mode="shadow"][icon-name='action\:defer']) {
2454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
2455
+ }
2456
+
2457
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_line_item']) {
2458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
2459
+ }
2460
+
2461
+ :host([data-render-mode="shadow"][icon-name='action\:social_post']) {
2462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 116, 162));
2463
+ }
2464
+
2465
+ :host([data-render-mode="shadow"][icon-name='action\:share_post']) {
2466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
2467
+ }
2468
+
2469
+ :host([data-render-mode="shadow"][icon-name='action\:view_relationship']) {
2470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2471
+ }
2472
+
2473
+ :host([data-render-mode="shadow"][icon-name='action\:adjust_value']) {
2474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 180, 108));
2475
+ }
2476
+
2477
+ :host([data-render-mode="shadow"][icon-name='action\:upload']) {
2478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2479
+ }
2480
+
2481
+ :host([data-render-mode="shadow"][icon-name='action\:remove_relationship']) {
2482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
2483
+ }
2484
+
2485
+ :host([data-render-mode="shadow"][icon-name='action\:freeze_user']) {
2486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2487
+ }
2488
+
2489
+ :host([data-render-mode="shadow"][icon-name='action\:new_person_account']) {
2490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
2491
+ }
2492
+
2493
+ :host([data-render-mode="shadow"][icon-name='action\:bug']) {
2494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 93));
2495
+ }
2496
+
2497
+ :host([data-render-mode="shadow"][icon-name='action\:apex']) {
2498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 110, 113));
2499
+ }
2500
+
2501
+ :host([data-render-mode="shadow"][icon-name='action\:new_opportunity']) {
2502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
2503
+ }
2504
+
2505
+ :host([data-render-mode="shadow"][icon-name='action\:fallback']) {
2506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
2507
+ }
2508
+
2509
+ :host([data-render-mode="shadow"][icon-name='action\:dial_in']) {
2510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
2511
+ }
2512
+
2513
+ :host([data-render-mode="shadow"][icon-name='action\:approval']) {
2514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 198, 183));
2515
+ }
2516
+
2517
+ :host([data-render-mode="shadow"][icon-name='action\:change_owner']) {
2518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2519
+ }
2520
+
2521
+ :host([data-render-mode="shadow"][icon-name='action\:new_task']) {
2522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
2523
+ }
2524
+
2525
+ :host([data-render-mode="shadow"][icon-name='action\:priority']) {
2526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 180, 57));
2527
+ }
2528
+
2529
+ :host([data-render-mode="shadow"][icon-name='action\:remove']) {
2530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2531
+ }
2532
+
2533
+ :host([data-render-mode="shadow"][icon-name='action\:web_link']) {
2534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
2535
+ }
2536
+
2537
+ :host([data-render-mode="shadow"][icon-name='action\:leave_group']) {
2538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 158, 88));
2539
+ }
2540
+
2541
+ :host([data-render-mode="shadow"][icon-name='action\:manage_perm_sets']) {
2542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2543
+ }
2544
+
2545
+ :host([data-render-mode="shadow"][icon-name='action\:close']) {
2546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
2547
+ }
2548
+
2549
+ :host([data-render-mode="shadow"][icon-name='action\:google_news']) {
2550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 103, 91));
2551
+ }
2552
+
2553
+ :host([data-render-mode="shadow"][icon-name='action\:announcement']) {
2554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(254, 143, 96));
2555
+ }
2556
+
2557
+ :host([data-render-mode="shadow"][icon-name='action\:back']) {
2558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(13, 194, 217));
2559
+ }
2560
+
2561
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom90']) {
2562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 164, 138));
2563
+ }
2564
+
2565
+ :host([data-render-mode="shadow"][icon-name='action\:download']) {
2566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2567
+ }
2568
+
2569
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom80']) {
2570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 154, 213));
2571
+ }
2572
+
2573
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom91']) {
2574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 123, 102));
2575
+ }
2576
+
2577
+ :host([data-render-mode="shadow"][icon-name='action\:search']) {
2578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 173, 235));
2579
+ }
2580
+
2581
+ :host([data-render-mode="shadow"][icon-name='action\:new_event']) {
2582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2583
+ }
2584
+
2585
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom70']) {
2586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 105, 180));
2587
+ }
2588
+
2589
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom81']) {
2590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(218, 98, 127));
2591
+ }
2592
+
2593
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom92']) {
2594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(81, 126, 130));
2595
+ }
2596
+
2597
+ :host([data-render-mode="shadow"][icon-name='action\:refresh']) {
2598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2599
+ }
2600
+
2601
+ :host([data-render-mode="shadow"][icon-name='action\:share_thanks']) {
2602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
2603
+ }
2604
+
2605
+ :host([data-render-mode="shadow"][icon-name='action\:update']) {
2606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 180, 214));
2607
+ }
2608
+
2609
+ :host([data-render-mode="shadow"][icon-name='action\:email']) {
2610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(149, 174, 197));
2611
+ }
2612
+
2613
+ :host([data-render-mode="shadow"][icon-name='action\:join_group']) {
2614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(119, 158, 242));
2615
+ }
2616
+
2617
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom60']) {
2618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 90, 136));
2619
+ }
2620
+
2621
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom71']) {
2622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 110, 227));
2623
+ }
2624
+
2625
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom82']) {
2626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(209, 91, 151));
2627
+ }
2628
+
2629
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom93']) {
2630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 77, 76));
2631
+ }
2632
+
2633
+ :host([data-render-mode="shadow"][icon-name='action\:edit']) {
2634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(29, 204, 191));
2635
+ }
2636
+
2637
+ :host([data-render-mode="shadow"][icon-name='action\:quote']) {
2638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
2639
+ }
2640
+
2641
+ :host([data-render-mode="shadow"][icon-name='action\:dropbox']) {
2642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(82, 174, 249));
2643
+ }
2644
+
2645
+ :host([data-render-mode="shadow"][icon-name='action\:description']) {
2646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
2647
+ }
2648
+
2649
+ :host([data-render-mode="shadow"][icon-name='action\:map']) {
2650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 198, 238));
2651
+ }
2652
+
2653
+ :host([data-render-mode="shadow"][icon-name='action\:user']) {
2654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
2655
+ }
2656
+
2657
+ :host([data-render-mode="shadow"][icon-name='action\:reset_password']) {
2658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2659
+ }
2660
+
2661
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom50']) {
2662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(73, 188, 211));
2663
+ }
2664
+
2665
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom61']) {
2666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 115, 118));
2667
+ }
2668
+
2669
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom72']) {
2670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(141, 155, 251));
2671
+ }
2672
+
2673
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom83']) {
2674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 128, 111));
2675
+ }
2676
+
2677
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom94']) {
2678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
2679
+ }
2680
+
2681
+ :host([data-render-mode="shadow"][icon-name='action\:clone']) {
2682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
2683
+ }
2684
+
2685
+ :host([data-render-mode="shadow"][icon-name='action\:script']) {
2686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 112, 210));
2687
+ }
2688
+
2689
+ :host([data-render-mode="shadow"][icon-name='action\:delete']) {
2690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 113, 124));
2691
+ }
2692
+
2693
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom40']) {
2694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 199, 94));
2695
+ }
2696
+
2697
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom51']) {
2698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 199, 96));
2699
+ }
2700
+
2701
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom62']) {
2702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 146, 220));
2703
+ }
2704
+
2705
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom73']) {
2706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 158, 240));
2707
+ }
2708
+
2709
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom84']) {
2710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 112, 123));
2711
+ }
2712
+
2713
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom95']) {
2714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 207, 106));
2715
+ }
2716
+
2717
+ :host([data-render-mode="shadow"][icon-name='action\:share']) {
2718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2719
+ }
2720
+
2721
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom30']) {
2722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 159, 113));
2723
+ }
2724
+
2725
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom41']) {
2726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 181, 181));
2727
+ }
2728
+
2729
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom52']) {
2730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(238, 142, 111));
2731
+ }
2732
+
2733
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom63']) {
2734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(124, 207, 96));
2735
+ }
2736
+
2737
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom74']) {
2738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(65, 200, 160));
2739
+ }
2740
+
2741
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom85']) {
2742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 104, 145));
2743
+ }
2744
+
2745
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom96']) {
2746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 157, 227));
2747
+ }
2748
+
2749
+ :host([data-render-mode="shadow"][icon-name='action\:log_event']) {
2750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
2751
+ }
2752
+
2753
+ :host([data-render-mode="shadow"][icon-name='action\:new_group']) {
2754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 182, 255));
2755
+ }
2756
+
2757
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom20']) {
2758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 199, 200));
2759
+ }
2760
+
2761
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom31']) {
2762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 104, 127));
2763
+ }
2764
+
2765
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom42']) {
2766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 91));
2767
+ }
2768
+
2769
+ :host([data-render-mode="shadow"][icon-name='action\:info']) {
2770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2771
+ }
2772
+
2773
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom53']) {
2774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 110, 131));
2775
+ }
2776
+
2777
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom64']) {
2778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 143, 216));
2779
+ }
2780
+
2781
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom75']) {
2782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(205, 159, 101));
2783
+ }
2784
+
2785
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom86']) {
2786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 96, 171));
2787
+ }
2788
+
2789
+ :host([data-render-mode="shadow"][icon-name='action\:flow']) {
2790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
2791
+ }
2792
+
2793
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom97']) {
2794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(221, 96, 133));
2795
+ }
2796
+
2797
+ :host([data-render-mode="shadow"][icon-name='action\:submit_for_approval']) {
2798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 204, 122));
2799
+ }
2800
+
2801
+ :host([data-render-mode="shadow"][icon-name='action\:new']) {
2802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(51, 188, 231));
2803
+ }
2804
+
2805
+ :host([data-render-mode="shadow"][icon-name='action\:new_campaign']) {
2806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
2807
+ }
2808
+
2809
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom10']) {
2810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(100, 136, 227));
2811
+ }
2812
+
2813
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom21']) {
2814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 122, 237));
2815
+ }
2816
+
2817
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom32']) {
2818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(56, 195, 147));
2819
+ }
2820
+
2821
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom43']) {
2822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 147, 249));
2823
+ }
2824
+
2825
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom54']) {
2826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 112, 177));
2827
+ }
2828
+
2829
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom65']) {
2830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 121, 171));
2831
+ }
2832
+
2833
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom76']) {
2834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(219, 109, 122));
2835
+ }
2836
+
2837
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom87']) {
2838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 118, 229));
2839
+ }
2840
+
2841
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom98']) {
2842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 190, 92));
2843
+ }
2844
+
2845
+ :host([data-render-mode="shadow"][icon-name='action\:new_case']) {
2846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2847
+ }
2848
+
2849
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom100']) {
2850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 93, 118));
2851
+ }
2852
+
2853
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom1']) {
2854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 123, 132));
2855
+ }
2856
+
2857
+ :host([data-render-mode="shadow"][icon-name='action\:new_contact']) {
2858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
2859
+ }
2860
+
2861
+ :host([data-render-mode="shadow"][icon-name='action\:office_365']) {
2862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 128, 65));
2863
+ }
2864
+
2865
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom11']) {
2866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(135, 132, 234));
2867
+ }
2868
+
2869
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom22']) {
2870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 133, 249));
2871
+ }
2872
+
2873
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom33']) {
2874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(151, 207, 93));
2875
+ }
2876
+
2877
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom44']) {
2878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(200, 202, 88));
2879
+ }
2880
+
2881
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom55']) {
2882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(214, 110, 224));
2883
+ }
2884
+
2885
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom66']) {
2886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 190, 95));
2887
+ }
2888
+
2889
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom77']) {
2890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(181, 93, 91));
2891
+ }
2892
+
2893
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom88']) {
2894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(153, 111, 230));
2895
+ }
2896
+
2897
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom99']) {
2898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(240, 133, 110));
2899
+ }
2900
+
2901
+ :host([data-render-mode="shadow"][icon-name='action\:add_contact']) {
2902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
2903
+ }
2904
+
2905
+ :host([data-render-mode="shadow"][icon-name='action\:evernote']) {
2906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(134, 200, 111));
2907
+ }
2908
+
2909
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom2']) {
2910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 92));
2911
+ }
2912
+
2913
+ :host([data-render-mode="shadow"][icon-name='action\:lead_convert']) {
2914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
2915
+ }
2916
+
2917
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom12']) {
2918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
2919
+ }
2920
+
2921
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom23']) {
2922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2923
+ }
2924
+
2925
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom34']) {
2926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(213, 138, 106));
2927
+ }
2928
+
2929
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom45']) {
2930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(217, 88, 121));
2931
+ }
2932
+
2933
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom56']) {
2934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(113, 141, 235));
2935
+ }
2936
+
2937
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom67']) {
2938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 125, 118));
2939
+ }
2940
+
2941
+ :host([data-render-mode="shadow"][icon-name='action\:recall']) {
2942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 105, 141));
2943
+ }
2944
+
2945
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom78']) {
2946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 149, 221));
2947
+ }
2948
+
2949
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom89']) {
2950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(62, 153, 190));
2951
+ }
2952
+
2953
+ :host([data-render-mode="shadow"][icon-name='action\:follow']) {
2954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 185, 248));
2955
+ }
2956
+
2957
+ :host([data-render-mode="shadow"][icon-name='action\:record']) {
2958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
2959
+ }
2960
+
2961
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom3']) {
2962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 180, 108));
2963
+ }
2964
+
2965
+ :host([data-render-mode="shadow"][icon-name='action\:new_note']) {
2966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
2967
+ }
2968
+
2969
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom13']) {
2970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(223, 97, 132));
2971
+ }
2972
+
2973
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom24']) {
2974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(229, 103, 152));
2975
+ }
2976
+
2977
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom35']) {
2978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 99, 126));
2979
+ }
2980
+
2981
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom46']) {
2982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 165, 231));
2983
+ }
2984
+
2985
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom57']) {
2986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 156, 221));
2987
+ }
2988
+
2989
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom68']) {
2990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 105, 121));
2991
+ }
2992
+
2993
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom79']) {
2994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(142, 211, 99));
2995
+ }
2996
+
2997
+ :host([data-render-mode="shadow"][icon-name='action\:new_child_case']) {
2998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
2999
+ }
3000
+
3001
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom4']) {
3002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 217, 81));
3003
+ }
3004
+
3005
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom14']) {
3006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 194, 179));
3007
+ }
3008
+
3009
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom25']) {
3010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(228, 111, 190));
3011
+ }
3012
+
3013
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom36']) {
3014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(212, 114, 212));
3015
+ }
3016
+
3017
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom47']) {
3018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(95, 204, 100));
3019
+ }
3020
+
3021
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom58']) {
3022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
3023
+ }
3024
+
3025
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom69']) {
3026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(237, 99, 135));
3027
+ }
3028
+
3029
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom5']) {
3030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(159, 219, 102));
3031
+ }
3032
+
3033
+ :host([data-render-mode="shadow"][icon-name='action\:goal']) {
3034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
3035
+ }
3036
+
3037
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom15']) {
3038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(247, 126, 117));
3039
+ }
3040
+
3041
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom26']) {
3042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 152, 240));
3043
+ }
3044
+
3045
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom37']) {
3046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(140, 137, 242));
3047
+ }
3048
+
3049
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom48']) {
3050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 105, 127));
3051
+ }
3052
+
3053
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom59']) {
3054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 208, 103));
3055
+ }
3056
+
3057
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom6']) {
3058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 196, 115));
3059
+ }
3060
+
3061
+ :host([data-render-mode="shadow"][icon-name='action\:log_this_event']) {
3062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
3063
+ }
3064
+
3065
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom16']) {
3066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 175, 103));
3067
+ }
3068
+
3069
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom27']) {
3070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 176, 210));
3071
+ }
3072
+
3073
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom38']) {
3074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(83, 182, 215));
3075
+ }
3076
+
3077
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom49']) {
3078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 92, 128));
3079
+ }
3080
+
3081
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom7']) {
3082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(106, 137, 229));
3083
+ }
3084
+
3085
+ :host([data-render-mode="shadow"][icon-name='action\:more']) {
3086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
3087
+ }
3088
+
3089
+ :host([data-render-mode="shadow"][icon-name='action\:add_relationship']) {
3090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
3091
+ }
3092
+
3093
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom17']) {
3094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(172, 211, 96));
3095
+ }
3096
+
3097
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom28']) {
3098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(137, 192, 89));
3099
+ }
3100
+
3101
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom39']) {
3102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(79, 190, 117));
3103
+ }
3104
+
3105
+ :host([data-render-mode="shadow"][icon-name='action\:password_unlock']) {
3106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3107
+ }
3108
+
3109
+ :host([data-render-mode="shadow"][icon-name='action\:check']) {
3110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3111
+ }
3112
+
3113
+ :host([data-render-mode="shadow"][icon-name='action\:update_status']) {
3114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(30, 199, 190));
3115
+ }
3116
+
3117
+ :host([data-render-mode="shadow"][icon-name='action\:preview']) {
3118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
3119
+ }
3120
+
3121
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom8']) {
3122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 206, 185));
448
3123
  }
449
3124
 
450
3125
  /**