lightning-base-components 1.16.2-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 (107) hide show
  1. package/metadata/raptor.json +120 -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/colorPickerPanel/colorPickerPanel.css +9 -0
  26. package/src/lightning/colorPickerPanel/colorPickerPanel.html +2 -2
  27. package/src/lightning/datatable/datatable.js +2 -2
  28. package/src/lightning/datatable/rowSelection.js +21 -4
  29. package/src/lightning/datetimepicker/datetimepicker.html +1 -3
  30. package/src/lightning/datetimepicker/datetimepicker.js +5 -0
  31. package/src/lightning/fileDownload/__docs__/fileDownload.md +41 -0
  32. package/src/lightning/helptext/help-text.slds.css +184 -39
  33. package/src/lightning/icon/icon.slds.css +823 -3
  34. package/src/lightning/input/input-checkbox.slds.css +291 -32
  35. package/src/lightning/input/input-text.slds.css +70 -7
  36. package/src/lightning/input/input.js +1 -1
  37. package/src/lightning/inputAddress/__docs__/inputAddress.md +1 -1
  38. package/src/lightning/inputAddress/inputAddress.js +2 -1
  39. package/src/lightning/internationalizationLibrary/datetime/intlFormat.js +20 -2
  40. package/src/lightning/iso8601Utils/iso8601Utils.js +2 -3
  41. package/src/lightning/modal/__docs__/migration.md +158 -0
  42. package/src/lightning/modal/__docs__/modal.md +414 -0
  43. package/src/lightning/modal/__examples__disabled/all/all.css +7 -0
  44. package/src/lightning/modal/__examples__disabled/all/all.html +9 -0
  45. package/src/lightning/modal/__examples__disabled/all/all.js +25 -0
  46. package/src/lightning/modal/__examples__disabled/allform/allform.css +7 -0
  47. package/src/lightning/modal/__examples__disabled/allform/allform.html +9 -0
  48. package/src/lightning/modal/__examples__disabled/allform/allform.js +49 -0
  49. package/src/lightning/modal/__examples__disabled/allmulti/allmulti.html +24 -0
  50. package/src/lightning/modal/__examples__disabled/allmulti/allmulti.js +12 -0
  51. package/src/lightning/modal/__examples__disabled/basic/basic.css +7 -0
  52. package/src/lightning/modal/__examples__disabled/basic/basic.html +9 -0
  53. package/src/lightning/modal/__examples__disabled/basic/basic.js +27 -0
  54. package/src/lightning/modal/__examples__disabled/demo/demo.html +15 -0
  55. package/src/lightning/modal/__examples__disabled/demo/demo.js +13 -0
  56. package/src/lightning/modal/__examples__disabled/demoall/demoall.html +26 -0
  57. package/src/lightning/modal/__examples__disabled/demoall/demoall.js +13 -0
  58. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.css +3 -0
  59. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.html +146 -0
  60. package/src/lightning/modal/__examples__disabled/demoallform/demoallform.js +240 -0
  61. package/src/lightning/modal/__examples__disabled/demofootless/demofootless.html +17 -0
  62. package/src/lightning/modal/__examples__disabled/demofootless/demofootless.js +11 -0
  63. package/src/lightning/modal/__examples__disabled/demoheadless/demoheadless.html +20 -0
  64. package/src/lightning/modal/__examples__disabled/demoheadless/demoheadless.js +12 -0
  65. package/src/lightning/modal/__examples__disabled/footless/footless.css +7 -0
  66. package/src/lightning/modal/__examples__disabled/footless/footless.html +9 -0
  67. package/src/lightning/modal/__examples__disabled/footless/footless.js +19 -0
  68. package/src/lightning/modal/__examples__disabled/headless/headless.css +7 -0
  69. package/src/lightning/modal/__examples__disabled/headless/headless.html +9 -0
  70. package/src/lightning/modal/__examples__disabled/headless/headless.js +27 -0
  71. package/src/lightning/modal/modal.html +3 -0
  72. package/src/lightning/modal/modal.js +93 -0
  73. package/src/lightning/modal/modal.js-meta.xml +6 -0
  74. package/src/lightning/modalBody/__docs__/modalBody.md +61 -0
  75. package/src/lightning/modalBody/modalBody.html +13 -0
  76. package/src/lightning/modalBody/modalBody.js +203 -0
  77. package/src/lightning/modalBody/modalBody.js-meta.xml +6 -0
  78. package/src/lightning/modalFooter/__docs__/modalFooter.md +72 -0
  79. package/src/lightning/modalFooter/modalFooter.html +8 -0
  80. package/src/lightning/modalFooter/modalFooter.js +161 -0
  81. package/src/lightning/modalFooter/modalFooter.js-meta.xml +6 -0
  82. package/src/lightning/modalHeader/__docs__/modalHeader.md +64 -0
  83. package/src/lightning/modalHeader/modalHeader.html +16 -0
  84. package/src/lightning/modalHeader/modalHeader.js +204 -0
  85. package/src/lightning/modalHeader/modalHeader.js-meta.xml +6 -0
  86. package/src/lightning/primitiveBubble/tooltip.slds.css +45 -1
  87. package/src/lightning/primitiveCellFactory/primitiveCellFactory.js +4 -12
  88. package/src/lightning/primitiveColorpickerButton/color-picker-button.slds.css +2994 -319
  89. package/src/lightning/primitiveDatatableIeditPanel/primitiveDatatableIeditPanel.html +14 -11
  90. package/src/lightning/primitiveDatatableIeditPanel/primitiveDatatableIeditPanel.js +1 -0
  91. package/src/lightning/primitiveIcon/icon.slds.css +823 -3
  92. package/src/lightning/radioGroup/input-radio-group.slds.css +168 -379
  93. package/src/lightning/spinner/spinner.slds.css +8 -2
  94. package/src/lightning/timepicker/timepicker.html +1 -4
  95. package/src/lightning/timepicker/timepicker.js +9 -5
  96. package/src/lightning/treeGrid/treeGrid.js +66 -1
  97. package/src/lightning/formattedAddress/__component__/formattedAddress.spec.js +0 -61
  98. package/src/lightning/formattedAddress/__component__/formattedAddressDisabled.spec.js +0 -20
  99. package/src/lightning/formattedAddress/__component__/x/basic/basic.html +0 -10
  100. package/src/lightning/formattedAddress/__component__/x/basic/basic.js +0 -17
  101. package/src/lightning/input/__component__/inputCheckbox.spec.js +0 -60
  102. package/src/lightning/input/__component__/inputDateTimePicker.spec.js +0 -60
  103. package/src/lightning/input/__component__/inputNumber.spec.js +0 -75
  104. package/src/lightning/input/__component__/inputSelection.spec.js +0 -83
  105. package/src/lightning/input/__component__/x/tall/tall.css +0 -5
  106. package/src/lightning/input/__component__/x/tall/tall.html +0 -5
  107. package/src/lightning/input/__component__/x/tall/tall.js +0 -7
@@ -1,3 +1,188 @@
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"]:focus) {
5
+ outline: 0;
6
+ }
7
+
8
+ :host([data-render-mode="shadow"]) [part~='button'] {
9
+ display: inline-flex;
10
+ position: relative;
11
+ background: none;
12
+ background-color: var(--sds-c-button-color-background, var(--sds-s-button-color-background, transparent));
13
+ background-clip: border-box;
14
+ color: var(--sds-c-button-text-color, var(--sds-s-button-text-color, inherit));
15
+ padding-left: var(
16
+ --sds-c-button-spacing-inline-start,
17
+ var(--sds-c-button-spacing-inline, var(--sds-s-button-spacing-inline))
18
+ );
19
+ padding-right: var(
20
+ --sds-c-button-spacing-inline-end,
21
+ var(--sds-c-button-spacing-inline, var(--sds-s-button-spacing-inline))
22
+ );
23
+ padding-top: var(
24
+ --sds-c-button-spacing-block-start,
25
+ var(--sds-c-button-spacing-block, var(--sds-s-button-spacing-block))
26
+ );
27
+ padding-bottom: var(
28
+ --sds-c-button-spacing-block-start,
29
+ var(--sds-c-button-spacing-block, var(--sds-s-button-spacing-block))
30
+ );
31
+ border-width: var(--sds-c-button-sizing-border, var(--sds-s-button-sizing-border, 1px));
32
+ border-style: solid;
33
+ border-color: var(--sds-c-button-color-border, var(--sds-s-button-color-border, transparent));
34
+ border-start-start-radius: var(
35
+ --sds-c-button-radius-border-startstart,
36
+ var(
37
+ --sds-c-button-radius-border,
38
+ var(
39
+ --sds-s-button-radius-border-startstart,
40
+ var(--sds-s-button-radius-border, var(--sds-g-radius-border-2, 0.25rem))
41
+ )
42
+ )
43
+ );
44
+ border-start-end-radius: var(
45
+ --sds-c-button-radius-border-startend,
46
+ var(
47
+ --sds-c-button-radius-border,
48
+ var(
49
+ --sds-s-button-radius-border-startend,
50
+ var(--sds-s-button-radius-border, var(--sds-g-radius-border-2, 0.25rem))
51
+ )
52
+ )
53
+ );
54
+ border-end-start-radius: var(
55
+ --sds-c-button-radius-border-endstart,
56
+ var(
57
+ --sds-c-button-radius-border,
58
+ var(
59
+ --sds-s-button-radius-border-endstart,
60
+ var(--sds-s-button-radius-border, var(--sds-g-radius-border-2, 0.25rem))
61
+ )
62
+ )
63
+ );
64
+ border-end-end-radius: var(
65
+ --sds-c-button-radius-border-endend,
66
+ var(
67
+ --sds-c-button-radius-border,
68
+ var(
69
+ --sds-s-button-radius-border-endend,
70
+ var(--sds-s-button-radius-border, var(--sds-g-radius-border-2, 0.25rem))
71
+ )
72
+ )
73
+ );
74
+ box-shadow: var(--sds-c-button-shadow, var(--sds-s-button-shadow));
75
+ width: var(--sds-c-button-sizing-width);
76
+
77
+ /* this line height hook is incorrect but is used in core - need to get teams to change */
78
+ /* stylelint-disable-next-line sds-stylelint-plugin/styling-hooks-pattern */
79
+ line-height: var(--sds-c-button-line-height);
80
+ white-space: normal;
81
+ user-select: none;
82
+ align-items: center;
83
+ text-decoration: var(--sds-c-button-font-decoration, none);
84
+ appearance: none;
85
+ }
86
+
87
+ :host([data-render-mode="shadow"]) [part~='button']:hover {
88
+ --sds-c-button-text-color: var(
89
+ --sds-c-button-text-color-hover,
90
+ var(--sds-s-button-text-color-hover, #0176d3)
91
+ );
92
+ --sds-c-button-color-background: var(
93
+ --sds-c-button-color-background-hover,
94
+ var(--sds-s-button-color-background-hover)
95
+ );
96
+ --sds-c-button-color-border: var(--sds-c-button-color-border-hover, var(--sds-s-button-color-border-hover));
97
+
98
+ cursor: pointer;
99
+ }
100
+
101
+ :host([data-render-mode="shadow"]) [part~='button']:focus {
102
+ --sds-c-button-color-background: var(
103
+ --sds-c-button-color-background-focus,
104
+ var(--sds-s-button-color-background-focus)
105
+ );
106
+ --sds-c-button-color-border: var(
107
+ --sds-c-button-color-border-focus,
108
+ var(--sds-s-button-color-border-focus, #0176d3)
109
+ );
110
+ --sds-c-button-text-color: var(
111
+ --sds-c-button-text-color-focus,
112
+ var(--sds-s-button-text-color-focus, #0176d3)
113
+ );
114
+ --sds-c-button-shadow: var(--sds-c-button-shadow-focus, var(--sds-s-button-shadow-focus, #0176d3 0 0 3px));
115
+
116
+ outline: 0;
117
+ }
118
+
119
+ :host([data-render-mode="shadow"]) [part~='button']:active {
120
+ --sds-c-button-text-color: var(
121
+ --sds-c-button-text-color-active,
122
+ var(--sds-s-button-text-color-active, currentColor)
123
+ );
124
+ --sds-c-button-color-background: var(
125
+ --sds-c-button-color-background-active,
126
+ var(--sds-s-button-color-background-active)
127
+ );
128
+ --sds-c-button-color-border: var(
129
+ --sds-c-button-color-border-active,
130
+ var(--sds-s-button-color-border-active, #0176d3)
131
+ );
132
+ }
133
+
134
+ :host([data-render-mode="shadow"]) [part~='button']:disabled {
135
+ --sds-c-button-text-color: var(--sds-c-button-text-color-disabled, #939393);
136
+ --sds-c-button-color-background: var(--sds-c-button-color-background-disabled);
137
+ --sds-c-button-color-border: var(--sds-c-button-color-border-disabled);
138
+
139
+ pointer-events: none;
140
+ }
141
+
142
+ :host([data-render-mode="shadow"]) [part~='button']:disabled * {
143
+ pointer-events: none;
144
+ }
145
+
146
+ /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
147
+ Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
148
+
149
+ :host([data-render-mode="shadow"]) {
150
+ /**
151
+ * Establish independent formatting context, we don't want ancestor rules affecting our layout.
152
+ * This assumes there will not be a direct, child inline-level element.
153
+ * See https://www.w3.org/TR/css-display-3/#establish-an-independent-formatting-context
154
+ */
155
+ display: inline-flex;
156
+ }
157
+
158
+ :host([data-render-mode="shadow"]) [part~='boundary'] {
159
+ padding-block-start: var(--sds-c-icon-spacing-block-start, var(--sds-c-icon-spacing));
160
+ padding-block-end: var(--sds-c-icon-spacing-block-end, var(--sds-c-icon-spacing));
161
+ padding-inline-start: var(--sds-c-icon-spacing-inline-start, var(--sds-c-icon-spacing));
162
+ padding-inline-end: var(--sds-c-icon-spacing-inline-end, var(--sds-c-icon-spacing));
163
+ border-radius: var(--sds-c-icon-radius-border);
164
+ border-width: var(--sds-c-icon-sizing-border, 1px);
165
+ border-style: solid;
166
+ border-color: var(--sds-c-icon-color-border, transparent);
167
+ background-color: var(--sds-c-icon-color-background);
168
+ }
169
+
170
+ :host([data-render-mode="shadow"]) [part~='icon'] {
171
+ display: flex; /* See line #5 */
172
+ height: var(--sds-c-icon-sizing-height, var(--sds-c-icon-sizing));
173
+ width: var(--sds-c-icon-sizing-width, var(--sds-c-icon-sizing));
174
+ color: var(--sds-c-icon-color-foreground);
175
+ }
176
+
177
+ /**
178
+ * Normalize svgs and control width/height with Styling Hooks
179
+ */
180
+
181
+ :host([data-render-mode="shadow"]) svg {
182
+ width: 100%;
183
+ height: 100%;
184
+ }
185
+
1
186
  /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
2
187
  Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
3
188
 
@@ -625,6 +810,3090 @@
625
810
  justify-content: center;
626
811
  }
627
812
 
813
+ :host([data-render-mode="shadow"][icon-name='standard\:contact']) {
814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
815
+ }
816
+
817
+ :host([data-render-mode="shadow"][icon-name='standard\:multi_select_checkbox']) {
818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
819
+ }
820
+
821
+ :host([data-render-mode="shadow"][icon-name='standard\:work_order']) {
822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 227, 194));
823
+ }
824
+
825
+ :host([data-render-mode="shadow"][icon-name='standard\:post']) {
826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
827
+ }
828
+
829
+ :host([data-render-mode="shadow"][icon-name='standard\:global_constant']) {
830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
831
+ }
832
+
833
+ :host([data-render-mode="shadow"][icon-name='standard\:change_request']) {
834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(11, 130, 124));
835
+ }
836
+
837
+ :host([data-render-mode="shadow"][icon-name='standard\:carousel']) {
838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
839
+ }
840
+
841
+ :host([data-render-mode="shadow"][icon-name='standard\:work_contract']) {
842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
843
+ }
844
+
845
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_skill']) {
846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
847
+ }
848
+
849
+ :host([data-render-mode="shadow"][icon-name='standard\:system_and_global_variable']) {
850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
851
+ }
852
+
853
+ :host([data-render-mode="shadow"][icon-name='standard\:segments']) {
854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
855
+ }
856
+
857
+ :host([data-render-mode="shadow"][icon-name='standard\:account_info']) {
858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
859
+ }
860
+
861
+ :host([data-render-mode="shadow"][icon-name='standard\:goals']) {
862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
863
+ }
864
+
865
+ :host([data-render-mode="shadow"][icon-name='standard\:tour_check']) {
866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
867
+ }
868
+
869
+ :host([data-render-mode="shadow"][icon-name='standard\:adjust_value']) {
870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 180, 108));
871
+ }
872
+
873
+ :host([data-render-mode="shadow"][icon-name='standard\:case_wrap_up']) {
874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
875
+ }
876
+
877
+ :host([data-render-mode="shadow"][icon-name='standard\:investment_account']) {
878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
879
+ }
880
+
881
+ :host([data-render-mode="shadow"][icon-name='standard\:store']) {
882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
883
+ }
884
+
885
+ :host([data-render-mode="shadow"][icon-name='standard\:slider']) {
886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
887
+ }
888
+
889
+ :host([data-render-mode="shadow"][icon-name='standard\:output']) {
890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
891
+ }
892
+
893
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_ingredient']) {
894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
895
+ }
896
+
897
+ :host([data-render-mode="shadow"][icon-name='standard\:store_group']) {
898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
899
+ }
900
+
901
+ :host([data-render-mode="shadow"][icon-name='standard\:all']) {
902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
903
+ }
904
+
905
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_policy']) {
906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
907
+ }
908
+
909
+ :host([data-render-mode="shadow"][icon-name='standard\:picklist_choice']) {
910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
911
+ }
912
+
913
+ :host([data-render-mode="shadow"][icon-name='standard\:choice']) {
914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
915
+ }
916
+
917
+ :host([data-render-mode="shadow"][icon-name='standard\:app']) {
918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
919
+ }
920
+
921
+ :host([data-render-mode="shadow"][icon-name='standard\:default']) {
922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
923
+ }
924
+
925
+ :host([data-render-mode="shadow"][icon-name='standard\:case_milestone']) {
926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
927
+ }
928
+
929
+ :host([data-render-mode="shadow"][icon-name='standard\:today']) {
930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
931
+ }
932
+
933
+ :host([data-render-mode="shadow"][icon-name='standard\:buyer_account']) {
934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
935
+ }
936
+
937
+ :host([data-render-mode="shadow"][icon-name='standard\:lead_list']) {
938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
939
+ }
940
+
941
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_template']) {
942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
943
+ }
944
+
945
+ :host([data-render-mode="shadow"][icon-name='standard\:tableau']) {
946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(15, 30, 60));
947
+ }
948
+
949
+ :host([data-render-mode="shadow"][icon-name='standard\:shift']) {
950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
951
+ }
952
+
953
+ :host([data-render-mode="shadow"][icon-name='standard\:product_item_transaction']) {
954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
955
+ }
956
+
957
+ :host([data-render-mode="shadow"][icon-name='standard\:person_language']) {
958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
959
+ }
960
+
961
+ :host([data-render-mode="shadow"][icon-name='standard\:apex']) {
962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
963
+ }
964
+
965
+ :host([data-render-mode="shadow"][icon-name='standard\:reply_text']) {
966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 101));
967
+ }
968
+
969
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_private']) {
970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
971
+ }
972
+
973
+ :host([data-render-mode="shadow"][icon-name='standard\:immunization']) {
974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
975
+ }
976
+
977
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_downtime_period']) {
978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
979
+ }
980
+
981
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity_contact role']) {
982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
983
+ }
984
+
985
+ :host([data-render-mode="shadow"][icon-name='standard\:retail_banking_console']) {
986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
987
+ }
988
+
989
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_members']) {
990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
991
+ }
992
+
993
+ :host([data-render-mode="shadow"][icon-name='standard\:apps_admin']) {
994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
995
+ }
996
+
997
+ :host([data-render-mode="shadow"][icon-name='standard\:datadotcom']) {
998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
999
+ }
1000
+
1001
+ :host([data-render-mode="shadow"][icon-name='standard\:settings']) {
1002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1003
+ }
1004
+
1005
+ :host([data-render-mode="shadow"][icon-name='standard\:network_contract']) {
1006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1007
+ }
1008
+
1009
+ :host([data-render-mode="shadow"][icon-name='standard\:product_item']) {
1010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 217));
1011
+ }
1012
+
1013
+ :host([data-render-mode="shadow"][icon-name='standard\:metrics']) {
1014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
1015
+ }
1016
+
1017
+ :host([data-render-mode="shadow"][icon-name='standard\:topic2']) {
1018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 208));
1019
+ }
1020
+
1021
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_allocation']) {
1022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1023
+ }
1024
+
1025
+ :host([data-render-mode="shadow"][icon-name='standard\:care_request_reviewer']) {
1026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1027
+ }
1028
+
1029
+ :host([data-render-mode="shadow"][icon-name='standard\:approval']) {
1030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 204, 122));
1031
+ }
1032
+
1033
+ :host([data-render-mode="shadow"][icon-name='standard\:work_queue']) {
1034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1035
+ }
1036
+
1037
+ :host([data-render-mode="shadow"][icon-name='standard\:iot_orchestrations']) {
1038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1039
+ }
1040
+
1041
+ :host([data-render-mode="shadow"][icon-name='standard\:visualforce_page']) {
1042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1043
+ }
1044
+
1045
+ :host([data-render-mode="shadow"][icon-name='standard\:person_account']) {
1046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1047
+ }
1048
+
1049
+ :host([data-render-mode="shadow"][icon-name='standard\:entity']) {
1050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
1051
+ }
1052
+
1053
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_location']) {
1054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1055
+ }
1056
+
1057
+ :host([data-render-mode="shadow"][icon-name='standard\:qualifications']) {
1058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1059
+ }
1060
+
1061
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_policy']) {
1062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1063
+ }
1064
+
1065
+ :host([data-render-mode="shadow"][icon-name='standard\:form']) {
1066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1067
+ }
1068
+
1069
+ :host([data-render-mode="shadow"][icon-name='standard\:products']) {
1070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1071
+ }
1072
+
1073
+ :host([data-render-mode="shadow"][icon-name='standard\:order_item']) {
1074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 211));
1075
+ }
1076
+
1077
+ :host([data-render-mode="shadow"][icon-name='standard\:read_receipts']) {
1078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1079
+ }
1080
+
1081
+ :host([data-render-mode="shadow"][icon-name='standard\:javascript_button']) {
1082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1083
+ }
1084
+
1085
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_asset']) {
1086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1087
+ }
1088
+
1089
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_rule']) {
1090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
1091
+ }
1092
+
1093
+ :host([data-render-mode="shadow"][icon-name='standard\:loop']) {
1094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1095
+ }
1096
+
1097
+ :host([data-render-mode="shadow"][icon-name='standard\:portal_roles_and_subordinates']) {
1098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
1099
+ }
1100
+
1101
+ :host([data-render-mode="shadow"][icon-name='standard\:work_capacity_limit']) {
1102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1103
+ }
1104
+
1105
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_organization']) {
1106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1107
+ }
1108
+
1109
+ :host([data-render-mode="shadow"][icon-name='standard\:workforce_engagement']) {
1110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(157, 56, 86));
1111
+ }
1112
+
1113
+ :host([data-render-mode="shadow"][icon-name='standard\:constant']) {
1114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1115
+ }
1116
+
1117
+ :host([data-render-mode="shadow"][icon-name='standard\:marketing_actions']) {
1118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
1119
+ }
1120
+
1121
+ :host([data-render-mode="shadow"][icon-name='standard\:case_transcript']) {
1122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1123
+ }
1124
+
1125
+ :host([data-render-mode="shadow"][icon-name='standard\:timesheet_entry']) {
1126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
1127
+ }
1128
+
1129
+ :host([data-render-mode="shadow"][icon-name='standard\:key_dates']) {
1130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
1131
+ }
1132
+
1133
+ :host([data-render-mode="shadow"][icon-name='standard\:multi_picklist']) {
1134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1135
+ }
1136
+
1137
+ :host([data-render-mode="shadow"][icon-name='standard\:product_workspace']) {
1138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1139
+ }
1140
+
1141
+ :host([data-render-mode="shadow"][icon-name='standard\:visit_templates']) {
1142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1143
+ }
1144
+
1145
+ :host([data-render-mode="shadow"][icon-name='standard\:restriction_policy']) {
1146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1147
+ }
1148
+
1149
+ :host([data-render-mode="shadow"][icon-name='standard\:task']) {
1150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1151
+ }
1152
+
1153
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_best']) {
1154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1155
+ }
1156
+
1157
+ :host([data-render-mode="shadow"][icon-name='standard\:attach']) {
1158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
1159
+ }
1160
+
1161
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_action']) {
1162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
1163
+ }
1164
+
1165
+ :host([data-render-mode="shadow"][icon-name='standard\:section']) {
1166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1167
+ }
1168
+
1169
+ :host([data-render-mode="shadow"][icon-name='standard\:service_request']) {
1170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
1171
+ }
1172
+
1173
+ :host([data-render-mode="shadow"][icon-name='standard\:orders']) {
1174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 158, 217));
1175
+ }
1176
+
1177
+ :host([data-render-mode="shadow"][icon-name='standard\:propagation_policy']) {
1178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1179
+ }
1180
+
1181
+ :host([data-render-mode="shadow"][icon-name='standard\:budget']) {
1182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
1183
+ }
1184
+
1185
+ :host([data-render-mode="shadow"][icon-name='standard\:report_type']) {
1186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 198, 90));
1187
+ }
1188
+
1189
+ :host([data-render-mode="shadow"][icon-name='standard\:past_chat']) {
1190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
1191
+ }
1192
+
1193
+ :host([data-render-mode="shadow"][icon-name='standard\:feedback']) {
1194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 161, 234));
1195
+ }
1196
+
1197
+ :host([data-render-mode="shadow"][icon-name='standard\:action_list_component']) {
1198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(88, 118, 163));
1199
+ }
1200
+
1201
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity_splits']) {
1202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1203
+ }
1204
+
1205
+ :host([data-render-mode="shadow"][icon-name='standard\:location_permit']) {
1206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
1207
+ }
1208
+
1209
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_user']) {
1210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1211
+ }
1212
+
1213
+ :host([data-render-mode="shadow"][icon-name='standard\:filter_criteria']) {
1214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1215
+ }
1216
+
1217
+ :host([data-render-mode="shadow"][icon-name='standard\:trailhead']) {
1218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 46, 97));
1219
+ }
1220
+
1221
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlements']) {
1222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
1223
+ }
1224
+
1225
+ :host([data-render-mode="shadow"][icon-name='standard\:checkout']) {
1226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1227
+ }
1228
+
1229
+ :host([data-render-mode="shadow"][icon-name='standard\:formula']) {
1230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1231
+ }
1232
+
1233
+ :host([data-render-mode="shadow"][icon-name='standard\:case_log_a_call']) {
1234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1235
+ }
1236
+
1237
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_pattern_entry']) {
1238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1239
+ }
1240
+
1241
+ :host([data-render-mode="shadow"][icon-name='standard\:thanks_loading']) {
1242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
1243
+ }
1244
+
1245
+ :host([data-render-mode="shadow"][icon-name='standard\:job_family']) {
1246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1247
+ }
1248
+
1249
+ :host([data-render-mode="shadow"][icon-name='standard\:service_appointment_capacity_usage']) {
1250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1251
+ }
1252
+
1253
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_levels']) {
1254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1255
+ }
1256
+
1257
+ :host([data-render-mode="shadow"][icon-name='standard\:letterhead']) {
1258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1259
+ }
1260
+
1261
+ :host([data-render-mode="shadow"][icon-name='standard\:promotions_workspace']) {
1262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1263
+ }
1264
+
1265
+ :host([data-render-mode="shadow"][icon-name='standard\:email_chatter']) {
1266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1267
+ }
1268
+
1269
+ :host([data-render-mode="shadow"][icon-name='standard\:document_reference']) {
1270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1271
+ }
1272
+
1273
+ :host([data-render-mode="shadow"][icon-name='standard\:announcement']) {
1274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
1275
+ }
1276
+
1277
+ :host([data-render-mode="shadow"][icon-name='standard\:field_sales']) {
1278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
1279
+ }
1280
+
1281
+ :host([data-render-mode="shadow"][icon-name='standard\:bot']) {
1282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 143));
1283
+ }
1284
+
1285
+ :host([data-render-mode="shadow"][icon-name='standard\:macros']) {
1286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
1287
+ }
1288
+
1289
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard_ea']) {
1290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1291
+ }
1292
+
1293
+ :host([data-render-mode="shadow"][icon-name='standard\:job_profile']) {
1294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1295
+ }
1296
+
1297
+ :host([data-render-mode="shadow"][icon-name='standard\:steps']) {
1298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1299
+ }
1300
+
1301
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_relationship']) {
1302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
1303
+ }
1304
+
1305
+ :host([data-render-mode="shadow"][icon-name='standard\:high_velocity_sales']) {
1306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 201));
1307
+ }
1308
+
1309
+ :host([data-render-mode="shadow"][icon-name='standard\:brand']) {
1310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1311
+ }
1312
+
1313
+ :host([data-render-mode="shadow"][icon-name='standard\:historical_adherence']) {
1314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 180, 167));
1315
+ }
1316
+
1317
+ :host([data-render-mode="shadow"][icon-name='standard\:visits']) {
1318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1319
+ }
1320
+
1321
+ :host([data-render-mode="shadow"][icon-name='standard\:einstein_replies']) {
1322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 101));
1323
+ }
1324
+
1325
+ :host([data-render-mode="shadow"][icon-name='standard\:coaching']) {
1326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 117, 148));
1327
+ }
1328
+
1329
+ :host([data-render-mode="shadow"][icon-name='standard\:record_lookup']) {
1330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1331
+ }
1332
+
1333
+ :host([data-render-mode="shadow"][icon-name='standard\:product_service_campaign_item']) {
1334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1335
+ }
1336
+
1337
+ :host([data-render-mode="shadow"][icon-name='standard\:scheduling_constraint']) {
1338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1339
+ }
1340
+
1341
+ :host([data-render-mode="shadow"][icon-name='standard\:lightning_component']) {
1342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1343
+ }
1344
+
1345
+ :host([data-render-mode="shadow"][icon-name='standard\:search']) {
1346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
1347
+ }
1348
+
1349
+ :host([data-render-mode="shadow"][icon-name='standard\:connected_apps']) {
1350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
1351
+ }
1352
+
1353
+ :host([data-render-mode="shadow"][icon-name='standard\:swarm_request']) {
1354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 110, 140));
1355
+ }
1356
+
1357
+ :host([data-render-mode="shadow"][icon-name='standard\:work_type_group']) {
1358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1359
+ }
1360
+
1361
+ :host([data-render-mode="shadow"][icon-name='standard\:education']) {
1362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1363
+ }
1364
+
1365
+ :host([data-render-mode="shadow"][icon-name='standard\:work_type']) {
1366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1367
+ }
1368
+
1369
+ :host([data-render-mode="shadow"][icon-name='standard\:travel_mode']) {
1370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
1371
+ }
1372
+
1373
+ :host([data-render-mode="shadow"][icon-name='standard\:environment_hub']) {
1374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1375
+ }
1376
+
1377
+ :host([data-render-mode="shadow"][icon-name='standard\:identifier']) {
1378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
1379
+ }
1380
+
1381
+ :host([data-render-mode="shadow"][icon-name='standard\:cms']) {
1382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
1383
+ }
1384
+
1385
+ :host([data-render-mode="shadow"][icon-name='standard\:call_coaching']) {
1386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1387
+ }
1388
+
1389
+ :host([data-render-mode="shadow"][icon-name='standard\:salesforce_cms']) {
1390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 223));
1391
+ }
1392
+
1393
+ :host([data-render-mode="shadow"][icon-name='standard\:thanks']) {
1394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
1395
+ }
1396
+
1397
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory_member']) {
1398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1399
+ }
1400
+
1401
+ :host([data-render-mode="shadow"][icon-name='standard\:work_forecast']) {
1402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1403
+ }
1404
+
1405
+ :host([data-render-mode="shadow"][icon-name='standard\:holiday_operating_hours']) {
1406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
1407
+ }
1408
+
1409
+ :host([data-render-mode="shadow"][icon-name='standard\:user_role']) {
1410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(143, 201, 110));
1411
+ }
1412
+
1413
+ :host([data-render-mode="shadow"][icon-name='standard\:observation_component']) {
1414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1415
+ }
1416
+
1417
+ :host([data-render-mode="shadow"][icon-name='standard\:orchestrator']) {
1418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 110, 179));
1419
+ }
1420
+
1421
+ :host([data-render-mode="shadow"][icon-name='standard\:work_capacity_usage']) {
1422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1423
+ }
1424
+
1425
+ :host([data-render-mode="shadow"][icon-name='standard\:record_create']) {
1426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1427
+ }
1428
+
1429
+ :host([data-render-mode="shadow"][icon-name='standard\:campaign_members']) {
1430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
1431
+ }
1432
+
1433
+ :host([data-render-mode="shadow"][icon-name='standard\:retail_banking']) {
1434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
1435
+ }
1436
+
1437
+ :host([data-render-mode="shadow"][icon-name='standard\:product_service_campaign']) {
1438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1439
+ }
1440
+
1441
+ :host([data-render-mode="shadow"][icon-name='standard\:portal_roles']) {
1442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 137, 80));
1443
+ }
1444
+
1445
+ :host([data-render-mode="shadow"][icon-name='standard\:calibration']) {
1446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
1447
+ }
1448
+
1449
+ :host([data-render-mode="shadow"][icon-name='standard\:answer_public']) {
1450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1451
+ }
1452
+
1453
+ :host([data-render-mode="shadow"][icon-name='standard\:display_text']) {
1454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1455
+ }
1456
+
1457
+ :host([data-render-mode="shadow"][icon-name='standard\:product_consumed_state']) {
1458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(6, 165, 154));
1459
+ }
1460
+
1461
+ :host([data-render-mode="shadow"][icon-name='standard\:unmatched']) {
1462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
1463
+ }
1464
+
1465
+ :host([data-render-mode="shadow"][icon-name='standard\:partners']) {
1466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1467
+ }
1468
+
1469
+ :host([data-render-mode="shadow"][icon-name='standard\:email_iq']) {
1470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
1471
+ }
1472
+
1473
+ :host([data-render-mode="shadow"][icon-name='standard\:service_crew']) {
1474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
1475
+ }
1476
+
1477
+ :host([data-render-mode="shadow"][icon-name='standard\:payment_gateway']) {
1478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(11, 130, 124));
1479
+ }
1480
+
1481
+ :host([data-render-mode="shadow"][icon-name='standard\:voice_call']) {
1482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(48, 200, 90));
1483
+ }
1484
+
1485
+ :host([data-render-mode="shadow"][icon-name='standard\:cancel_checkout']) {
1486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1487
+ }
1488
+
1489
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_warranty']) {
1490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
1491
+ }
1492
+
1493
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_capacity']) {
1494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
1495
+ }
1496
+
1497
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_programs']) {
1498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1499
+ }
1500
+
1501
+ :host([data-render-mode="shadow"][icon-name='standard\:quip']) {
1502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(211, 69, 29));
1503
+ }
1504
+
1505
+ :host([data-render-mode="shadow"][icon-name='standard\:quip_sheet']) {
1506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(48, 200, 90));
1507
+ }
1508
+
1509
+ :host([data-render-mode="shadow"][icon-name='standard\:timeslot']) {
1510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 178, 76));
1511
+ }
1512
+
1513
+ :host([data-render-mode="shadow"][icon-name='standard\:live_chat']) {
1514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
1515
+ }
1516
+
1517
+ :host([data-render-mode="shadow"][icon-name='standard\:service_request_detail']) {
1518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1519
+ }
1520
+
1521
+ :host([data-render-mode="shadow"][icon-name='standard\:med_rec_statement_recommendation']) {
1522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(128, 140, 222));
1523
+ }
1524
+
1525
+ :host([data-render-mode="shadow"][icon-name='standard\:job_position']) {
1526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1527
+ }
1528
+
1529
+ :host([data-render-mode="shadow"][icon-name='standard\:sobject_collection']) {
1530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1531
+ }
1532
+
1533
+ :host([data-render-mode="shadow"][icon-name='standard\:user']) {
1534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1535
+ }
1536
+
1537
+ :host([data-render-mode="shadow"][icon-name='standard\:client']) {
1538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
1539
+ }
1540
+
1541
+ :host([data-render-mode="shadow"][icon-name='standard\:screen']) {
1542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1543
+ }
1544
+
1545
+ :host([data-render-mode="shadow"][icon-name='standard\:portal']) {
1546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(174, 199, 112));
1547
+ }
1548
+
1549
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_request']) {
1550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
1551
+ }
1552
+
1553
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_audit']) {
1554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
1555
+ }
1556
+
1557
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_preference']) {
1558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
1559
+ }
1560
+
1561
+ :host([data-render-mode="shadow"][icon-name='standard\:first_non_empty']) {
1562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
1563
+ }
1564
+
1565
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_360']) {
1566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(3, 46, 97));
1567
+ }
1568
+
1569
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_job']) {
1570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1571
+ }
1572
+
1573
+ :host([data-render-mode="shadow"][icon-name='standard\:resource_absence']) {
1574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
1575
+ }
1576
+
1577
+ :host([data-render-mode="shadow"][icon-name='standard\:text_template']) {
1578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1579
+ }
1580
+
1581
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_template']) {
1582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1583
+ }
1584
+
1585
+ :host([data-render-mode="shadow"][icon-name='standard\:lightning_usage']) {
1586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1587
+ }
1588
+
1589
+ :host([data-render-mode="shadow"][icon-name='standard\:product_transfer_state']) {
1590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 115, 79));
1591
+ }
1592
+
1593
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_dispense']) {
1594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 150, 215));
1595
+ }
1596
+
1597
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement']) {
1598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1599
+ }
1600
+
1601
+ :host([data-render-mode="shadow"][icon-name='standard\:empty']) {
1602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
1603
+ }
1604
+
1605
+ :host([data-render-mode="shadow"][icon-name='standard\:text']) {
1606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1607
+ }
1608
+
1609
+ :host([data-render-mode="shadow"][icon-name='standard\:delegated_account']) {
1610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1611
+ }
1612
+
1613
+ :host([data-render-mode="shadow"][icon-name='standard\:fulfillment_order']) {
1614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(185, 172, 145));
1615
+ }
1616
+
1617
+ :host([data-render-mode="shadow"][icon-name='standard\:case_email']) {
1618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1619
+ }
1620
+
1621
+ :host([data-render-mode="shadow"][icon-name='standard\:account']) {
1622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1623
+ }
1624
+
1625
+ :host([data-render-mode="shadow"][icon-name='standard\:coupon_codes']) {
1626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1627
+ }
1628
+
1629
+ :host([data-render-mode="shadow"][icon-name='standard\:assignment']) {
1630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1631
+ }
1632
+
1633
+ :host([data-render-mode="shadow"][icon-name='standard\:wealth_management_console']) {
1634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
1635
+ }
1636
+
1637
+ :host([data-render-mode="shadow"][icon-name='standard\:task2']) {
1638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
1639
+ }
1640
+
1641
+ :host([data-render-mode="shadow"][icon-name='standard\:patient_medication_dosage']) {
1642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1643
+ }
1644
+
1645
+ :host([data-render-mode="shadow"][icon-name='standard\:code_playground']) {
1646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1647
+ }
1648
+
1649
+ :host([data-render-mode="shadow"][icon-name='standard\:social']) {
1650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 116, 162));
1651
+ }
1652
+
1653
+ :host([data-render-mode="shadow"][icon-name='standard\:endorsement']) {
1654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
1655
+ }
1656
+
1657
+ :host([data-render-mode="shadow"][icon-name='standard\:folder']) {
1658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
1659
+ }
1660
+
1661
+ :host([data-render-mode="shadow"][icon-name='standard\:service_crew_member']) {
1662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1663
+ }
1664
+
1665
+ :host([data-render-mode="shadow"][icon-name='standard\:variation_attribute_setup']) {
1666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1667
+ }
1668
+
1669
+ :host([data-render-mode="shadow"][icon-name='standard\:flow']) {
1670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1671
+ }
1672
+
1673
+ :host([data-render-mode="shadow"][icon-name='standard\:recipe']) {
1674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(1, 118, 211));
1675
+ }
1676
+
1677
+ :host([data-render-mode="shadow"][icon-name='standard\:expense_report_entry']) {
1678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
1679
+ }
1680
+
1681
+ :host([data-render-mode="shadow"][icon-name='standard\:employee']) {
1682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1683
+ }
1684
+
1685
+ :host([data-render-mode="shadow"][icon-name='standard\:omni_supervisor']) {
1686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
1687
+ }
1688
+
1689
+ :host([data-render-mode="shadow"][icon-name='standard\:capacity_plan']) {
1690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1691
+ }
1692
+
1693
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_object']) {
1694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
1695
+ }
1696
+
1697
+ :host([data-render-mode="shadow"][icon-name='standard\:product']) {
1698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
1699
+ }
1700
+
1701
+ :host([data-render-mode="shadow"][icon-name='standard\:topic']) {
1702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
1703
+ }
1704
+
1705
+ :host([data-render-mode="shadow"][icon-name='standard\:product_required']) {
1706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
1707
+ }
1708
+
1709
+ :host([data-render-mode="shadow"][icon-name='standard\:dynamic_record_choice']) {
1710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1711
+ }
1712
+
1713
+ :host([data-render-mode="shadow"][icon-name='standard\:aggregation_policy']) {
1714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1715
+ }
1716
+
1717
+ :host([data-render-mode="shadow"][icon-name='standard\:warranty_term']) {
1718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1719
+ }
1720
+
1721
+ :host([data-render-mode="shadow"][icon-name='standard\:process']) {
1722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1723
+ }
1724
+
1725
+ :host([data-render-mode="shadow"][icon-name='standard\:swarm_session']) {
1726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 103, 91));
1727
+ }
1728
+
1729
+ :host([data-render-mode="shadow"][icon-name='standard\:people']) {
1730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
1731
+ }
1732
+
1733
+ :host([data-render-mode="shadow"][icon-name='standard\:medication']) {
1734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 192, 118));
1735
+ }
1736
+
1737
+ :host([data-render-mode="shadow"][icon-name='standard\:reward']) {
1738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
1739
+ }
1740
+
1741
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_contact']) {
1742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
1743
+ }
1744
+
1745
+ :host([data-render-mode="shadow"][icon-name='standard\:bundle_policy']) {
1746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1747
+ }
1748
+
1749
+ :host([data-render-mode="shadow"][icon-name='standard\:performance']) {
1750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 177, 86));
1751
+ }
1752
+
1753
+ :host([data-render-mode="shadow"][icon-name='standard\:promotions']) {
1754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1755
+ }
1756
+
1757
+ :host([data-render-mode="shadow"][icon-name='standard\:case_comment']) {
1758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1759
+ }
1760
+
1761
+ :host([data-render-mode="shadow"][icon-name='standard\:price_book_entries']) {
1762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1763
+ }
1764
+
1765
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_channel']) {
1766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1767
+ }
1768
+
1769
+ :host([data-render-mode="shadow"][icon-name='standard\:apex_plugin']) {
1770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1771
+ }
1772
+
1773
+ :host([data-render-mode="shadow"][icon-name='standard\:campaign']) {
1774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
1775
+ }
1776
+
1777
+ :host([data-render-mode="shadow"][icon-name='standard\:contact_request']) {
1778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 137, 84));
1779
+ }
1780
+
1781
+ :host([data-render-mode="shadow"][icon-name='standard\:business_hours']) {
1782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
1783
+ }
1784
+
1785
+ :host([data-render-mode="shadow"][icon-name='standard\:evernote']) {
1786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(134, 200, 111));
1787
+ }
1788
+
1789
+ :host([data-render-mode="shadow"][icon-name='standard\:variation_products']) {
1790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1791
+ }
1792
+
1793
+ :host([data-render-mode="shadow"][icon-name='standard\:trailhead_alt']) {
1794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 57, 107));
1795
+ }
1796
+
1797
+ :host([data-render-mode="shadow"][icon-name='standard\:service_territory']) {
1798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1799
+ }
1800
+
1801
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_lifecycle_analytics']) {
1802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(146, 116, 223));
1803
+ }
1804
+
1805
+ :host([data-render-mode="shadow"][icon-name='standard\:code_set']) {
1806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1807
+ }
1808
+
1809
+ :host([data-render-mode="shadow"][icon-name='standard\:case']) {
1810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1811
+ }
1812
+
1813
+ :host([data-render-mode="shadow"][icon-name='standard\:slack']) {
1814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 21, 75));
1815
+ }
1816
+
1817
+ :host([data-render-mode="shadow"][icon-name='standard\:currency']) {
1818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1819
+ }
1820
+
1821
+ :host([data-render-mode="shadow"][icon-name='standard\:record']) {
1822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
1823
+ }
1824
+
1825
+ :host([data-render-mode="shadow"][icon-name='standard\:code_set_bundle']) {
1826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
1827
+ }
1828
+
1829
+ :host([data-render-mode="shadow"][icon-name='standard\:queue']) {
1830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1831
+ }
1832
+
1833
+ :host([data-render-mode="shadow"][icon-name='standard\:schedule_objective']) {
1834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
1835
+ }
1836
+
1837
+ :host([data-render-mode="shadow"][icon-name='standard\:contract_line_item']) {
1838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1839
+ }
1840
+
1841
+ :host([data-render-mode="shadow"][icon-name='standard\:skill_entity']) {
1842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
1843
+ }
1844
+
1845
+ :host([data-render-mode="shadow"][icon-name='standard\:skill']) {
1846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
1847
+ }
1848
+
1849
+ :host([data-render-mode="shadow"][icon-name='standard\:operating_hours']) {
1850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
1851
+ }
1852
+
1853
+ :host([data-render-mode="shadow"][icon-name='standard\:custom']) {
1854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
1855
+ }
1856
+
1857
+ :host([data-render-mode="shadow"][icon-name='standard\:related_list']) {
1858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(89, 188, 171));
1859
+ }
1860
+
1861
+ :host([data-render-mode="shadow"][icon-name='standard\:bot_training']) {
1862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(88, 118, 163));
1863
+ }
1864
+
1865
+ :host([data-render-mode="shadow"][icon-name='standard\:case_change_status']) {
1866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1867
+ }
1868
+
1869
+ :host([data-render-mode="shadow"][icon-name='standard\:insurance_console']) {
1870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
1871
+ }
1872
+
1873
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard_component']) {
1874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1875
+ }
1876
+
1877
+ :host([data-render-mode="shadow"][icon-name='standard\:incident']) {
1878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 5, 23));
1879
+ }
1880
+
1881
+ :host([data-render-mode="shadow"][icon-name='standard\:contract']) {
1882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(110, 192, 110));
1883
+ }
1884
+
1885
+ :host([data-render-mode="shadow"][icon-name='standard\:sobject']) {
1886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1887
+ }
1888
+
1889
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_cadence_target']) {
1890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
1891
+ }
1892
+
1893
+ :host([data-render-mode="shadow"][icon-name='standard\:photo']) {
1894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(215, 209, 209));
1895
+ }
1896
+
1897
+ :host([data-render-mode="shadow"][icon-name='standard\:apps']) {
1898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
1899
+ }
1900
+
1901
+ :host([data-render-mode="shadow"][icon-name='standard\:timesheet']) {
1902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
1903
+ }
1904
+
1905
+ :host([data-render-mode="shadow"][icon-name='standard\:drafts']) {
1906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
1907
+ }
1908
+
1909
+ :host([data-render-mode="shadow"][icon-name='standard\:outcome']) {
1910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
1911
+ }
1912
+
1913
+ :host([data-render-mode="shadow"][icon-name='standard\:discounts']) {
1914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1915
+ }
1916
+
1917
+ :host([data-render-mode="shadow"][icon-name='standard\:work_order_item']) {
1918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(51, 168, 220));
1919
+ }
1920
+
1921
+ :host([data-render-mode="shadow"][icon-name='standard\:pricebook']) {
1922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
1923
+ }
1924
+
1925
+ :host([data-render-mode="shadow"][icon-name='standard\:scan_card']) {
1926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 158, 88));
1927
+ }
1928
+
1929
+ :host([data-render-mode="shadow"][icon-name='standard\:note']) {
1930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
1931
+ }
1932
+
1933
+ :host([data-render-mode="shadow"][icon-name='standard\:serialized_product_transaction']) {
1934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1935
+ }
1936
+
1937
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_pattern']) {
1938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1939
+ }
1940
+
1941
+ :host([data-render-mode="shadow"][icon-name='standard\:buyer_group']) {
1942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1943
+ }
1944
+
1945
+ :host([data-render-mode="shadow"][icon-name='standard\:product_quantity_rules']) {
1946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1947
+ }
1948
+
1949
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_reconciliation']) {
1950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(63, 113, 154));
1951
+ }
1952
+
1953
+ :host([data-render-mode="shadow"][icon-name='standard\:procedure']) {
1954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
1955
+ }
1956
+
1957
+ :host([data-render-mode="shadow"][icon-name='standard\:opportunity']) {
1958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
1959
+ }
1960
+
1961
+ :host([data-render-mode="shadow"][icon-name='standard\:news']) {
1962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
1963
+ }
1964
+
1965
+ :host([data-render-mode="shadow"][icon-name='standard\:sort_policy']) {
1966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1967
+ }
1968
+
1969
+ :host([data-render-mode="shadow"][icon-name='standard\:display_rich_text']) {
1970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
1971
+ }
1972
+
1973
+ :host([data-render-mode="shadow"][icon-name='standard\:strategy']) {
1974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 113));
1975
+ }
1976
+
1977
+ :host([data-render-mode="shadow"][icon-name='standard\:call_history']) {
1978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
1979
+ }
1980
+
1981
+ :host([data-render-mode="shadow"][icon-name='standard\:webcart']) {
1982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
1983
+ }
1984
+
1985
+ :host([data-render-mode="shadow"][icon-name='standard\:serialized_product']) {
1986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
1987
+ }
1988
+
1989
+ :host([data-render-mode="shadow"][icon-name='standard\:report']) {
1990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(46, 203, 190));
1991
+ }
1992
+
1993
+ :host([data-render-mode="shadow"][icon-name='standard\:groups']) {
1994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(119, 158, 242));
1995
+ }
1996
+
1997
+ :host([data-render-mode="shadow"][icon-name='standard\:data_model']) {
1998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
1999
+ }
2000
+
2001
+ :host([data-render-mode="shadow"][icon-name='standard\:dashboard']) {
2002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
2003
+ }
2004
+
2005
+ :host([data-render-mode="shadow"][icon-name='standard\:generic_loading']) {
2006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
2007
+ }
2008
+
2009
+ :host([data-render-mode="shadow"][icon-name='standard\:number_input']) {
2010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2011
+ }
2012
+
2013
+ :host([data-render-mode="shadow"][icon-name='standard\:toggle']) {
2014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2015
+ }
2016
+
2017
+ :host([data-render-mode="shadow"][icon-name='standard\:address']) {
2018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
2019
+ }
2020
+
2021
+ :host([data-render-mode="shadow"][icon-name='standard\:price_books']) {
2022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
2023
+ }
2024
+
2025
+ :host([data-render-mode="shadow"][icon-name='standard\:entity_milestone']) {
2026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
2027
+ }
2028
+
2029
+ :host([data-render-mode="shadow"][icon-name='standard\:wealth_management']) {
2030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
2031
+ }
2032
+
2033
+ :host([data-render-mode="shadow"][icon-name='standard\:customers']) {
2034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
2035
+ }
2036
+
2037
+ :host([data-render-mode="shadow"][icon-name='standard\:story']) {
2038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2039
+ }
2040
+
2041
+ :host([data-render-mode="shadow"][icon-name='standard\:service_appointment']) {
2042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2043
+ }
2044
+
2045
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_plan']) {
2046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2047
+ }
2048
+
2049
+ :host([data-render-mode="shadow"][icon-name='standard\:data_integration_hub']) {
2050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2051
+ }
2052
+
2053
+ :host([data-render-mode="shadow"][icon-name='standard\:person_name']) {
2054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
2055
+ }
2056
+
2057
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan_template_entry']) {
2058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
2059
+ }
2060
+
2061
+ :host([data-render-mode="shadow"][icon-name='standard\:hierarchy']) {
2062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
2063
+ }
2064
+
2065
+ :host([data-render-mode="shadow"][icon-name='standard\:custom_component_task']) {
2066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
2067
+ }
2068
+
2069
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_marketing_budget']) {
2070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
2071
+ }
2072
+
2073
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_action_source']) {
2074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
2075
+ }
2076
+
2077
+ :host([data-render-mode="shadow"][icon-name='standard\:skill_requirement']) {
2078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
2079
+ }
2080
+
2081
+ :host([data-render-mode="shadow"][icon-name='standard\:filter_criteria_rule']) {
2082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2083
+ }
2084
+
2085
+ :host([data-render-mode="shadow"][icon-name='standard\:location']) {
2086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
2087
+ }
2088
+
2089
+ :host([data-render-mode="shadow"][icon-name='standard\:radio_button']) {
2090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2091
+ }
2092
+
2093
+ :host([data-render-mode="shadow"][icon-name='standard\:avatar_loading']) {
2094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
2095
+ }
2096
+
2097
+ :host([data-render-mode="shadow"][icon-name='standard\:article']) {
2098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2099
+ }
2100
+
2101
+ :host([data-render-mode="shadow"][icon-name='standard\:invocable_action']) {
2102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2103
+ }
2104
+
2105
+ :host([data-render-mode="shadow"][icon-name='standard\:device']) {
2106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
2107
+ }
2108
+
2109
+ :host([data-render-mode="shadow"][icon-name='standard\:proposition']) {
2110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2111
+ }
2112
+
2113
+ :host([data-render-mode="shadow"][icon-name='standard\:snippets']) {
2114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
2115
+ }
2116
+
2117
+ :host([data-render-mode="shadow"][icon-name='standard\:customer_portal_users']) {
2118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 219));
2119
+ }
2120
+
2121
+ :host([data-render-mode="shadow"][icon-name='standard\:actions_and_buttons']) {
2122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
2123
+ }
2124
+
2125
+ :host([data-render-mode="shadow"][icon-name='standard\:record_update']) {
2126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2127
+ }
2128
+
2129
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_type']) {
2130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2131
+ }
2132
+
2133
+ :host([data-render-mode="shadow"][icon-name='standard\:log_a_call']) {
2134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 195, 204));
2135
+ }
2136
+
2137
+ :host([data-render-mode="shadow"][icon-name='standard\:quotes']) {
2138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
2139
+ }
2140
+
2141
+ :host([data-render-mode="shadow"][icon-name='standard\:question_feed']) {
2142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2143
+ }
2144
+
2145
+ :host([data-render-mode="shadow"][icon-name='standard\:kanban']) {
2146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2147
+ }
2148
+
2149
+ :host([data-render-mode="shadow"][icon-name='standard\:work_plan']) {
2150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
2151
+ }
2152
+
2153
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_template']) {
2154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2155
+ }
2156
+
2157
+ :host([data-render-mode="shadow"][icon-name='standard\:merge']) {
2158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2159
+ }
2160
+
2161
+ :host([data-render-mode="shadow"][icon-name='standard\:expense']) {
2162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
2163
+ }
2164
+
2165
+ :host([data-render-mode="shadow"][icon-name='standard\:dataset']) {
2166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2167
+ }
2168
+
2169
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_preference']) {
2170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2171
+ }
2172
+
2173
+ :host([data-render-mode="shadow"][icon-name='standard\:product_consumed']) {
2174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(85, 188, 156));
2175
+ }
2176
+
2177
+ :host([data-render-mode="shadow"][icon-name='standard\:canvas']) {
2178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
2179
+ }
2180
+
2181
+ :host([data-render-mode="shadow"][icon-name='standard\:forecasts']) {
2182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 189, 110));
2183
+ }
2184
+
2185
+ :host([data-render-mode="shadow"][icon-name='standard\:relationship']) {
2186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2187
+ }
2188
+
2189
+ :host([data-render-mode="shadow"][icon-name='standard\:tour']) {
2190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
2191
+ }
2192
+
2193
+ :host([data-render-mode="shadow"][icon-name='standard\:service_resource']) {
2194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2195
+ }
2196
+
2197
+ :host([data-render-mode="shadow"][icon-name='standard\:filter']) {
2198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 57, 238));
2199
+ }
2200
+
2201
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_path']) {
2202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2203
+ }
2204
+
2205
+ :host([data-render-mode="shadow"][icon-name='standard\:shift_scheduling_operation']) {
2206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2207
+ }
2208
+
2209
+ :host([data-render-mode="shadow"][icon-name='standard\:events']) {
2210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 219));
2211
+ }
2212
+
2213
+ :host([data-render-mode="shadow"][icon-name='standard\:data_mapping']) {
2214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(6, 28, 63));
2215
+ }
2216
+
2217
+ :host([data-render-mode="shadow"][icon-name='standard\:sms']) {
2218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
2219
+ }
2220
+
2221
+ :host([data-render-mode="shadow"][icon-name='standard\:rtc_presence']) {
2222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 207, 210));
2223
+ }
2224
+
2225
+ :host([data-render-mode="shadow"][icon-name='standard\:avatar']) {
2226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
2227
+ }
2228
+
2229
+ :host([data-render-mode="shadow"][icon-name='standard\:record_delete']) {
2230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2231
+ }
2232
+
2233
+ :host([data-render-mode="shadow"][icon-name='standard\:solution']) {
2234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(143, 201, 114));
2235
+ }
2236
+
2237
+ :host([data-render-mode="shadow"][icon-name='standard\:agent_home']) {
2238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 57, 107));
2239
+ }
2240
+
2241
+ :host([data-render-mode="shadow"][icon-name='standard\:partner_fund_claim']) {
2242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
2243
+ }
2244
+
2245
+ :host([data-render-mode="shadow"][icon-name='standard\:individual']) {
2246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2247
+ }
2248
+
2249
+ :host([data-render-mode="shadow"][icon-name='standard\:custom_notification']) {
2250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 183, 228));
2251
+ }
2252
+
2253
+ :host([data-render-mode="shadow"][icon-name='standard\:contract_payment']) {
2254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 80, 233));
2255
+ }
2256
+
2257
+ :host([data-render-mode="shadow"][icon-name='standard\:date_input']) {
2258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2259
+ }
2260
+
2261
+ :host([data-render-mode="shadow"][icon-name='standard\:catalog']) {
2262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(2, 126, 70));
2263
+ }
2264
+
2265
+ :host([data-render-mode="shadow"][icon-name='standard\:template']) {
2266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2267
+ }
2268
+
2269
+ :host([data-render-mode="shadow"][icon-name='standard\:activation_target']) {
2270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
2271
+ }
2272
+
2273
+ :host([data-render-mode="shadow"][icon-name='standard\:selling_model']) {
2274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(173, 123, 238));
2275
+ }
2276
+
2277
+ :host([data-render-mode="shadow"][icon-name='standard\:shipment']) {
2278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2279
+ }
2280
+
2281
+ :host([data-render-mode="shadow"][icon-name='standard\:budget_allocation']) {
2282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(16, 124, 173));
2283
+ }
2284
+
2285
+ :host([data-render-mode="shadow"][icon-name='standard\:record_signature_task']) {
2286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2287
+ }
2288
+
2289
+ :host([data-render-mode="shadow"][icon-name='standard\:event']) {
2290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2291
+ }
2292
+
2293
+ :host([data-render-mode="shadow"][icon-name='standard\:insurance']) {
2294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 210, 190));
2295
+ }
2296
+
2297
+ :host([data-render-mode="shadow"][icon-name='standard\:live_chat_visitor']) {
2298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 137, 96));
2299
+ }
2300
+
2301
+ :host([data-render-mode="shadow"][icon-name='standard\:textarea']) {
2302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2303
+ }
2304
+
2305
+ :host([data-render-mode="shadow"][icon-name='standard\:work_step']) {
2306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
2307
+ }
2308
+
2309
+ :host([data-render-mode="shadow"][icon-name='standard\:picklist_type']) {
2310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2311
+ }
2312
+
2313
+ :host([data-render-mode="shadow"][icon-name='standard\:survey']) {
2314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 159, 214));
2315
+ }
2316
+
2317
+ :host([data-render-mode="shadow"][icon-name='standard\:link']) {
2318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
2319
+ }
2320
+
2321
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_session']) {
2322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
2323
+ }
2324
+
2325
+ :host([data-render-mode="shadow"][icon-name='standard\:video']) {
2326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2327
+ }
2328
+
2329
+ :host([data-render-mode="shadow"][icon-name='standard\:list_email']) {
2330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 174, 181));
2331
+ }
2332
+
2333
+ :host([data-render-mode="shadow"][icon-name='standard\:med_rec_recommendation']) {
2334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 187, 202));
2335
+ }
2336
+
2337
+ :host([data-render-mode="shadow"][icon-name='standard\:recycle_bin']) {
2338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 228));
2339
+ }
2340
+
2341
+ :host([data-render-mode="shadow"][icon-name='standard\:document']) {
2342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
2343
+ }
2344
+
2345
+ :host([data-render-mode="shadow"][icon-name='standard\:product_transfer']) {
2346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 115, 79));
2347
+ }
2348
+
2349
+ :host([data-render-mode="shadow"][icon-name='standard\:instore_locations']) {
2350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2351
+ }
2352
+
2353
+ :host([data-render-mode="shadow"][icon-name='standard\:recent']) {
2354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
2355
+ }
2356
+
2357
+ :host([data-render-mode="shadow"][icon-name='standard\:practitioner_role']) {
2358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2359
+ }
2360
+
2361
+ :host([data-render-mode="shadow"][icon-name='standard\:password']) {
2362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2363
+ }
2364
+
2365
+ :host([data-render-mode="shadow"][icon-name='standard\:expense_report']) {
2366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 49, 128));
2367
+ }
2368
+
2369
+ :host([data-render-mode="shadow"][icon-name='standard\:branch_merge']) {
2370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
2371
+ }
2372
+
2373
+ :host([data-render-mode="shadow"][icon-name='standard\:insights']) {
2374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 148, 237));
2375
+ }
2376
+
2377
+ :host([data-render-mode="shadow"][icon-name='standard\:dropbox']) {
2378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(82, 174, 249));
2379
+ }
2380
+
2381
+ :host([data-render-mode="shadow"][icon-name='standard\:unified_health_score']) {
2382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2383
+ }
2384
+
2385
+ :host([data-render-mode="shadow"][icon-name='standard\:calculated_insights']) {
2386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 167, 248));
2387
+ }
2388
+
2389
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_job_position']) {
2390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
2391
+ }
2392
+
2393
+ :host([data-render-mode="shadow"][icon-name='standard\:file']) {
2394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
2395
+ }
2396
+
2397
+ :host([data-render-mode="shadow"][icon-name='standard\:currency_input']) {
2398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2399
+ }
2400
+
2401
+ :host([data-render-mode="shadow"][icon-name='standard\:variable']) {
2402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2403
+ }
2404
+
2405
+ :host([data-render-mode="shadow"][icon-name='standard\:team_member']) {
2406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2407
+ }
2408
+
2409
+ :host([data-render-mode="shadow"][icon-name='standard\:pricing_workspace']) {
2410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
2411
+ }
2412
+
2413
+ :host([data-render-mode="shadow"][icon-name='standard\:agent_session']) {
2414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 96));
2415
+ }
2416
+
2417
+ :host([data-render-mode="shadow"][icon-name='standard\:guidance_center']) {
2418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
2419
+ }
2420
+
2421
+ :host([data-render-mode="shadow"][icon-name='standard\:group_loading']) {
2422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(184, 195, 206));
2423
+ }
2424
+
2425
+ :host([data-render-mode="shadow"][icon-name='standard\:lead']) {
2426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
2427
+ }
2428
+
2429
+ :host([data-render-mode="shadow"][icon-name='standard\:email']) {
2430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(149, 174, 197));
2431
+ }
2432
+
2433
+ :host([data-render-mode="shadow"][icon-name='standard\:service_contract']) {
2434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 118, 240));
2435
+ }
2436
+
2437
+ :host([data-render-mode="shadow"][icon-name='standard\:decision']) {
2438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
2439
+ }
2440
+
2441
+ :host([data-render-mode="shadow"][icon-name='standard\:promotion_segments']) {
2442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(4, 132, 75));
2443
+ }
2444
+
2445
+ :host([data-render-mode="shadow"][icon-name='standard\:duration_downscale']) {
2446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
2447
+ }
2448
+
2449
+ :host([data-render-mode="shadow"][icon-name='standard\:snippet']) {
2450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
2451
+ }
2452
+
2453
+ :host([data-render-mode="shadow"][icon-name='standard\:entitlement_process']) {
2454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2455
+ }
2456
+
2457
+ :host([data-render-mode="shadow"][icon-name='standard\:contact_list']) {
2458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
2459
+ }
2460
+
2461
+ :host([data-render-mode="shadow"][icon-name='standard\:planogram']) {
2462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2463
+ }
2464
+
2465
+ :host([data-render-mode="shadow"][icon-name='standard\:activations']) {
2466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2467
+ }
2468
+
2469
+ :host([data-render-mode="shadow"][icon-name='standard\:scheduling_policy']) {
2470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
2471
+ }
2472
+
2473
+ :host([data-render-mode="shadow"][icon-name='standard\:channel_program_history']) {
2474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(14, 181, 138));
2475
+ }
2476
+
2477
+ :host([data-render-mode="shadow"][icon-name='standard\:question_best']) {
2478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2479
+ }
2480
+
2481
+ :host([data-render-mode="shadow"][icon-name='standard\:collection_variable']) {
2482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2483
+ }
2484
+
2485
+ :host([data-render-mode="shadow"][icon-name='standard\:procedure_detail']) {
2486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
2487
+ }
2488
+
2489
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_value']) {
2490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
2491
+ }
2492
+
2493
+ :host([data-render-mode="shadow"][icon-name='standard\:knowledge']) {
2494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 148, 237));
2495
+ }
2496
+
2497
+ :host([data-render-mode="shadow"][icon-name='standard\:date_time']) {
2498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2499
+ }
2500
+
2501
+ :host([data-render-mode="shadow"][icon-name='standard\:category']) {
2502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(2, 126, 70));
2503
+ }
2504
+
2505
+ :host([data-render-mode="shadow"][icon-name='standard\:maintenance_work_rule']) {
2506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2507
+ }
2508
+
2509
+ :host([data-render-mode="shadow"][icon-name='standard\:data_streams']) {
2510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
2511
+ }
2512
+
2513
+ :host([data-render-mode="shadow"][icon-name='standard\:textbox']) {
2514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(150, 148, 146));
2515
+ }
2516
+
2517
+ :host([data-render-mode="shadow"][icon-name='standard\:lead_insights']) {
2518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 176, 230));
2519
+ }
2520
+
2521
+ :host([data-render-mode="shadow"][icon-name='standard\:waits']) {
2522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
2523
+ }
2524
+
2525
+ :host([data-render-mode="shadow"][icon-name='standard\:concur']) {
2526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(76, 195, 199));
2527
+ }
2528
+
2529
+ :host([data-render-mode="shadow"][icon-name='standard\:feed']) {
2530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
2531
+ }
2532
+
2533
+ :host([data-render-mode="shadow"][icon-name='standard\:sort']) {
2534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 57, 238));
2535
+ }
2536
+
2537
+ :host([data-render-mode="shadow"][icon-name='standard\:messaging_conversation']) {
2538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
2539
+ }
2540
+
2541
+ :host([data-render-mode="shadow"][icon-name='standard\:service_report']) {
2542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
2543
+ }
2544
+
2545
+ :host([data-render-mode="shadow"][icon-name='standard\:iot_context']) {
2546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(42, 115, 158));
2547
+ }
2548
+
2549
+ :host([data-render-mode="shadow"][icon-name='standard\:asset_state_period']) {
2550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 122, 146));
2551
+ }
2552
+
2553
+ :host([data-render-mode="shadow"][icon-name='standard\:call']) {
2554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2555
+ }
2556
+
2557
+ :host([data-render-mode="shadow"][icon-name='standard\:collection']) {
2558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
2559
+ }
2560
+
2561
+ :host([data-render-mode="shadow"][icon-name='standard\:stage']) {
2562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
2563
+ }
2564
+
2565
+ :host([data-render-mode="shadow"][icon-name='standard\:sales_cadence']) {
2566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2567
+ }
2568
+
2569
+ :host([data-render-mode="shadow"][icon-name='standard\:product_request_line_item']) {
2570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
2571
+ }
2572
+
2573
+ :host([data-render-mode="shadow"][icon-name='standard\:return_order_line_item']) {
2574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 150, 136));
2575
+ }
2576
+
2577
+ :host([data-render-mode="shadow"][icon-name='standard\:chart']) {
2578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(31, 202, 160));
2579
+ }
2580
+
2581
+ :host([data-render-mode="shadow"][icon-name='standard\:quick_text']) {
2582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 229));
2583
+ }
2584
+
2585
+ :host([data-render-mode="shadow"][icon-name='standard\:home']) {
2586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
2587
+ }
2588
+
2589
+ :host([data-render-mode="shadow"][icon-name='standard\:sossession']) {
2590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
2591
+ }
2592
+
2593
+ :host([data-render-mode="shadow"][icon-name='standard\:bundle_config']) {
2594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
2595
+ }
2596
+
2597
+ :host([data-render-mode="shadow"][icon-name='standard\:employee_asset']) {
2598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 224));
2599
+ }
2600
+
2601
+ :host([data-render-mode="shadow"][icon-name='standard\:process_exception']) {
2602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 166, 35));
2603
+ }
2604
+
2605
+ :host([data-render-mode="shadow"][icon-name='standard\:product_warranty_term']) {
2606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(183, 129, 211));
2607
+ }
2608
+
2609
+ :host([data-render-mode="shadow"][icon-name='standard\:problem']) {
2610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(254, 147, 57));
2611
+ }
2612
+
2613
+ :host([data-render-mode="shadow"][icon-name='standard\:stage_collection']) {
2614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 154, 60));
2615
+ }
2616
+
2617
+ :host([data-render-mode="shadow"][icon-name='standard\:product_request']) {
2618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
2619
+ }
2620
+
2621
+ :host([data-render-mode="shadow"][icon-name='standard\:logging']) {
2622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 161, 223));
2623
+ }
2624
+
2625
+ :host([data-render-mode="shadow"][icon-name='standard\:assigned_resource']) {
2626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(69, 193, 115));
2627
+ }
2628
+
2629
+ :host([data-render-mode="shadow"][icon-name='standard\:return_order']) {
2630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 150, 136));
2631
+ }
2632
+
2633
+ :host([data-render-mode="shadow"][icon-name='standard\:poll']) {
2634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 155, 225));
2635
+ }
2636
+
2637
+ :host([data-render-mode="shadow"][icon-name='standard\:household']) {
2638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 175, 160));
2639
+ }
2640
+
2641
+ :host([data-render-mode="shadow"][icon-name='standard\:work_step_template']) {
2642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(68, 148, 136));
2643
+ }
2644
+
2645
+ :host([data-render-mode="shadow"][icon-name='standard\:medication_statement']) {
2646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(21, 137, 238));
2647
+ }
2648
+
2649
+ :host([data-render-mode="shadow"][icon-name='custom\:custom110']) {
2650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2651
+ }
2652
+
2653
+ :host([data-render-mode="shadow"][icon-name='custom\:custom100']) {
2654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 93, 118));
2655
+ }
2656
+
2657
+ :host([data-render-mode="shadow"][icon-name='custom\:custom111']) {
2658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2659
+ }
2660
+
2661
+ :host([data-render-mode="shadow"][icon-name='custom\:custom1']) {
2662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 123, 132));
2663
+ }
2664
+
2665
+ :host([data-render-mode="shadow"][icon-name='custom\:custom101']) {
2666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2667
+ }
2668
+
2669
+ :host([data-render-mode="shadow"][icon-name='custom\:custom112']) {
2670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2671
+ }
2672
+
2673
+ :host([data-render-mode="shadow"][icon-name='custom\:custom2']) {
2674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 92));
2675
+ }
2676
+
2677
+ :host([data-render-mode="shadow"][icon-name='custom\:custom102']) {
2678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2679
+ }
2680
+
2681
+ :host([data-render-mode="shadow"][icon-name='custom\:custom113']) {
2682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2683
+ }
2684
+
2685
+ :host([data-render-mode="shadow"][icon-name='custom\:custom90']) {
2686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 164, 138));
2687
+ }
2688
+
2689
+ :host([data-render-mode="shadow"][icon-name='custom\:custom3']) {
2690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 180, 108));
2691
+ }
2692
+
2693
+ :host([data-render-mode="shadow"][icon-name='custom\:custom103']) {
2694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2695
+ }
2696
+
2697
+ :host([data-render-mode="shadow"][icon-name='custom\:custom80']) {
2698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 154, 213));
2699
+ }
2700
+
2701
+ :host([data-render-mode="shadow"][icon-name='custom\:custom91']) {
2702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 123, 102));
2703
+ }
2704
+
2705
+ :host([data-render-mode="shadow"][icon-name='custom\:custom4']) {
2706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 217, 81));
2707
+ }
2708
+
2709
+ :host([data-render-mode="shadow"][icon-name='custom\:custom104']) {
2710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2711
+ }
2712
+
2713
+ :host([data-render-mode="shadow"][icon-name='custom\:custom70']) {
2714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 105, 180));
2715
+ }
2716
+
2717
+ :host([data-render-mode="shadow"][icon-name='custom\:custom81']) {
2718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(218, 98, 127));
2719
+ }
2720
+
2721
+ :host([data-render-mode="shadow"][icon-name='custom\:custom92']) {
2722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(81, 126, 130));
2723
+ }
2724
+
2725
+ :host([data-render-mode="shadow"][icon-name='custom\:custom5']) {
2726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(159, 219, 102));
2727
+ }
2728
+
2729
+ :host([data-render-mode="shadow"][icon-name='custom\:custom105']) {
2730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2731
+ }
2732
+
2733
+ :host([data-render-mode="shadow"][icon-name='custom\:custom60']) {
2734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 90, 136));
2735
+ }
2736
+
2737
+ :host([data-render-mode="shadow"][icon-name='custom\:custom71']) {
2738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 110, 227));
2739
+ }
2740
+
2741
+ :host([data-render-mode="shadow"][icon-name='custom\:custom82']) {
2742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(209, 91, 151));
2743
+ }
2744
+
2745
+ :host([data-render-mode="shadow"][icon-name='custom\:custom93']) {
2746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 77, 76));
2747
+ }
2748
+
2749
+ :host([data-render-mode="shadow"][icon-name='custom\:custom6']) {
2750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 196, 115));
2751
+ }
2752
+
2753
+ :host([data-render-mode="shadow"][icon-name='custom\:custom106']) {
2754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2755
+ }
2756
+
2757
+ :host([data-render-mode="shadow"][icon-name='custom\:custom50']) {
2758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(73, 188, 211));
2759
+ }
2760
+
2761
+ :host([data-render-mode="shadow"][icon-name='custom\:custom61']) {
2762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 115, 118));
2763
+ }
2764
+
2765
+ :host([data-render-mode="shadow"][icon-name='custom\:custom72']) {
2766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(141, 155, 251));
2767
+ }
2768
+
2769
+ :host([data-render-mode="shadow"][icon-name='custom\:custom83']) {
2770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 128, 111));
2771
+ }
2772
+
2773
+ :host([data-render-mode="shadow"][icon-name='custom\:custom94']) {
2774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
2775
+ }
2776
+
2777
+ :host([data-render-mode="shadow"][icon-name='custom\:custom7']) {
2778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(106, 137, 229));
2779
+ }
2780
+
2781
+ :host([data-render-mode="shadow"][icon-name='custom\:custom107']) {
2782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2783
+ }
2784
+
2785
+ :host([data-render-mode="shadow"][icon-name='custom\:custom40']) {
2786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 199, 94));
2787
+ }
2788
+
2789
+ :host([data-render-mode="shadow"][icon-name='custom\:custom51']) {
2790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 199, 96));
2791
+ }
2792
+
2793
+ :host([data-render-mode="shadow"][icon-name='custom\:custom62']) {
2794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 146, 220));
2795
+ }
2796
+
2797
+ :host([data-render-mode="shadow"][icon-name='custom\:custom73']) {
2798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 158, 240));
2799
+ }
2800
+
2801
+ :host([data-render-mode="shadow"][icon-name='custom\:custom84']) {
2802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 112, 123));
2803
+ }
2804
+
2805
+ :host([data-render-mode="shadow"][icon-name='custom\:custom95']) {
2806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 207, 106));
2807
+ }
2808
+
2809
+ :host([data-render-mode="shadow"][icon-name='custom\:custom8']) {
2810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 206, 185));
2811
+ }
2812
+
2813
+ :host([data-render-mode="shadow"][icon-name='custom\:custom108']) {
2814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2815
+ }
2816
+
2817
+ :host([data-render-mode="shadow"][icon-name='custom\:custom30']) {
2818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 159, 113));
2819
+ }
2820
+
2821
+ :host([data-render-mode="shadow"][icon-name='custom\:custom41']) {
2822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 181, 181));
2823
+ }
2824
+
2825
+ :host([data-render-mode="shadow"][icon-name='custom\:custom52']) {
2826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(238, 142, 111));
2827
+ }
2828
+
2829
+ :host([data-render-mode="shadow"][icon-name='custom\:custom63']) {
2830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(124, 207, 96));
2831
+ }
2832
+
2833
+ :host([data-render-mode="shadow"][icon-name='custom\:custom74']) {
2834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(65, 200, 160));
2835
+ }
2836
+
2837
+ :host([data-render-mode="shadow"][icon-name='custom\:custom85']) {
2838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 104, 145));
2839
+ }
2840
+
2841
+ :host([data-render-mode="shadow"][icon-name='custom\:custom96']) {
2842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 157, 227));
2843
+ }
2844
+
2845
+ :host([data-render-mode="shadow"][icon-name='custom\:custom9']) {
2846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
2847
+ }
2848
+
2849
+ :host([data-render-mode="shadow"][icon-name='custom\:custom109']) {
2850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 139, 0));
2851
+ }
2852
+
2853
+ :host([data-render-mode="shadow"][icon-name='custom\:custom20']) {
2854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 199, 200));
2855
+ }
2856
+
2857
+ :host([data-render-mode="shadow"][icon-name='custom\:custom31']) {
2858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 104, 127));
2859
+ }
2860
+
2861
+ :host([data-render-mode="shadow"][icon-name='custom\:custom42']) {
2862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 91));
2863
+ }
2864
+
2865
+ :host([data-render-mode="shadow"][icon-name='custom\:custom53']) {
2866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 110, 131));
2867
+ }
2868
+
2869
+ :host([data-render-mode="shadow"][icon-name='custom\:custom64']) {
2870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 143, 216));
2871
+ }
2872
+
2873
+ :host([data-render-mode="shadow"][icon-name='custom\:custom75']) {
2874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(205, 159, 101));
2875
+ }
2876
+
2877
+ :host([data-render-mode="shadow"][icon-name='custom\:custom86']) {
2878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 96, 171));
2879
+ }
2880
+
2881
+ :host([data-render-mode="shadow"][icon-name='custom\:custom97']) {
2882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(221, 96, 133));
2883
+ }
2884
+
2885
+ :host([data-render-mode="shadow"][icon-name='custom\:custom10']) {
2886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(100, 136, 227));
2887
+ }
2888
+
2889
+ :host([data-render-mode="shadow"][icon-name='custom\:custom21']) {
2890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 122, 237));
2891
+ }
2892
+
2893
+ :host([data-render-mode="shadow"][icon-name='custom\:custom32']) {
2894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(56, 195, 147));
2895
+ }
2896
+
2897
+ :host([data-render-mode="shadow"][icon-name='custom\:custom43']) {
2898
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 147, 249));
2899
+ }
2900
+
2901
+ :host([data-render-mode="shadow"][icon-name='custom\:custom54']) {
2902
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 112, 177));
2903
+ }
2904
+
2905
+ :host([data-render-mode="shadow"][icon-name='custom\:custom65']) {
2906
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 121, 171));
2907
+ }
2908
+
2909
+ :host([data-render-mode="shadow"][icon-name='custom\:custom76']) {
2910
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(219, 109, 122));
2911
+ }
2912
+
2913
+ :host([data-render-mode="shadow"][icon-name='custom\:custom87']) {
2914
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 118, 229));
2915
+ }
2916
+
2917
+ :host([data-render-mode="shadow"][icon-name='custom\:custom98']) {
2918
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 190, 92));
2919
+ }
2920
+
2921
+ :host([data-render-mode="shadow"][icon-name='custom\:custom11']) {
2922
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(135, 132, 234));
2923
+ }
2924
+
2925
+ :host([data-render-mode="shadow"][icon-name='custom\:custom22']) {
2926
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 133, 249));
2927
+ }
2928
+
2929
+ :host([data-render-mode="shadow"][icon-name='custom\:custom33']) {
2930
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(151, 207, 93));
2931
+ }
2932
+
2933
+ :host([data-render-mode="shadow"][icon-name='custom\:custom44']) {
2934
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(200, 202, 88));
2935
+ }
2936
+
2937
+ :host([data-render-mode="shadow"][icon-name='custom\:custom55']) {
2938
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(214, 110, 224));
2939
+ }
2940
+
2941
+ :host([data-render-mode="shadow"][icon-name='custom\:custom66']) {
2942
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 190, 95));
2943
+ }
2944
+
2945
+ :host([data-render-mode="shadow"][icon-name='custom\:custom77']) {
2946
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(181, 93, 91));
2947
+ }
2948
+
2949
+ :host([data-render-mode="shadow"][icon-name='custom\:custom88']) {
2950
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(153, 111, 230));
2951
+ }
2952
+
2953
+ :host([data-render-mode="shadow"][icon-name='custom\:custom99']) {
2954
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(240, 133, 110));
2955
+ }
2956
+
2957
+ :host([data-render-mode="shadow"][icon-name='custom\:custom12']) {
2958
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
2959
+ }
2960
+
2961
+ :host([data-render-mode="shadow"][icon-name='custom\:custom23']) {
2962
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
2963
+ }
2964
+
2965
+ :host([data-render-mode="shadow"][icon-name='custom\:custom34']) {
2966
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(213, 138, 106));
2967
+ }
2968
+
2969
+ :host([data-render-mode="shadow"][icon-name='custom\:custom45']) {
2970
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(217, 88, 121));
2971
+ }
2972
+
2973
+ :host([data-render-mode="shadow"][icon-name='custom\:custom56']) {
2974
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(113, 141, 235));
2975
+ }
2976
+
2977
+ :host([data-render-mode="shadow"][icon-name='custom\:custom67']) {
2978
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 125, 118));
2979
+ }
2980
+
2981
+ :host([data-render-mode="shadow"][icon-name='custom\:custom78']) {
2982
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 149, 221));
2983
+ }
2984
+
2985
+ :host([data-render-mode="shadow"][icon-name='custom\:custom89']) {
2986
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(62, 153, 190));
2987
+ }
2988
+
2989
+ :host([data-render-mode="shadow"][icon-name='custom\:custom13']) {
2990
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(223, 97, 132));
2991
+ }
2992
+
2993
+ :host([data-render-mode="shadow"][icon-name='custom\:custom24']) {
2994
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(229, 103, 152));
2995
+ }
2996
+
2997
+ :host([data-render-mode="shadow"][icon-name='custom\:custom35']) {
2998
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 99, 126));
2999
+ }
3000
+
3001
+ :host([data-render-mode="shadow"][icon-name='custom\:custom46']) {
3002
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 165, 231));
3003
+ }
3004
+
3005
+ :host([data-render-mode="shadow"][icon-name='custom\:custom57']) {
3006
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 156, 221));
3007
+ }
3008
+
3009
+ :host([data-render-mode="shadow"][icon-name='custom\:custom68']) {
3010
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 105, 121));
3011
+ }
3012
+
3013
+ :host([data-render-mode="shadow"][icon-name='custom\:custom79']) {
3014
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(142, 211, 99));
3015
+ }
3016
+
3017
+ :host([data-render-mode="shadow"][icon-name='custom\:custom14']) {
3018
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 194, 179));
3019
+ }
3020
+
3021
+ :host([data-render-mode="shadow"][icon-name='custom\:custom25']) {
3022
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(228, 111, 190));
3023
+ }
3024
+
3025
+ :host([data-render-mode="shadow"][icon-name='custom\:custom36']) {
3026
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(212, 114, 212));
3027
+ }
3028
+
3029
+ :host([data-render-mode="shadow"][icon-name='custom\:custom47']) {
3030
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(95, 204, 100));
3031
+ }
3032
+
3033
+ :host([data-render-mode="shadow"][icon-name='custom\:custom58']) {
3034
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
3035
+ }
3036
+
3037
+ :host([data-render-mode="shadow"][icon-name='custom\:custom69']) {
3038
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(237, 99, 135));
3039
+ }
3040
+
3041
+ :host([data-render-mode="shadow"][icon-name='custom\:custom15']) {
3042
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(247, 126, 117));
3043
+ }
3044
+
3045
+ :host([data-render-mode="shadow"][icon-name='custom\:custom26']) {
3046
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 152, 240));
3047
+ }
3048
+
3049
+ :host([data-render-mode="shadow"][icon-name='custom\:custom37']) {
3050
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(140, 137, 242));
3051
+ }
3052
+
3053
+ :host([data-render-mode="shadow"][icon-name='custom\:custom48']) {
3054
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 105, 127));
3055
+ }
3056
+
3057
+ :host([data-render-mode="shadow"][icon-name='custom\:custom59']) {
3058
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 208, 103));
3059
+ }
3060
+
3061
+ :host([data-render-mode="shadow"][icon-name='custom\:custom16']) {
3062
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 175, 103));
3063
+ }
3064
+
3065
+ :host([data-render-mode="shadow"][icon-name='custom\:custom27']) {
3066
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 176, 210));
3067
+ }
3068
+
3069
+ :host([data-render-mode="shadow"][icon-name='custom\:custom38']) {
3070
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(83, 182, 215));
3071
+ }
3072
+
3073
+ :host([data-render-mode="shadow"][icon-name='custom\:custom49']) {
3074
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 92, 128));
3075
+ }
3076
+
3077
+ :host([data-render-mode="shadow"][icon-name='custom\:custom17']) {
3078
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(172, 211, 96));
3079
+ }
3080
+
3081
+ :host([data-render-mode="shadow"][icon-name='custom\:custom28']) {
3082
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(137, 192, 89));
3083
+ }
3084
+
3085
+ :host([data-render-mode="shadow"][icon-name='custom\:custom39']) {
3086
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(79, 190, 117));
3087
+ }
3088
+
3089
+ :host([data-render-mode="shadow"][icon-name='custom\:custom18']) {
3090
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(77, 202, 118));
3091
+ }
3092
+
3093
+ :host([data-render-mode="shadow"][icon-name='custom\:custom29']) {
3094
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(189, 210, 95));
3095
+ }
3096
+
3097
+ :host([data-render-mode="shadow"][icon-name='custom\:custom19']) {
3098
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 190, 177));
3099
+ }
3100
+
3101
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom18']) {
3102
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(77, 202, 118));
3103
+ }
3104
+
3105
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom29']) {
3106
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(189, 210, 95));
3107
+ }
3108
+
3109
+ :host([data-render-mode="shadow"][icon-name='action\:edit_groups']) {
3110
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 190, 205));
3111
+ }
3112
+
3113
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom9']) {
3114
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 158, 226));
3115
+ }
3116
+
3117
+ :host([data-render-mode="shadow"][icon-name='action\:log_a_call']) {
3118
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 195, 204));
3119
+ }
3120
+
3121
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom19']) {
3122
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(58, 190, 177));
3123
+ }
3124
+
3125
+ :host([data-render-mode="shadow"][icon-name='action\:filter']) {
3126
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(253, 144, 181));
3127
+ }
3128
+
3129
+ :host([data-render-mode="shadow"][icon-name='action\:user_activation']) {
3130
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3131
+ }
3132
+
3133
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_competitor']) {
3134
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
3135
+ }
3136
+
3137
+ :host([data-render-mode="shadow"][icon-name='action\:canvas']) {
3138
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
3139
+ }
3140
+
3141
+ :host([data-render-mode="shadow"][icon-name='action\:change_record_type']) {
3142
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3143
+ }
3144
+
3145
+ :host([data-render-mode="shadow"][icon-name='action\:new_notebook']) {
3146
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
3147
+ }
3148
+
3149
+ :host([data-render-mode="shadow"][icon-name='action\:docusign']) {
3150
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 128, 219));
3151
+ }
3152
+
3153
+ :host([data-render-mode="shadow"][icon-name='action\:share_link']) {
3154
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(122, 154, 230));
3155
+ }
3156
+
3157
+ :host([data-render-mode="shadow"][icon-name='action\:add_file']) {
3158
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(126, 139, 228));
3159
+ }
3160
+
3161
+ :host([data-render-mode="shadow"][icon-name='action\:edit_relationship']) {
3162
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(29, 204, 191));
3163
+ }
3164
+
3165
+ :host([data-render-mode="shadow"][icon-name='action\:notebook']) {
3166
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
3167
+ }
3168
+
3169
+ :host([data-render-mode="shadow"][icon-name='action\:new_lead']) {
3170
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
3171
+ }
3172
+
3173
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom_object']) {
3174
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(167, 212, 77));
3175
+ }
3176
+
3177
+ :host([data-render-mode="shadow"][icon-name='action\:new_account']) {
3178
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
3179
+ }
3180
+
3181
+ :host([data-render-mode="shadow"][icon-name='action\:question_post_action']) {
3182
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(50, 175, 92));
3183
+ }
3184
+
3185
+ :host([data-render-mode="shadow"][icon-name='action\:share_file']) {
3186
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(186, 172, 147));
3187
+ }
3188
+
3189
+ :host([data-render-mode="shadow"][icon-name='action\:default_custom_object']) {
3190
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 153, 175));
3191
+ }
3192
+
3193
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_team_member']) {
3194
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
3195
+ }
3196
+
3197
+ :host([data-render-mode="shadow"][icon-name='action\:add_photo_video']) {
3198
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 205, 192));
3199
+ }
3200
+
3201
+ :host([data-render-mode="shadow"][icon-name='action\:sort']) {
3202
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 185, 165));
3203
+ }
3204
+
3205
+ :host([data-render-mode="shadow"][icon-name='action\:call']) {
3206
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(31, 202, 160));
3207
+ }
3208
+
3209
+ :host([data-render-mode="shadow"][icon-name='action\:concur']) {
3210
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(76, 195, 199));
3211
+ }
3212
+
3213
+ :host([data-render-mode="shadow"][icon-name='action\:reject']) {
3214
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 198, 183));
3215
+ }
3216
+
3217
+ :host([data-render-mode="shadow"][icon-name='action\:share_poll']) {
3218
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 155, 225));
3219
+ }
3220
+
3221
+ :host([data-render-mode="shadow"][icon-name='action\:following']) {
3222
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 207, 100));
3223
+ }
3224
+
3225
+ :host([data-render-mode="shadow"][icon-name='action\:defer']) {
3226
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 126, 173));
3227
+ }
3228
+
3229
+ :host([data-render-mode="shadow"][icon-name='action\:opportunity_line_item']) {
3230
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
3231
+ }
3232
+
3233
+ :host([data-render-mode="shadow"][icon-name='action\:social_post']) {
3234
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 116, 162));
3235
+ }
3236
+
3237
+ :host([data-render-mode="shadow"][icon-name='action\:share_post']) {
3238
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
3239
+ }
3240
+
3241
+ :host([data-render-mode="shadow"][icon-name='action\:view_relationship']) {
3242
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 151, 221));
3243
+ }
3244
+
3245
+ :host([data-render-mode="shadow"][icon-name='action\:adjust_value']) {
3246
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(71, 180, 108));
3247
+ }
3248
+
3249
+ :host([data-render-mode="shadow"][icon-name='action\:upload']) {
3250
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3251
+ }
3252
+
3253
+ :host([data-render-mode="shadow"][icon-name='action\:remove_relationship']) {
3254
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
3255
+ }
3256
+
3257
+ :host([data-render-mode="shadow"][icon-name='action\:freeze_user']) {
3258
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3259
+ }
3260
+
3261
+ :host([data-render-mode="shadow"][icon-name='action\:new_person_account']) {
3262
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
3263
+ }
3264
+
3265
+ :host([data-render-mode="shadow"][icon-name='action\:bug']) {
3266
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 93));
3267
+ }
3268
+
3269
+ :host([data-render-mode="shadow"][icon-name='action\:apex']) {
3270
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(105, 110, 113));
3271
+ }
3272
+
3273
+ :host([data-render-mode="shadow"][icon-name='action\:new_opportunity']) {
3274
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(252, 185, 91));
3275
+ }
3276
+
3277
+ :host([data-render-mode="shadow"][icon-name='action\:fallback']) {
3278
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(152, 149, 238));
3279
+ }
3280
+
3281
+ :host([data-render-mode="shadow"][icon-name='action\:dial_in']) {
3282
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 154, 227));
3283
+ }
3284
+
3285
+ :host([data-render-mode="shadow"][icon-name='action\:approval']) {
3286
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 198, 183));
3287
+ }
3288
+
3289
+ :host([data-render-mode="shadow"][icon-name='action\:change_owner']) {
3290
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3291
+ }
3292
+
3293
+ :host([data-render-mode="shadow"][icon-name='action\:new_task']) {
3294
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(75, 192, 118));
3295
+ }
3296
+
3297
+ :host([data-render-mode="shadow"][icon-name='action\:priority']) {
3298
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(251, 180, 57));
3299
+ }
3300
+
3301
+ :host([data-render-mode="shadow"][icon-name='action\:remove']) {
3302
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3303
+ }
3304
+
3305
+ :host([data-render-mode="shadow"][icon-name='action\:web_link']) {
3306
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
3307
+ }
3308
+
3309
+ :host([data-render-mode="shadow"][icon-name='action\:leave_group']) {
3310
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 158, 88));
3311
+ }
3312
+
3313
+ :host([data-render-mode="shadow"][icon-name='action\:manage_perm_sets']) {
3314
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3315
+ }
3316
+
3317
+ :host([data-render-mode="shadow"][icon-name='action\:close']) {
3318
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 110, 100));
3319
+ }
3320
+
3321
+ :host([data-render-mode="shadow"][icon-name='action\:google_news']) {
3322
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 103, 91));
3323
+ }
3324
+
3325
+ :host([data-render-mode="shadow"][icon-name='action\:announcement']) {
3326
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(254, 143, 96));
3327
+ }
3328
+
3329
+ :host([data-render-mode="shadow"][icon-name='action\:back']) {
3330
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(13, 194, 217));
3331
+ }
3332
+
3333
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom90']) {
3334
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(34, 164, 138));
3335
+ }
3336
+
3337
+ :host([data-render-mode="shadow"][icon-name='action\:download']) {
3338
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3339
+ }
3340
+
3341
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom80']) {
3342
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 154, 213));
3343
+ }
3344
+
3345
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom91']) {
3346
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 123, 102));
3347
+ }
3348
+
3349
+ :host([data-render-mode="shadow"][icon-name='action\:search']) {
3350
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 173, 235));
3351
+ }
3352
+
3353
+ :host([data-render-mode="shadow"][icon-name='action\:new_event']) {
3354
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
3355
+ }
3356
+
3357
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom70']) {
3358
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 105, 180));
3359
+ }
3360
+
3361
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom81']) {
3362
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(218, 98, 127));
3363
+ }
3364
+
3365
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom92']) {
3366
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(81, 126, 130));
3367
+ }
3368
+
3369
+ :host([data-render-mode="shadow"][icon-name='action\:refresh']) {
3370
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3371
+ }
3372
+
3373
+ :host([data-render-mode="shadow"][icon-name='action\:share_thanks']) {
3374
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 105, 110));
3375
+ }
3376
+
3377
+ :host([data-render-mode="shadow"][icon-name='action\:update']) {
3378
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(129, 180, 214));
3379
+ }
3380
+
3381
+ :host([data-render-mode="shadow"][icon-name='action\:email']) {
3382
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(149, 174, 197));
3383
+ }
3384
+
3385
+ :host([data-render-mode="shadow"][icon-name='action\:join_group']) {
3386
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(119, 158, 242));
3387
+ }
3388
+
3389
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom60']) {
3390
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(191, 90, 136));
3391
+ }
3392
+
3393
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom71']) {
3394
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 110, 227));
3395
+ }
3396
+
3397
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom82']) {
3398
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(209, 91, 151));
3399
+ }
3400
+
3401
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom93']) {
3402
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(144, 77, 76));
3403
+ }
3404
+
3405
+ :host([data-render-mode="shadow"][icon-name='action\:edit']) {
3406
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(29, 204, 191));
3407
+ }
3408
+
3409
+ :host([data-render-mode="shadow"][icon-name='action\:quote']) {
3410
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(136, 198, 81));
3411
+ }
3412
+
3413
+ :host([data-render-mode="shadow"][icon-name='action\:dropbox']) {
3414
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(82, 174, 249));
3415
+ }
3416
+
3417
+ :host([data-render-mode="shadow"][icon-name='action\:description']) {
3418
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
3419
+ }
3420
+
3421
+ :host([data-render-mode="shadow"][icon-name='action\:map']) {
3422
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 198, 238));
3423
+ }
3424
+
3425
+ :host([data-render-mode="shadow"][icon-name='action\:user']) {
3426
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(101, 202, 228));
3427
+ }
3428
+
3429
+ :host([data-render-mode="shadow"][icon-name='action\:reset_password']) {
3430
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3431
+ }
3432
+
3433
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom50']) {
3434
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(73, 188, 211));
3435
+ }
3436
+
3437
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom61']) {
3438
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 115, 118));
3439
+ }
3440
+
3441
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom72']) {
3442
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(141, 155, 251));
3443
+ }
3444
+
3445
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom83']) {
3446
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(231, 128, 111));
3447
+ }
3448
+
3449
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom94']) {
3450
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 156, 186));
3451
+ }
3452
+
3453
+ :host([data-render-mode="shadow"][icon-name='action\:clone']) {
3454
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
3455
+ }
3456
+
3457
+ :host([data-render-mode="shadow"][icon-name='action\:script']) {
3458
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 112, 210));
3459
+ }
3460
+
3461
+ :host([data-render-mode="shadow"][icon-name='action\:delete']) {
3462
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 113, 124));
3463
+ }
3464
+
3465
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom40']) {
3466
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 199, 94));
3467
+ }
3468
+
3469
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom51']) {
3470
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 199, 96));
3471
+ }
3472
+
3473
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom62']) {
3474
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(107, 146, 220));
3475
+ }
3476
+
3477
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom73']) {
3478
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 158, 240));
3479
+ }
3480
+
3481
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom84']) {
3482
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(246, 112, 123));
3483
+ }
3484
+
3485
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom95']) {
3486
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 207, 106));
3487
+ }
3488
+
3489
+ :host([data-render-mode="shadow"][icon-name='action\:share']) {
3490
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3491
+ }
3492
+
3493
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom30']) {
3494
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(245, 159, 113));
3495
+ }
3496
+
3497
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom41']) {
3498
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(67, 181, 181));
3499
+ }
3500
+
3501
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom52']) {
3502
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(238, 142, 111));
3503
+ }
3504
+
3505
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom63']) {
3506
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(124, 207, 96));
3507
+ }
3508
+
3509
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom74']) {
3510
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(65, 200, 160));
3511
+ }
3512
+
3513
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom85']) {
3514
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 104, 145));
3515
+ }
3516
+
3517
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom96']) {
3518
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(109, 157, 227));
3519
+ }
3520
+
3521
+ :host([data-render-mode="shadow"][icon-name='action\:log_event']) {
3522
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(108, 161, 233));
3523
+ }
3524
+
3525
+ :host([data-render-mode="shadow"][icon-name='action\:new_group']) {
3526
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(131, 182, 255));
3527
+ }
3528
+
3529
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom20']) {
3530
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(72, 199, 200));
3531
+ }
3532
+
3533
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom31']) {
3534
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 104, 127));
3535
+ }
3536
+
3537
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom42']) {
3538
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 91));
3539
+ }
3540
+
3541
+ :host([data-render-mode="shadow"][icon-name='action\:info']) {
3542
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3543
+ }
3544
+
3545
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom53']) {
3546
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(243, 110, 131));
3547
+ }
3548
+
3549
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom64']) {
3550
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(97, 143, 216));
3551
+ }
3552
+
3553
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom75']) {
3554
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(205, 159, 101));
3555
+ }
3556
+
3557
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom86']) {
3558
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 96, 171));
3559
+ }
3560
+
3561
+ :host([data-render-mode="shadow"][icon-name='action\:flow']) {
3562
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(0, 121, 188));
3563
+ }
3564
+
3565
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom97']) {
3566
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(221, 96, 133));
3567
+ }
3568
+
3569
+ :host([data-render-mode="shadow"][icon-name='action\:submit_for_approval']) {
3570
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 204, 122));
3571
+ }
3572
+
3573
+ :host([data-render-mode="shadow"][icon-name='action\:new']) {
3574
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(51, 188, 231));
3575
+ }
3576
+
3577
+ :host([data-render-mode="shadow"][icon-name='action\:new_campaign']) {
3578
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(244, 151, 86));
3579
+ }
3580
+
3581
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom10']) {
3582
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(100, 136, 227));
3583
+ }
3584
+
3585
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom21']) {
3586
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(138, 122, 237));
3587
+ }
3588
+
3589
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom32']) {
3590
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(56, 195, 147));
3591
+ }
3592
+
3593
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom43']) {
3594
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 147, 249));
3595
+ }
3596
+
3597
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom54']) {
3598
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(234, 112, 177));
3599
+ }
3600
+
3601
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom65']) {
3602
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 121, 171));
3603
+ }
3604
+
3605
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom76']) {
3606
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(219, 109, 122));
3607
+ }
3608
+
3609
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom87']) {
3610
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 118, 229));
3611
+ }
3612
+
3613
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom98']) {
3614
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 190, 92));
3615
+ }
3616
+
3617
+ :host([data-render-mode="shadow"][icon-name='action\:new_case']) {
3618
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 207, 91));
3619
+ }
3620
+
3621
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom100']) {
3622
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 93, 118));
3623
+ }
3624
+
3625
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom1']) {
3626
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 123, 132));
3627
+ }
3628
+
3629
+ :host([data-render-mode="shadow"][icon-name='action\:new_contact']) {
3630
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
3631
+ }
3632
+
3633
+ :host([data-render-mode="shadow"][icon-name='action\:office_365']) {
3634
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(255, 128, 65));
3635
+ }
3636
+
3637
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom11']) {
3638
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(135, 132, 234));
3639
+ }
3640
+
3641
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom22']) {
3642
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(139, 133, 249));
3643
+ }
3644
+
3645
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom33']) {
3646
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(151, 207, 93));
3647
+ }
3648
+
3649
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom44']) {
3650
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(200, 202, 88));
3651
+ }
3652
+
3653
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom55']) {
3654
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(214, 110, 224));
3655
+ }
3656
+
3657
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom66']) {
3658
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(216, 190, 95));
3659
+ }
3660
+
3661
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom77']) {
3662
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(181, 93, 91));
3663
+ }
3664
+
3665
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom88']) {
3666
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(153, 111, 230));
3667
+ }
3668
+
3669
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom99']) {
3670
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(240, 133, 110));
3671
+ }
3672
+
3673
+ :host([data-render-mode="shadow"][icon-name='action\:add_contact']) {
3674
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(160, 148, 237));
3675
+ }
3676
+
3677
+ :host([data-render-mode="shadow"][icon-name='action\:evernote']) {
3678
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(134, 200, 111));
3679
+ }
3680
+
3681
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom2']) {
3682
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(207, 208, 92));
3683
+ }
3684
+
3685
+ :host([data-render-mode="shadow"][icon-name='action\:lead_convert']) {
3686
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 137, 98));
3687
+ }
3688
+
3689
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom12']) {
3690
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(220, 113, 209));
3691
+ }
3692
+
3693
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom23']) {
3694
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(176, 112, 230));
3695
+ }
3696
+
3697
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom34']) {
3698
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(213, 138, 106));
3699
+ }
3700
+
3701
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom45']) {
3702
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(217, 88, 121));
3703
+ }
3704
+
3705
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom56']) {
3706
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(113, 141, 235));
3707
+ }
3708
+
3709
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom67']) {
3710
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(248, 125, 118));
3711
+ }
3712
+
3713
+ :host([data-render-mode="shadow"][icon-name='action\:recall']) {
3714
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(74, 105, 141));
3715
+ }
3716
+
3717
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom78']) {
3718
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 149, 221));
3719
+ }
3720
+
3721
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom89']) {
3722
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(62, 153, 190));
3723
+ }
3724
+
3725
+ :host([data-render-mode="shadow"][icon-name='action\:follow']) {
3726
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(49, 185, 248));
3727
+ }
3728
+
3729
+ :host([data-render-mode="shadow"][icon-name='action\:record']) {
3730
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(125, 195, 125));
3731
+ }
3732
+
3733
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom3']) {
3734
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(236, 180, 108));
3735
+ }
3736
+
3737
+ :host([data-render-mode="shadow"][icon-name='action\:new_note']) {
3738
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(230, 212, 120));
3739
+ }
3740
+
3741
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom13']) {
3742
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(223, 97, 132));
3743
+ }
3744
+
3745
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom24']) {
3746
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(229, 103, 152));
3747
+ }
3748
+
3749
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom35']) {
3750
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 99, 126));
3751
+ }
3752
+
3753
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom46']) {
3754
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(103, 165, 231));
3755
+ }
3756
+
3757
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom57']) {
3758
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 156, 221));
3759
+ }
3760
+
3761
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom68']) {
3762
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(242, 105, 121));
3763
+ }
3764
+
3765
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom79']) {
3766
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(142, 211, 99));
3767
+ }
3768
+
3769
+ :host([data-render-mode="shadow"][icon-name='action\:new_child_case']) {
3770
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(250, 151, 92));
3771
+ }
3772
+
3773
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom4']) {
3774
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(225, 217, 81));
3775
+ }
3776
+
3777
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom14']) {
3778
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(60, 194, 179));
3779
+ }
3780
+
3781
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom25']) {
3782
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(228, 111, 190));
3783
+ }
3784
+
3785
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom36']) {
3786
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(212, 114, 212));
3787
+ }
3788
+
3789
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom47']) {
3790
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(95, 204, 100));
3791
+ }
3792
+
3793
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom58']) {
3794
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(52, 181, 157));
3795
+ }
3796
+
3797
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom69']) {
3798
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(237, 99, 135));
3799
+ }
3800
+
3801
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom5']) {
3802
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(159, 219, 102));
3803
+ }
3804
+
3805
+ :host([data-render-mode="shadow"][icon-name='action\:goal']) {
3806
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(86, 170, 223));
3807
+ }
3808
+
3809
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom15']) {
3810
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(247, 126, 117));
3811
+ }
3812
+
3813
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom26']) {
3814
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(118, 152, 240));
3815
+ }
3816
+
3817
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom37']) {
3818
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(140, 137, 242));
3819
+ }
3820
+
3821
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom48']) {
3822
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(239, 105, 127));
3823
+ }
3824
+
3825
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom59']) {
3826
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(227, 208, 103));
3827
+ }
3828
+
3829
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom6']) {
3830
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 196, 115));
3831
+ }
3832
+
3833
+ :host([data-render-mode="shadow"][icon-name='action\:log_this_event']) {
3834
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(235, 112, 146));
3835
+ }
3836
+
3837
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom16']) {
3838
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(233, 175, 103));
3839
+ }
3840
+
3841
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom27']) {
3842
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(90, 176, 210));
3843
+ }
3844
+
3845
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom38']) {
3846
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(83, 182, 215));
3847
+ }
3848
+
3849
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom49']) {
3850
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(226, 92, 128));
3851
+ }
3852
+
3853
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom7']) {
3854
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(106, 137, 229));
3855
+ }
3856
+
3857
+ :host([data-render-mode="shadow"][icon-name='action\:more']) {
3858
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
3859
+ }
3860
+
3861
+ :host([data-render-mode="shadow"][icon-name='action\:add_relationship']) {
3862
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(98, 183, 237));
3863
+ }
3864
+
3865
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom17']) {
3866
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(172, 211, 96));
3867
+ }
3868
+
3869
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom28']) {
3870
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(137, 192, 89));
3871
+ }
3872
+
3873
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom39']) {
3874
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(79, 190, 117));
3875
+ }
3876
+
3877
+ :host([data-render-mode="shadow"][icon-name='action\:password_unlock']) {
3878
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3879
+ }
3880
+
3881
+ :host([data-render-mode="shadow"][icon-name='action\:check']) {
3882
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(84, 105, 141));
3883
+ }
3884
+
3885
+ :host([data-render-mode="shadow"][icon-name='action\:update_status']) {
3886
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(30, 199, 190));
3887
+ }
3888
+
3889
+ :host([data-render-mode="shadow"][icon-name='action\:preview']) {
3890
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(127, 141, 225));
3891
+ }
3892
+
3893
+ :host([data-render-mode="shadow"][icon-name='action\:new_custom8']) {
3894
+ --sds-c-icon-color-background: var(--slds-c-icon-color-background, rgb(80, 206, 185));
3895
+ }
3896
+
628
3897
  /**
629
3898
  * @Note: Static fallbacks are in place until SLDS adopts SDS. Without static
630
3899
  * fallbacks, styles will regress due to invalid CSS variables from