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