superdesk-ui-framework 3.0.1-beta.2 → 3.0.1-beta.3

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 (328) hide show
  1. package/.vscode/settings.json +5 -0
  2. package/app/img/SD-logo.svg +52 -0
  3. package/app/styles/_accessibility.scss +1 -0
  4. package/app/styles/_big-icon-font.scss +3 -0
  5. package/app/styles/_boxed-list.scss +3 -0
  6. package/app/styles/_hamburger.scss +160 -0
  7. package/app/styles/_helpers.scss +11 -4
  8. package/app/styles/_icon-font.scss +3 -0
  9. package/app/styles/app.scss +3 -0
  10. package/app/styles/components/_sd-notification-panel.scss +48 -0
  11. package/app/styles/design-tokens/_design-tokens-general.scss +2 -5
  12. package/app/styles/design-tokens/_new-colors.scss +5 -0
  13. package/app/styles/form-elements/_inputs.scss +280 -63
  14. package/app/styles/grids/_grid-layout.scss +119 -39
  15. package/app/styles/menus/_sd-bottom-tabs.scss +70 -0
  16. package/app/styles/menus/_sd-left-navigation.scss +24 -1
  17. package/app/styles/menus/_sd-sidebar-menu.scss +10 -14
  18. package/app/styles/menus/_sd-top-menu.scss +19 -5
  19. package/app/styles/primereact/_pr-dropdown.scss +0 -2
  20. package/app-typescript/components/DatePicker.tsx +67 -20
  21. package/app-typescript/components/DonutChart.tsx +1 -1
  22. package/app-typescript/components/Icon.tsx +1 -1
  23. package/app-typescript/components/IconButton.tsx +5 -1
  24. package/app-typescript/components/Input.tsx +17 -3
  25. package/app-typescript/components/Layouts/BottomBarAction.tsx +35 -0
  26. package/app-typescript/components/Layouts/CoreLayout.tsx +62 -0
  27. package/app-typescript/components/Layouts/CoreLayoutContainer.tsx +16 -0
  28. package/app-typescript/components/Layouts/CoreLayoutFooter.tsx +15 -0
  29. package/app-typescript/components/Layouts/CoreLayoutMain.tsx +16 -0
  30. package/app-typescript/components/Layouts/CoreLayoutOverlay.tsx +15 -0
  31. package/app-typescript/components/Layouts/CoreLayoutSlideInMenu.tsx +24 -0
  32. package/app-typescript/components/Layouts/CoreLayoutTopMenu.tsx +35 -0
  33. package/app-typescript/components/Layouts/HamburgerButton.tsx +41 -0
  34. package/app-typescript/components/Layouts/Layout.tsx +1 -1
  35. package/app-typescript/components/Layouts/MainMenu.tsx +101 -0
  36. package/app-typescript/components/Layouts/NotificationPanel.tsx +109 -0
  37. package/app-typescript/components/Layouts/index.tsx +12 -0
  38. package/app-typescript/components/LeftMenu.tsx +6 -0
  39. package/app-typescript/components/Lists/BoxedList.tsx +36 -4
  40. package/app-typescript/components/Menu.tsx +31 -7
  41. package/app-typescript/components/Modal.tsx +5 -2
  42. package/app-typescript/components/MultiSelect.tsx +65 -22
  43. package/app-typescript/components/NavButton.tsx +4 -0
  44. package/app-typescript/components/Navigation/BottomNav.tsx +82 -0
  45. package/app-typescript/components/Select.tsx +8 -0
  46. package/app-typescript/components/SelectGrid.tsx +1 -1
  47. package/app-typescript/components/Skeleton.tsx +1 -1
  48. package/app-typescript/components/Text/Time.tsx +34 -0
  49. package/app-typescript/components/Togglebox.tsx +1 -1
  50. package/app-typescript/components/Tooltip.tsx +7 -5
  51. package/app-typescript/components/WithSizeObserver.tsx +88 -0
  52. package/app-typescript/dist/components/Alert.d.ts +16 -0
  53. package/app-typescript/dist/components/Autocomplete.d.ts +48 -0
  54. package/app-typescript/dist/components/Avatar.d.ts +33 -0
  55. package/app-typescript/dist/components/Badge.d.ts +13 -0
  56. package/app-typescript/dist/components/Button.d.ts +23 -0
  57. package/app-typescript/dist/components/ButtonGroup.d.ts +12 -0
  58. package/app-typescript/dist/components/CheckButtonGroup.d.ts +11 -0
  59. package/app-typescript/dist/components/CheckGroup.d.ts +9 -0
  60. package/app-typescript/dist/components/Checkbox.d.ts +19 -0
  61. package/app-typescript/dist/components/CheckboxButton.d.ts +19 -0
  62. package/app-typescript/dist/components/DatePicker.d.ts +37 -0
  63. package/app-typescript/dist/components/Divider.d.ts +9 -0
  64. package/app-typescript/dist/components/DonutChart.d.ts +12 -0
  65. package/app-typescript/dist/components/Dropdown.d.ts +28 -0
  66. package/app-typescript/dist/components/DropdownFirst.d.ts +42 -0
  67. package/app-typescript/dist/components/EmptyState.d.ts +11 -0
  68. package/app-typescript/dist/components/FormLabel.d.ts +9 -0
  69. package/app-typescript/dist/components/Genie.d.ts +13 -0
  70. package/app-typescript/dist/components/GridItem.d.ts +69 -0
  71. package/app-typescript/dist/components/GridList.d.ts +14 -0
  72. package/app-typescript/dist/components/HeadingText.d.ts +10 -0
  73. package/app-typescript/dist/components/HelloWorld.d.ts +8 -0
  74. package/app-typescript/dist/components/Icon.d.ts +12 -0
  75. package/app-typescript/dist/components/IconButton.d.ts +12 -0
  76. package/app-typescript/dist/components/IconLabel.d.ts +11 -0
  77. package/app-typescript/dist/components/Input.d.ts +24 -0
  78. package/app-typescript/dist/components/Label.d.ts +15 -0
  79. package/app-typescript/dist/components/LeftMenu.d.ts +26 -0
  80. package/app-typescript/dist/components/Loader.d.ts +8 -0
  81. package/app-typescript/dist/components/NavButton.d.ts +15 -0
  82. package/app-typescript/dist/components/Popover.d.ts +13 -0
  83. package/app-typescript/dist/components/PropsList.d.ts +15 -0
  84. package/app-typescript/dist/components/Radio.d.ts +19 -0
  85. package/app-typescript/dist/components/RadioButton.d.ts +20 -0
  86. package/app-typescript/dist/components/Select.d.ts +29 -0
  87. package/app-typescript/dist/components/SelectWithTemplate.d.ts +32 -0
  88. package/app-typescript/dist/components/SlidingToolbar.d.ts +8 -0
  89. package/app-typescript/dist/components/StrechBar.d.ts +4 -0
  90. package/app-typescript/dist/components/SubNav.d.ts +10 -0
  91. package/app-typescript/dist/components/Switch.d.ts +12 -0
  92. package/app-typescript/dist/components/TabCustom.d.ts +25 -0
  93. package/app-typescript/dist/components/TabList.d.ts +22 -0
  94. package/app-typescript/dist/components/Tag.d.ts +9 -0
  95. package/app-typescript/dist/components/TagInput.d.ts +7 -0
  96. package/app-typescript/dist/components/TagInputTest.d.ts +18 -0
  97. package/app-typescript/dist/components/TimePicker.d.ts +11 -0
  98. package/app-typescript/dist/components/Tooltip.d.ts +11 -0
  99. package/app-typescript/dist/components/_Positioner.d.ts +27 -0
  100. package/app-typescript/dist/index.d.ts +56 -0
  101. package/app-typescript/helpers.tsx +3 -0
  102. package/app-typescript/index.ts +3 -0
  103. package/dist/SD-logo.svg +52 -0
  104. package/dist/examples.bundle.css +660 -0
  105. package/dist/examples.bundle.js +29711 -27786
  106. package/dist/playgrounds/accessible-theme-test.html +1 -1
  107. package/dist/playgrounds/layout-test-2.html +1 -1
  108. package/dist/playgrounds/list-item-test.html +1 -1
  109. package/dist/playgrounds/master-desk.html +1 -1
  110. package/dist/playgrounds/media-carousel.html +1 -1
  111. package/dist/playgrounds/photo-desk.html +1 -1
  112. package/dist/playgrounds/planning.html +1 -1
  113. package/dist/playgrounds/publish.html +1 -1
  114. package/dist/playgrounds/publisher-content-analytics.html +1 -1
  115. package/dist/playgrounds/publisher-content-list-automatic.html +1 -1
  116. package/dist/playgrounds/publisher-content-list-manual.html +1 -1
  117. package/dist/playgrounds/publisher-content-lists.html +1 -1
  118. package/dist/playgrounds/publisher-dashboard.html +1 -1
  119. package/dist/playgrounds/publisher-output-control.html +1 -1
  120. package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +145 -0
  121. package/dist/playgrounds/react-playgrounds/Index.tsx +1 -0
  122. package/dist/playgrounds/react-playgrounds/TestGround.tsx +36 -0
  123. package/dist/playgrounds/react-playgrounds/components/Layout.tsx +1 -1
  124. package/dist/playgrounds/swimlane-view.html +1 -1
  125. package/dist/playgrounds/toasts.html +1 -1
  126. package/dist/playgrounds/video-editor.html +1 -1
  127. package/dist/react/DatePicker.tsx +10 -5
  128. package/dist/react/Index.tsx +5 -0
  129. package/dist/react/Inputs.tsx +109 -6
  130. package/dist/react/MultiSelect.tsx +6 -1
  131. package/dist/react/Selects.tsx +55 -0
  132. package/dist/react/WithSizeObserver.tsx +44 -0
  133. package/dist/superdesk-ui.bundle.css +2386 -116
  134. package/dist/superdesk-ui.bundle.js +30241 -28731
  135. package/dist/vendor.bundle.js +25026 -25026
  136. package/examples/index.js +4 -0
  137. package/examples/pages/playgrounds/accessible-theme-test.html +1 -1
  138. package/examples/pages/playgrounds/layout-test-2.html +1 -1
  139. package/examples/pages/playgrounds/list-item-test.html +1 -1
  140. package/examples/pages/playgrounds/master-desk.html +1 -1
  141. package/examples/pages/playgrounds/media-carousel.html +1 -1
  142. package/examples/pages/playgrounds/photo-desk.html +1 -1
  143. package/examples/pages/playgrounds/planning.html +1 -1
  144. package/examples/pages/playgrounds/publish.html +1 -1
  145. package/examples/pages/playgrounds/publisher-content-analytics.html +1 -1
  146. package/examples/pages/playgrounds/publisher-content-list-automatic.html +1 -1
  147. package/examples/pages/playgrounds/publisher-content-list-manual.html +1 -1
  148. package/examples/pages/playgrounds/publisher-content-lists.html +1 -1
  149. package/examples/pages/playgrounds/publisher-dashboard.html +1 -1
  150. package/examples/pages/playgrounds/publisher-output-control.html +1 -1
  151. package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +145 -0
  152. package/examples/pages/playgrounds/react-playgrounds/Index.tsx +1 -0
  153. package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +36 -0
  154. package/examples/pages/playgrounds/react-playgrounds/components/Layout.tsx +1 -1
  155. package/examples/pages/playgrounds/swimlane-view.html +1 -1
  156. package/examples/pages/playgrounds/toasts.html +1 -1
  157. package/examples/pages/playgrounds/video-editor.html +1 -1
  158. package/examples/pages/react/DatePicker.tsx +10 -5
  159. package/examples/pages/react/Index.tsx +5 -0
  160. package/examples/pages/react/Inputs.tsx +109 -6
  161. package/examples/pages/react/MultiSelect.tsx +6 -1
  162. package/examples/pages/react/Selects.tsx +55 -0
  163. package/examples/pages/react/WithSizeObserver.tsx +44 -0
  164. package/package.json +4 -4
  165. package/patches/@superdesk+primereact+5.0.2-4.patch +44 -0
  166. package/react/components/Alert.js +10 -8
  167. package/react/components/Autocomplete.js +16 -12
  168. package/react/components/Avatar.js +8 -6
  169. package/react/components/Badge.js +7 -5
  170. package/react/components/Button.js +8 -6
  171. package/react/components/ButtonGroup.js +7 -5
  172. package/react/components/Carousel.js +4 -2
  173. package/react/components/CheckButtonGroup.js +6 -4
  174. package/react/components/CheckGroup.js +5 -3
  175. package/react/components/Checkbox.js +5 -3
  176. package/react/components/CheckboxButton.js +6 -4
  177. package/react/components/ContentDivider.js +8 -6
  178. package/react/components/CreateButton.js +6 -4
  179. package/react/components/DatePicker.d.ts +10 -0
  180. package/react/components/DatePicker.js +60 -35
  181. package/react/components/Divider.js +6 -4
  182. package/react/components/DonutChart.d.ts +1 -1
  183. package/react/components/DonutChart.js +24 -6
  184. package/react/components/DropZone.js +6 -4
  185. package/react/components/Dropdown.js +7 -6
  186. package/react/components/DropdownFirst.js +18 -11
  187. package/react/components/EmptyState.js +7 -5
  188. package/react/components/Form/FormGroup.js +7 -5
  189. package/react/components/Form/FormItem.js +5 -3
  190. package/react/components/Form/FormLabel.js +5 -3
  191. package/react/components/Form/FormRow.js +5 -3
  192. package/react/components/Form/FormText.js +4 -2
  193. package/react/components/Form/index.js +1 -0
  194. package/react/components/FormLabel.js +5 -3
  195. package/react/components/GridItem.js +9 -7
  196. package/react/components/GridList.js +8 -6
  197. package/react/components/HeadingText.js +4 -2
  198. package/react/components/HelloWorld.js +4 -2
  199. package/react/components/Icon.d.ts +1 -1
  200. package/react/components/Icon.js +9 -7
  201. package/react/components/IconButton.js +8 -6
  202. package/react/components/IconLabel.js +7 -5
  203. package/react/components/IconPicker.js +13 -9
  204. package/react/components/Input.d.ts +6 -2
  205. package/react/components/Input.js +27 -13
  206. package/react/components/Label.js +10 -8
  207. package/react/components/Layouts/AuthorinInnerSideBar.js +4 -2
  208. package/react/components/Layouts/AuthoringContainer.js +7 -5
  209. package/react/components/Layouts/AuthoringFrame.js +4 -2
  210. package/react/components/Layouts/AuthoringFrameContainer.js +4 -2
  211. package/react/components/Layouts/AuthoringFrameLeftBar.js +4 -2
  212. package/react/components/Layouts/AuthoringFrameMain.js +4 -2
  213. package/react/components/Layouts/AuthoringFrameNavBar.js +4 -2
  214. package/react/components/Layouts/AuthoringFrameOverlay.js +4 -2
  215. package/react/components/Layouts/AuthoringFrameRightBar.js +4 -2
  216. package/react/components/Layouts/AuthoringFrameSidePanel.js +5 -3
  217. package/react/components/Layouts/AuthoringFrameSidePanelOverlay.js +5 -3
  218. package/react/components/Layouts/AuthoringInnerBody.js +4 -2
  219. package/react/components/Layouts/AuthoringInnerHeader.js +6 -4
  220. package/react/components/Layouts/AuthoringMain.js +4 -2
  221. package/react/components/Layouts/AuthoringMainContainer.js +4 -2
  222. package/react/components/Layouts/AuthoringMainContent.js +4 -2
  223. package/react/components/Layouts/AuthoringMainToolBar.js +5 -3
  224. package/react/components/Layouts/BottomBarAction.d.ts +12 -0
  225. package/react/components/Layouts/BottomBarAction.js +59 -0
  226. package/react/components/Layouts/Container.js +9 -7
  227. package/react/components/Layouts/ContentSplitter.js +6 -4
  228. package/react/components/Layouts/CoreLayout.d.ts +19 -0
  229. package/react/components/Layouts/CoreLayout.js +55 -0
  230. package/react/components/Layouts/CoreLayoutContainer.d.ts +9 -0
  231. package/react/components/Layouts/CoreLayoutContainer.js +49 -0
  232. package/react/components/Layouts/CoreLayoutFooter.d.ts +8 -0
  233. package/react/components/Layouts/CoreLayoutFooter.js +49 -0
  234. package/react/components/Layouts/CoreLayoutMain.d.ts +9 -0
  235. package/react/components/Layouts/CoreLayoutMain.js +49 -0
  236. package/react/components/Layouts/CoreLayoutOverlay.d.ts +8 -0
  237. package/react/components/Layouts/CoreLayoutOverlay.js +49 -0
  238. package/react/components/Layouts/CoreLayoutSlideInMenu.d.ts +11 -0
  239. package/react/components/Layouts/CoreLayoutSlideInMenu.js +58 -0
  240. package/react/components/Layouts/CoreLayoutTopMenu.d.ts +14 -0
  241. package/react/components/Layouts/CoreLayoutTopMenu.js +54 -0
  242. package/react/components/Layouts/HamburgerButton.d.ts +14 -0
  243. package/react/components/Layouts/HamburgerButton.js +63 -0
  244. package/react/components/Layouts/HeaderPanel.js +4 -2
  245. package/react/components/Layouts/Layout.js +4 -3
  246. package/react/components/Layouts/LayoutContainer.js +4 -2
  247. package/react/components/Layouts/LeftPanel.js +5 -3
  248. package/react/components/Layouts/MainMenu.d.ts +41 -0
  249. package/react/components/Layouts/MainMenu.js +103 -0
  250. package/react/components/Layouts/MainPanel.js +5 -3
  251. package/react/components/Layouts/NotificationPanel.d.ts +45 -0
  252. package/react/components/Layouts/NotificationPanel.js +110 -0
  253. package/react/components/Layouts/OverlayPanel.js +4 -2
  254. package/react/components/Layouts/PageLayout.js +4 -2
  255. package/react/components/Layouts/Panel.js +16 -14
  256. package/react/components/Layouts/RightPanel.js +4 -2
  257. package/react/components/Layouts/index.d.ts +11 -0
  258. package/react/components/Layouts/index.js +23 -0
  259. package/react/components/LeftMenu.d.ts +2 -0
  260. package/react/components/LeftMenu.js +19 -12
  261. package/react/components/ListItemLoader.js +4 -2
  262. package/react/components/Lists/BoxedList.d.ts +6 -0
  263. package/react/components/Lists/BoxedList.js +36 -15
  264. package/react/components/Lists/SimpleList.js +9 -7
  265. package/react/components/Lists/index.js +1 -0
  266. package/react/components/Loader.js +4 -2
  267. package/react/components/Menu.d.ts +2 -1
  268. package/react/components/Menu.js +48 -12
  269. package/react/components/Modal.d.ts +2 -1
  270. package/react/components/Modal.js +30 -9
  271. package/react/components/NavButton.d.ts +1 -0
  272. package/react/components/NavButton.js +9 -4
  273. package/react/components/Navigation/BottomNav.d.ts +23 -0
  274. package/react/components/Navigation/BottomNav.js +88 -0
  275. package/react/components/Navigation/QuickNavBar.js +13 -9
  276. package/react/components/Navigation/SideBarMenu.js +4 -2
  277. package/react/components/Navigation/SideBarTabs.js +4 -2
  278. package/react/components/Navigation/index.js +1 -0
  279. package/react/components/Popover.js +4 -2
  280. package/react/components/PropsList.js +4 -2
  281. package/react/components/RadioButtonGroup.js +9 -7
  282. package/react/components/RadioGroup.js +6 -4
  283. package/react/components/SearchBar.js +6 -4
  284. package/react/components/Select.d.ts +4 -0
  285. package/react/components/Select.js +19 -11
  286. package/react/components/SelectGrid.d.ts +1 -1
  287. package/react/components/SelectGrid.js +44 -23
  288. package/react/components/SelectWithTemplate.js +4 -2
  289. package/react/components/Skeleton.d.ts +1 -1
  290. package/react/components/Skeleton.js +26 -5
  291. package/react/components/SlidingToolbar.js +6 -4
  292. package/react/components/Spinner.js +6 -4
  293. package/react/components/StrechBar.js +4 -2
  294. package/react/components/SubNav.js +9 -7
  295. package/react/components/Switch.js +6 -4
  296. package/react/components/SwitchGroup.js +5 -3
  297. package/react/components/TabCustom.js +11 -7
  298. package/react/components/TabList.js +6 -4
  299. package/react/components/Tag.js +5 -4
  300. package/react/components/TagInput.js +7 -6
  301. package/react/components/TagInputTest.js +13 -9
  302. package/react/components/Text/Heading.js +10 -8
  303. package/react/components/Text/Text.js +10 -8
  304. package/react/components/Text/Time.d.ts +15 -0
  305. package/react/components/Text/Time.js +65 -0
  306. package/react/components/ThemeSelector.js +7 -5
  307. package/react/components/TimePicker.js +4 -2
  308. package/react/components/Toast.js +1 -1
  309. package/react/components/ToastMessage.js +6 -5
  310. package/react/components/ToastText.js +1 -1
  311. package/react/components/ToastWrapper.d.ts +2 -2
  312. package/react/components/ToastWrapper.js +14 -10
  313. package/react/components/Togglebox.d.ts +1 -1
  314. package/react/components/Togglebox.js +36 -15
  315. package/react/components/Tooltip.d.ts +1 -0
  316. package/react/components/Tooltip.js +14 -10
  317. package/react/components/WithSizeObserver.d.ts +25 -0
  318. package/react/components/WithSizeObserver.js +95 -0
  319. package/react/components/_Positioner.js +4 -2
  320. package/react/helpers.d.ts +1 -0
  321. package/react/helpers.js +7 -0
  322. package/react/index.d.ts +3 -0
  323. package/react/index.js +9 -1
  324. package/yarn-error.log +111 -0
  325. package/sd_icons.eot +0 -0
  326. package/sd_icons.svg +0 -189
  327. package/sd_icons.ttf +0 -0
  328. package/sd_icons.woff +0 -0
@@ -3696,6 +3696,9 @@ doc-react-playground {
3696
3696
  .icon-photo.color--light {
3697
3697
  color: var(--color-text-lighter) !important; }
3698
3698
 
3699
+ .icon-photo.color--white {
3700
+ color: #e2e5e9 !important; }
3701
+
3699
3702
  .icon-photo.scale--2x {
3700
3703
  --icon-base-size: 32px
3701
3704
  ; }
@@ -3732,6 +3735,9 @@ doc-react-playground {
3732
3735
  .icon-video.color--light {
3733
3736
  color: var(--color-text-lighter) !important; }
3734
3737
 
3738
+ .icon-video.color--white {
3739
+ color: #e2e5e9 !important; }
3740
+
3735
3741
  .icon-video.scale--2x {
3736
3742
  --icon-base-size: 32px
3737
3743
  ; }
@@ -3768,6 +3774,9 @@ doc-react-playground {
3768
3774
  .icon-map-marker.color--light {
3769
3775
  color: var(--color-text-lighter) !important; }
3770
3776
 
3777
+ .icon-map-marker.color--white {
3778
+ color: #e2e5e9 !important; }
3779
+
3771
3780
  .icon-map-marker.scale--2x {
3772
3781
  --icon-base-size: 32px
3773
3782
  ; }
@@ -3804,6 +3813,9 @@ doc-react-playground {
3804
3813
  .icon-slideshow.color--light {
3805
3814
  color: var(--color-text-lighter) !important; }
3806
3815
 
3816
+ .icon-slideshow.color--white {
3817
+ color: #e2e5e9 !important; }
3818
+
3807
3819
  .icon-slideshow.scale--2x {
3808
3820
  --icon-base-size: 32px
3809
3821
  ; }
@@ -3840,6 +3852,9 @@ doc-react-playground {
3840
3852
  .icon-text.color--light {
3841
3853
  color: var(--color-text-lighter) !important; }
3842
3854
 
3855
+ .icon-text.color--white {
3856
+ color: #e2e5e9 !important; }
3857
+
3843
3858
  .icon-text.scale--2x {
3844
3859
  --icon-base-size: 32px
3845
3860
  ; }
@@ -3876,6 +3891,9 @@ doc-react-playground {
3876
3891
  .icon-file.color--light {
3877
3892
  color: var(--color-text-lighter) !important; }
3878
3893
 
3894
+ .icon-file.color--white {
3895
+ color: #e2e5e9 !important; }
3896
+
3879
3897
  .icon-file.scale--2x {
3880
3898
  --icon-base-size: 32px
3881
3899
  ; }
@@ -3912,6 +3930,9 @@ doc-react-playground {
3912
3930
  .icon-calendar.color--light {
3913
3931
  color: var(--color-text-lighter) !important; }
3914
3932
 
3933
+ .icon-calendar.color--white {
3934
+ color: #e2e5e9 !important; }
3935
+
3915
3936
  .icon-calendar.scale--2x {
3916
3937
  --icon-base-size: 32px
3917
3938
  ; }
@@ -3948,6 +3969,9 @@ doc-react-playground {
3948
3969
  .icon-composite.color--light {
3949
3970
  color: var(--color-text-lighter) !important; }
3950
3971
 
3972
+ .icon-composite.color--white {
3973
+ color: #e2e5e9 !important; }
3974
+
3951
3975
  .icon-composite.scale--2x {
3952
3976
  --icon-base-size: 32px
3953
3977
  ; }
@@ -3984,6 +4008,9 @@ doc-react-playground {
3984
4008
  .icon-audio.color--light {
3985
4009
  color: var(--color-text-lighter) !important; }
3986
4010
 
4011
+ .icon-audio.color--white {
4012
+ color: #e2e5e9 !important; }
4013
+
3987
4014
  .icon-audio.scale--2x {
3988
4015
  --icon-base-size: 32px
3989
4016
  ; }
@@ -4020,6 +4047,9 @@ doc-react-playground {
4020
4047
  .icon-stream.color--light {
4021
4048
  color: var(--color-text-lighter) !important; }
4022
4049
 
4050
+ .icon-stream.color--white {
4051
+ color: #e2e5e9 !important; }
4052
+
4023
4053
  .icon-stream.scale--2x {
4024
4054
  --icon-base-size: 32px
4025
4055
  ; }
@@ -4056,6 +4086,9 @@ doc-react-playground {
4056
4086
  .icon-ingest.color--light {
4057
4087
  color: var(--color-text-lighter) !important; }
4058
4088
 
4089
+ .icon-ingest.color--white {
4090
+ color: #e2e5e9 !important; }
4091
+
4059
4092
  .icon-ingest.scale--2x {
4060
4093
  --icon-base-size: 32px
4061
4094
  ; }
@@ -4092,6 +4125,9 @@ doc-react-playground {
4092
4125
  .icon-archive.color--light {
4093
4126
  color: var(--color-text-lighter) !important; }
4094
4127
 
4128
+ .icon-archive.color--white {
4129
+ color: #e2e5e9 !important; }
4130
+
4095
4131
  .icon-archive.scale--2x {
4096
4132
  --icon-base-size: 32px
4097
4133
  ; }
@@ -4128,6 +4164,9 @@ doc-react-playground {
4128
4164
  .icon-time.color--light {
4129
4165
  color: var(--color-text-lighter) !important; }
4130
4166
 
4167
+ .icon-time.color--white {
4168
+ color: #e2e5e9 !important; }
4169
+
4131
4170
  .icon-time.scale--2x {
4132
4171
  --icon-base-size: 32px
4133
4172
  ; }
@@ -4164,6 +4203,9 @@ doc-react-playground {
4164
4203
  .icon-pin.color--light {
4165
4204
  color: var(--color-text-lighter) !important; }
4166
4205
 
4206
+ .icon-pin.color--white {
4207
+ color: #e2e5e9 !important; }
4208
+
4167
4209
  .icon-pin.scale--2x {
4168
4210
  --icon-base-size: 32px
4169
4211
  ; }
@@ -4200,6 +4242,9 @@ doc-react-playground {
4200
4242
  .icon-expand.color--light {
4201
4243
  color: var(--color-text-lighter) !important; }
4202
4244
 
4245
+ .icon-expand.color--white {
4246
+ color: #e2e5e9 !important; }
4247
+
4203
4248
  .icon-expand.scale--2x {
4204
4249
  --icon-base-size: 32px
4205
4250
  ; }
@@ -4236,6 +4281,9 @@ doc-react-playground {
4236
4281
  .icon-ascending.color--light {
4237
4282
  color: var(--color-text-lighter) !important; }
4238
4283
 
4284
+ .icon-ascending.color--white {
4285
+ color: #e2e5e9 !important; }
4286
+
4239
4287
  .icon-ascending.scale--2x {
4240
4288
  --icon-base-size: 32px
4241
4289
  ; }
@@ -4267,6 +4315,8 @@ doc-react-playground {
4267
4315
  color: var(--sd-colour-highlight) !important; }
4268
4316
  .icon-descending.color--light {
4269
4317
  color: var(--color-text-lighter) !important; }
4318
+ .icon-descending.color--white {
4319
+ color: #e2e5e9 !important; }
4270
4320
  .icon-descending.scale--2x {
4271
4321
  --icon-base-size: 32px
4272
4322
  ; }
@@ -4301,6 +4351,9 @@ doc-react-playground {
4301
4351
  .icon-th.color--light {
4302
4352
  color: var(--color-text-lighter) !important; }
4303
4353
 
4354
+ .icon-th.color--white {
4355
+ color: #e2e5e9 !important; }
4356
+
4304
4357
  .icon-th.scale--2x {
4305
4358
  --icon-base-size: 32px
4306
4359
  ; }
@@ -4337,6 +4390,9 @@ doc-react-playground {
4337
4390
  .icon-grid-view.color--light {
4338
4391
  color: var(--color-text-lighter) !important; }
4339
4392
 
4393
+ .icon-grid-view.color--white {
4394
+ color: #e2e5e9 !important; }
4395
+
4340
4396
  .icon-grid-view.scale--2x {
4341
4397
  --icon-base-size: 32px
4342
4398
  ; }
@@ -4373,6 +4429,9 @@ doc-react-playground {
4373
4429
  .icon-th-list.color--light {
4374
4430
  color: var(--color-text-lighter) !important; }
4375
4431
 
4432
+ .icon-th-list.color--white {
4433
+ color: #e2e5e9 !important; }
4434
+
4376
4435
  .icon-th-list.scale--2x {
4377
4436
  --icon-base-size: 32px
4378
4437
  ; }
@@ -4409,6 +4468,9 @@ doc-react-playground {
4409
4468
  .icon-list-view.color--light {
4410
4469
  color: var(--color-text-lighter) !important; }
4411
4470
 
4471
+ .icon-list-view.color--white {
4472
+ color: #e2e5e9 !important; }
4473
+
4412
4474
  .icon-list-view.scale--2x {
4413
4475
  --icon-base-size: 32px
4414
4476
  ; }
@@ -4445,6 +4507,9 @@ doc-react-playground {
4445
4507
  .icon-pencil.color--light {
4446
4508
  color: var(--color-text-lighter) !important; }
4447
4509
 
4510
+ .icon-pencil.color--white {
4511
+ color: #e2e5e9 !important; }
4512
+
4448
4513
  .icon-pencil.scale--2x {
4449
4514
  --icon-base-size: 32px
4450
4515
  ; }
@@ -4481,6 +4546,9 @@ doc-react-playground {
4481
4546
  .icon-lock.color--light {
4482
4547
  color: var(--color-text-lighter) !important; }
4483
4548
 
4549
+ .icon-lock.color--white {
4550
+ color: #e2e5e9 !important; }
4551
+
4484
4552
  .icon-lock.scale--2x {
4485
4553
  --icon-base-size: 32px
4486
4554
  ; }
@@ -4517,6 +4585,9 @@ doc-react-playground {
4517
4585
  .icon-retweet.color--light {
4518
4586
  color: var(--color-text-lighter) !important; }
4519
4587
 
4588
+ .icon-retweet.color--white {
4589
+ color: #e2e5e9 !important; }
4590
+
4520
4591
  .icon-retweet.scale--2x {
4521
4592
  --icon-base-size: 32px
4522
4593
  ; }
@@ -4553,6 +4624,9 @@ doc-react-playground {
4553
4624
  .icon-unspike.color--light {
4554
4625
  color: var(--color-text-lighter) !important; }
4555
4626
 
4627
+ .icon-unspike.color--white {
4628
+ color: #e2e5e9 !important; }
4629
+
4556
4630
  .icon-unspike.scale--2x {
4557
4631
  --icon-base-size: 32px
4558
4632
  ; }
@@ -4589,6 +4663,9 @@ doc-react-playground {
4589
4663
  .icon-fullscreen.color--light {
4590
4664
  color: var(--color-text-lighter) !important; }
4591
4665
 
4666
+ .icon-fullscreen.color--white {
4667
+ color: #e2e5e9 !important; }
4668
+
4592
4669
  .icon-fullscreen.scale--2x {
4593
4670
  --icon-base-size: 32px
4594
4671
  ; }
@@ -4625,6 +4702,9 @@ doc-react-playground {
4625
4702
  .icon-fetch-as.color--light {
4626
4703
  color: var(--color-text-lighter) !important; }
4627
4704
 
4705
+ .icon-fetch-as.color--white {
4706
+ color: #e2e5e9 !important; }
4707
+
4628
4708
  .icon-fetch-as.scale--2x {
4629
4709
  --icon-base-size: 32px
4630
4710
  ; }
@@ -4661,6 +4741,9 @@ doc-react-playground {
4661
4741
  .icon-search.color--light {
4662
4742
  color: var(--color-text-lighter) !important; }
4663
4743
 
4744
+ .icon-search.color--white {
4745
+ color: #e2e5e9 !important; }
4746
+
4664
4747
  .icon-search.scale--2x {
4665
4748
  --icon-base-size: 32px
4666
4749
  ; }
@@ -4697,6 +4780,9 @@ doc-react-playground {
4697
4780
  .icon-star.color--light {
4698
4781
  color: var(--color-text-lighter) !important; }
4699
4782
 
4783
+ .icon-star.color--white {
4784
+ color: #e2e5e9 !important; }
4785
+
4700
4786
  .icon-star.scale--2x {
4701
4787
  --icon-base-size: 32px
4702
4788
  ; }
@@ -4733,6 +4819,9 @@ doc-react-playground {
4733
4819
  .icon-star-empty.color--light {
4734
4820
  color: var(--color-text-lighter) !important; }
4735
4821
 
4822
+ .icon-star-empty.color--white {
4823
+ color: #e2e5e9 !important; }
4824
+
4736
4825
  .icon-star-empty.scale--2x {
4737
4826
  --icon-base-size: 32px
4738
4827
  ; }
@@ -4769,6 +4858,9 @@ doc-react-playground {
4769
4858
  .icon-multi-star.color--light {
4770
4859
  color: var(--color-text-lighter) !important; }
4771
4860
 
4861
+ .icon-multi-star.color--white {
4862
+ color: #e2e5e9 !important; }
4863
+
4772
4864
  .icon-multi-star.scale--2x {
4773
4865
  --icon-base-size: 32px
4774
4866
  ; }
@@ -4805,6 +4897,9 @@ doc-react-playground {
4805
4897
  .icon-th-large.color--light {
4806
4898
  color: var(--color-text-lighter) !important; }
4807
4899
 
4900
+ .icon-th-large.color--white {
4901
+ color: #e2e5e9 !important; }
4902
+
4808
4903
  .icon-th-large.scale--2x {
4809
4904
  --icon-base-size: 32px
4810
4905
  ; }
@@ -4841,6 +4936,9 @@ doc-react-playground {
4841
4936
  .icon-grid-view-large.color--light {
4842
4937
  color: var(--color-text-lighter) !important; }
4843
4938
 
4939
+ .icon-grid-view-large.color--white {
4940
+ color: #e2e5e9 !important; }
4941
+
4844
4942
  .icon-grid-view-large.scale--2x {
4845
4943
  --icon-base-size: 32px
4846
4944
  ; }
@@ -4877,6 +4975,9 @@ doc-react-playground {
4877
4975
  .icon-ok.color--light {
4878
4976
  color: var(--color-text-lighter) !important; }
4879
4977
 
4978
+ .icon-ok.color--white {
4979
+ color: #e2e5e9 !important; }
4980
+
4880
4981
  .icon-ok.scale--2x {
4881
4982
  --icon-base-size: 32px
4882
4983
  ; }
@@ -4913,6 +5014,9 @@ doc-react-playground {
4913
5014
  .icon-zoom-in.color--light {
4914
5015
  color: var(--color-text-lighter) !important; }
4915
5016
 
5017
+ .icon-zoom-in.color--white {
5018
+ color: #e2e5e9 !important; }
5019
+
4916
5020
  .icon-zoom-in.scale--2x {
4917
5021
  --icon-base-size: 32px
4918
5022
  ; }
@@ -4949,6 +5053,9 @@ doc-react-playground {
4949
5053
  .icon-zoom-out.color--light {
4950
5054
  color: var(--color-text-lighter) !important; }
4951
5055
 
5056
+ .icon-zoom-out.color--white {
5057
+ color: #e2e5e9 !important; }
5058
+
4952
5059
  .icon-zoom-out.scale--2x {
4953
5060
  --icon-base-size: 32px
4954
5061
  ; }
@@ -4985,6 +5092,9 @@ doc-react-playground {
4985
5092
  .icon-signal.color--light {
4986
5093
  color: var(--color-text-lighter) !important; }
4987
5094
 
5095
+ .icon-signal.color--white {
5096
+ color: #e2e5e9 !important; }
5097
+
4988
5098
  .icon-signal.scale--2x {
4989
5099
  --icon-base-size: 32px
4990
5100
  ; }
@@ -5021,6 +5131,9 @@ doc-react-playground {
5021
5131
  .icon-filter-large.color--light {
5022
5132
  color: var(--color-text-lighter) !important; }
5023
5133
 
5134
+ .icon-filter-large.color--white {
5135
+ color: #e2e5e9 !important; }
5136
+
5024
5137
  .icon-filter-large.scale--2x {
5025
5138
  --icon-base-size: 32px
5026
5139
  ; }
@@ -5057,6 +5170,9 @@ doc-react-playground {
5057
5170
  .icon-trash.color--light {
5058
5171
  color: var(--color-text-lighter) !important; }
5059
5172
 
5173
+ .icon-trash.color--white {
5174
+ color: #e2e5e9 !important; }
5175
+
5060
5176
  .icon-trash.scale--2x {
5061
5177
  --icon-base-size: 32px
5062
5178
  ; }
@@ -5093,6 +5209,9 @@ doc-react-playground {
5093
5209
  .icon-user.color--light {
5094
5210
  color: var(--color-text-lighter) !important; }
5095
5211
 
5212
+ .icon-user.color--white {
5213
+ color: #e2e5e9 !important; }
5214
+
5096
5215
  .icon-user.scale--2x {
5097
5216
  --icon-base-size: 32px
5098
5217
  ; }
@@ -5129,6 +5248,9 @@ doc-react-playground {
5129
5248
  .icon-download.color--light {
5130
5249
  color: var(--color-text-lighter) !important; }
5131
5250
 
5251
+ .icon-download.color--white {
5252
+ color: #e2e5e9 !important; }
5253
+
5132
5254
  .icon-download.scale--2x {
5133
5255
  --icon-base-size: 32px
5134
5256
  ; }
@@ -5165,6 +5287,9 @@ doc-react-playground {
5165
5287
  .icon-upload.color--light {
5166
5288
  color: var(--color-text-lighter) !important; }
5167
5289
 
5290
+ .icon-upload.color--white {
5291
+ color: #e2e5e9 !important; }
5292
+
5168
5293
  .icon-upload.scale--2x {
5169
5294
  --icon-base-size: 32px
5170
5295
  ; }
@@ -5201,6 +5326,9 @@ doc-react-playground {
5201
5326
  .icon-repeat.color--light {
5202
5327
  color: var(--color-text-lighter) !important; }
5203
5328
 
5329
+ .icon-repeat.color--white {
5330
+ color: #e2e5e9 !important; }
5331
+
5204
5332
  .icon-repeat.scale--2x {
5205
5333
  --icon-base-size: 32px
5206
5334
  ; }
@@ -5237,6 +5365,9 @@ doc-react-playground {
5237
5365
  .icon-refresh.color--light {
5238
5366
  color: var(--color-text-lighter) !important; }
5239
5367
 
5368
+ .icon-refresh.color--white {
5369
+ color: #e2e5e9 !important; }
5370
+
5240
5371
  .icon-refresh.scale--2x {
5241
5372
  --icon-base-size: 32px
5242
5373
  ; }
@@ -5273,6 +5404,9 @@ doc-react-playground {
5273
5404
  .icon-list-alt.color--light {
5274
5405
  color: var(--color-text-lighter) !important; }
5275
5406
 
5407
+ .icon-list-alt.color--white {
5408
+ color: #e2e5e9 !important; }
5409
+
5276
5410
  .icon-list-alt.scale--2x {
5277
5411
  --icon-base-size: 32px
5278
5412
  ; }
@@ -5309,6 +5443,9 @@ doc-react-playground {
5309
5443
  .icon-plus-large.color--light {
5310
5444
  color: var(--color-text-lighter) !important; }
5311
5445
 
5446
+ .icon-plus-large.color--white {
5447
+ color: #e2e5e9 !important; }
5448
+
5312
5449
  .icon-plus-large.scale--2x {
5313
5450
  --icon-base-size: 32px
5314
5451
  ; }
@@ -5345,6 +5482,9 @@ doc-react-playground {
5345
5482
  .icon-picture.color--light {
5346
5483
  color: var(--color-text-lighter) !important; }
5347
5484
 
5485
+ .icon-picture.color--white {
5486
+ color: #e2e5e9 !important; }
5487
+
5348
5488
  .icon-picture.scale--2x {
5349
5489
  --icon-base-size: 32px
5350
5490
  ; }
@@ -5381,6 +5521,9 @@ doc-react-playground {
5381
5521
  .icon-question-sign.color--light {
5382
5522
  color: var(--color-text-lighter) !important; }
5383
5523
 
5524
+ .icon-question-sign.color--white {
5525
+ color: #e2e5e9 !important; }
5526
+
5384
5527
  .icon-question-sign.scale--2x {
5385
5528
  --icon-base-size: 32px
5386
5529
  ; }
@@ -5417,6 +5560,9 @@ doc-react-playground {
5417
5560
  .icon-info-sign.color--light {
5418
5561
  color: var(--color-text-lighter) !important; }
5419
5562
 
5563
+ .icon-info-sign.color--white {
5564
+ color: #e2e5e9 !important; }
5565
+
5420
5566
  .icon-info-sign.scale--2x {
5421
5567
  --icon-base-size: 32px
5422
5568
  ; }
@@ -5453,6 +5599,9 @@ doc-react-playground {
5453
5599
  .icon-plus-sign.color--light {
5454
5600
  color: var(--color-text-lighter) !important; }
5455
5601
 
5602
+ .icon-plus-sign.color--white {
5603
+ color: #e2e5e9 !important; }
5604
+
5456
5605
  .icon-plus-sign.scale--2x {
5457
5606
  --icon-base-size: 32px
5458
5607
  ; }
@@ -5489,6 +5638,9 @@ doc-react-playground {
5489
5638
  .icon-minus-sign.color--light {
5490
5639
  color: var(--color-text-lighter) !important; }
5491
5640
 
5641
+ .icon-minus-sign.color--white {
5642
+ color: #e2e5e9 !important; }
5643
+
5492
5644
  .icon-minus-sign.scale--2x {
5493
5645
  --icon-base-size: 32px
5494
5646
  ; }
@@ -5525,6 +5677,9 @@ doc-react-playground {
5525
5677
  .icon-remove-sign.color--light {
5526
5678
  color: var(--color-text-lighter) !important; }
5527
5679
 
5680
+ .icon-remove-sign.color--white {
5681
+ color: #e2e5e9 !important; }
5682
+
5528
5683
  .icon-remove-sign.scale--2x {
5529
5684
  --icon-base-size: 32px
5530
5685
  ; }
@@ -5561,6 +5716,9 @@ doc-react-playground {
5561
5716
  .icon-share-alt.color--light {
5562
5717
  color: var(--color-text-lighter) !important; }
5563
5718
 
5719
+ .icon-share-alt.color--white {
5720
+ color: #e2e5e9 !important; }
5721
+
5564
5722
  .icon-share-alt.scale--2x {
5565
5723
  --icon-base-size: 32px
5566
5724
  ; }
@@ -5597,6 +5755,9 @@ doc-react-playground {
5597
5755
  .icon-exclamation-sign.color--light {
5598
5756
  color: var(--color-text-lighter) !important; }
5599
5757
 
5758
+ .icon-exclamation-sign.color--white {
5759
+ color: #e2e5e9 !important; }
5760
+
5600
5761
  .icon-exclamation-sign.scale--2x {
5601
5762
  --icon-base-size: 32px
5602
5763
  ; }
@@ -5633,6 +5794,9 @@ doc-react-playground {
5633
5794
  .icon-eye-open.color--light {
5634
5795
  color: var(--color-text-lighter) !important; }
5635
5796
 
5797
+ .icon-eye-open.color--white {
5798
+ color: #e2e5e9 !important; }
5799
+
5636
5800
  .icon-eye-open.scale--2x {
5637
5801
  --icon-base-size: 32px
5638
5802
  ; }
@@ -5669,6 +5833,9 @@ doc-react-playground {
5669
5833
  .icon-copy.color--light {
5670
5834
  color: var(--color-text-lighter) !important; }
5671
5835
 
5836
+ .icon-copy.color--white {
5837
+ color: #e2e5e9 !important; }
5838
+
5672
5839
  .icon-copy.scale--2x {
5673
5840
  --icon-base-size: 32px
5674
5841
  ; }
@@ -5705,6 +5872,9 @@ doc-react-playground {
5705
5872
  .icon-comment.color--light {
5706
5873
  color: var(--color-text-lighter) !important; }
5707
5874
 
5875
+ .icon-comment.color--white {
5876
+ color: #e2e5e9 !important; }
5877
+
5708
5878
  .icon-comment.scale--2x {
5709
5879
  --icon-base-size: 32px
5710
5880
  ; }
@@ -5741,6 +5911,9 @@ doc-react-playground {
5741
5911
  .icon-warning-sign.color--light {
5742
5912
  color: var(--color-text-lighter) !important; }
5743
5913
 
5914
+ .icon-warning-sign.color--white {
5915
+ color: #e2e5e9 !important; }
5916
+
5744
5917
  .icon-warning-sign.scale--2x {
5745
5918
  --icon-base-size: 32px
5746
5919
  ; }
@@ -5777,6 +5950,9 @@ doc-react-playground {
5777
5950
  .icon-adjust.color--light {
5778
5951
  color: var(--color-text-lighter) !important; }
5779
5952
 
5953
+ .icon-adjust.color--white {
5954
+ color: #e2e5e9 !important; }
5955
+
5780
5956
  .icon-adjust.scale--2x {
5781
5957
  --icon-base-size: 32px
5782
5958
  ; }
@@ -5813,6 +5989,9 @@ doc-react-playground {
5813
5989
  .icon-folder-close.color--light {
5814
5990
  color: var(--color-text-lighter) !important; }
5815
5991
 
5992
+ .icon-folder-close.color--white {
5993
+ color: #e2e5e9 !important; }
5994
+
5816
5995
  .icon-folder-close.scale--2x {
5817
5996
  --icon-base-size: 32px
5818
5997
  ; }
@@ -5849,6 +6028,9 @@ doc-react-playground {
5849
6028
  .icon-folder-open.color--light {
5850
6029
  color: var(--color-text-lighter) !important; }
5851
6030
 
6031
+ .icon-folder-open.color--white {
6032
+ color: #e2e5e9 !important; }
6033
+
5852
6034
  .icon-folder-open.scale--2x {
5853
6035
  --icon-base-size: 32px
5854
6036
  ; }
@@ -5885,6 +6067,9 @@ doc-react-playground {
5885
6067
  .icon-download-alt.color--light {
5886
6068
  color: var(--color-text-lighter) !important; }
5887
6069
 
6070
+ .icon-download-alt.color--white {
6071
+ color: #e2e5e9 !important; }
6072
+
5888
6073
  .icon-download-alt.scale--2x {
5889
6074
  --icon-base-size: 32px
5890
6075
  ; }
@@ -5921,6 +6106,9 @@ doc-react-playground {
5921
6106
  .icon-tasks.color--light {
5922
6107
  color: var(--color-text-lighter) !important; }
5923
6108
 
6109
+ .icon-tasks.color--white {
6110
+ color: #e2e5e9 !important; }
6111
+
5924
6112
  .icon-tasks.scale--2x {
5925
6113
  --icon-base-size: 32px
5926
6114
  ; }
@@ -5957,6 +6145,9 @@ doc-react-playground {
5957
6145
  .icon-globe.color--light {
5958
6146
  color: var(--color-text-lighter) !important; }
5959
6147
 
6148
+ .icon-globe.color--white {
6149
+ color: #e2e5e9 !important; }
6150
+
5960
6151
  .icon-globe.scale--2x {
5961
6152
  --icon-base-size: 32px
5962
6153
  ; }
@@ -5993,6 +6184,9 @@ doc-react-playground {
5993
6184
  .icon-link.color--light {
5994
6185
  color: var(--color-text-lighter) !important; }
5995
6186
 
6187
+ .icon-link.color--white {
6188
+ color: #e2e5e9 !important; }
6189
+
5996
6190
  .icon-link.scale--2x {
5997
6191
  --icon-base-size: 32px
5998
6192
  ; }
@@ -6029,6 +6223,9 @@ doc-react-playground {
6029
6223
  .icon-expand-thin.color--light {
6030
6224
  color: var(--color-text-lighter) !important; }
6031
6225
 
6226
+ .icon-expand-thin.color--white {
6227
+ color: #e2e5e9 !important; }
6228
+
6032
6229
  .icon-expand-thin.scale--2x {
6033
6230
  --icon-base-size: 32px
6034
6231
  ; }
@@ -6065,6 +6262,9 @@ doc-react-playground {
6065
6262
  .icon-assign.color--light {
6066
6263
  color: var(--color-text-lighter) !important; }
6067
6264
 
6265
+ .icon-assign.color--white {
6266
+ color: #e2e5e9 !important; }
6267
+
6068
6268
  .icon-assign.scale--2x {
6069
6269
  --icon-base-size: 32px
6070
6270
  ; }
@@ -6101,6 +6301,9 @@ doc-react-playground {
6101
6301
  .icon-dots.color--light {
6102
6302
  color: var(--color-text-lighter) !important; }
6103
6303
 
6304
+ .icon-dots.color--white {
6305
+ color: #e2e5e9 !important; }
6306
+
6104
6307
  .icon-dots.scale--2x {
6105
6308
  --icon-base-size: 32px
6106
6309
  ; }
@@ -6132,6 +6335,8 @@ doc-react-playground {
6132
6335
  color: var(--sd-colour-highlight) !important; }
6133
6336
  .icon-dots-vertical.color--light {
6134
6337
  color: var(--color-text-lighter) !important; }
6338
+ .icon-dots-vertical.color--white {
6339
+ color: #e2e5e9 !important; }
6135
6340
  .icon-dots-vertical.scale--2x {
6136
6341
  --icon-base-size: 32px
6137
6342
  ; }
@@ -6166,6 +6371,9 @@ doc-react-playground {
6166
6371
  .icon-backward-thin.color--light {
6167
6372
  color: var(--color-text-lighter) !important; }
6168
6373
 
6374
+ .icon-backward-thin.color--white {
6375
+ color: #e2e5e9 !important; }
6376
+
6169
6377
  .icon-backward-thin.scale--2x {
6170
6378
  --icon-base-size: 32px
6171
6379
  ; }
@@ -6202,6 +6410,9 @@ doc-react-playground {
6202
6410
  .icon-forward-thin.color--light {
6203
6411
  color: var(--color-text-lighter) !important; }
6204
6412
 
6413
+ .icon-forward-thin.color--white {
6414
+ color: #e2e5e9 !important; }
6415
+
6205
6416
  .icon-forward-thin.scale--2x {
6206
6417
  --icon-base-size: 32px
6207
6418
  ; }
@@ -6238,6 +6449,9 @@ doc-react-playground {
6238
6449
  .icon-chevron-left-thin.color--light {
6239
6450
  color: var(--color-text-lighter) !important; }
6240
6451
 
6452
+ .icon-chevron-left-thin.color--white {
6453
+ color: #e2e5e9 !important; }
6454
+
6241
6455
  .icon-chevron-left-thin.scale--2x {
6242
6456
  --icon-base-size: 32px
6243
6457
  ; }
@@ -6274,6 +6488,9 @@ doc-react-playground {
6274
6488
  .icon-chevron-right-thin.color--light {
6275
6489
  color: var(--color-text-lighter) !important; }
6276
6490
 
6491
+ .icon-chevron-right-thin.color--white {
6492
+ color: #e2e5e9 !important; }
6493
+
6277
6494
  .icon-chevron-right-thin.scale--2x {
6278
6495
  --icon-base-size: 32px
6279
6496
  ; }
@@ -6310,6 +6527,9 @@ doc-react-playground {
6310
6527
  .icon-switches.color--light {
6311
6528
  color: var(--color-text-lighter) !important; }
6312
6529
 
6530
+ .icon-switches.color--white {
6531
+ color: #e2e5e9 !important; }
6532
+
6313
6533
  .icon-switches.scale--2x {
6314
6534
  --icon-base-size: 32px
6315
6535
  ; }
@@ -6346,6 +6566,9 @@ doc-react-playground {
6346
6566
  .icon-plus-small.color--light {
6347
6567
  color: var(--color-text-lighter) !important; }
6348
6568
 
6569
+ .icon-plus-small.color--white {
6570
+ color: #e2e5e9 !important; }
6571
+
6349
6572
  .icon-plus-small.scale--2x {
6350
6573
  --icon-base-size: 32px
6351
6574
  ; }
@@ -6382,6 +6605,9 @@ doc-react-playground {
6382
6605
  .icon-minus-small.color--light {
6383
6606
  color: var(--color-text-lighter) !important; }
6384
6607
 
6608
+ .icon-minus-small.color--white {
6609
+ color: #e2e5e9 !important; }
6610
+
6385
6611
  .icon-minus-small.scale--2x {
6386
6612
  --icon-base-size: 32px
6387
6613
  ; }
@@ -6418,6 +6644,9 @@ doc-react-playground {
6418
6644
  .icon-close-small.color--light {
6419
6645
  color: var(--color-text-lighter) !important; }
6420
6646
 
6647
+ .icon-close-small.color--white {
6648
+ color: #e2e5e9 !important; }
6649
+
6421
6650
  .icon-close-small.scale--2x {
6422
6651
  --icon-base-size: 32px
6423
6652
  ; }
@@ -6454,6 +6683,9 @@ doc-react-playground {
6454
6683
  .icon-post.color--light {
6455
6684
  color: var(--color-text-lighter) !important; }
6456
6685
 
6686
+ .icon-post.color--white {
6687
+ color: #e2e5e9 !important; }
6688
+
6457
6689
  .icon-post.scale--2x {
6458
6690
  --icon-base-size: 32px
6459
6691
  ; }
@@ -6490,6 +6722,9 @@ doc-react-playground {
6490
6722
  .icon-external.color--light {
6491
6723
  color: var(--color-text-lighter) !important; }
6492
6724
 
6725
+ .icon-external.color--white {
6726
+ color: #e2e5e9 !important; }
6727
+
6493
6728
  .icon-external.scale--2x {
6494
6729
  --icon-base-size: 32px
6495
6730
  ; }
@@ -6526,6 +6761,9 @@ doc-react-playground {
6526
6761
  .icon-chevron-up-thin.color--light {
6527
6762
  color: var(--color-text-lighter) !important; }
6528
6763
 
6764
+ .icon-chevron-up-thin.color--white {
6765
+ color: #e2e5e9 !important; }
6766
+
6529
6767
  .icon-chevron-up-thin.scale--2x {
6530
6768
  --icon-base-size: 32px
6531
6769
  ; }
@@ -6562,6 +6800,9 @@ doc-react-playground {
6562
6800
  .icon-chevron-down-thin.color--light {
6563
6801
  color: var(--color-text-lighter) !important; }
6564
6802
 
6803
+ .icon-chevron-down-thin.color--white {
6804
+ color: #e2e5e9 !important; }
6805
+
6565
6806
  .icon-chevron-down-thin.scale--2x {
6566
6807
  --icon-base-size: 32px
6567
6808
  ; }
@@ -6598,6 +6839,9 @@ doc-react-playground {
6598
6839
  .icon-pick.color--light {
6599
6840
  color: var(--color-text-lighter) !important; }
6600
6841
 
6842
+ .icon-pick.color--white {
6843
+ color: #e2e5e9 !important; }
6844
+
6601
6845
  .icon-pick.scale--2x {
6602
6846
  --icon-base-size: 32px
6603
6847
  ; }
@@ -6634,6 +6878,9 @@ doc-react-playground {
6634
6878
  .icon-revert.color--light {
6635
6879
  color: var(--color-text-lighter) !important; }
6636
6880
 
6881
+ .icon-revert.color--white {
6882
+ color: #e2e5e9 !important; }
6883
+
6637
6884
  .icon-revert.scale--2x {
6638
6885
  --icon-base-size: 32px
6639
6886
  ; }
@@ -6670,6 +6917,9 @@ doc-react-playground {
6670
6917
  .icon-package-plus.color--light {
6671
6918
  color: var(--color-text-lighter) !important; }
6672
6919
 
6920
+ .icon-package-plus.color--white {
6921
+ color: #e2e5e9 !important; }
6922
+
6673
6923
  .icon-package-plus.scale--2x {
6674
6924
  --icon-base-size: 32px
6675
6925
  ; }
@@ -6706,6 +6956,9 @@ doc-react-playground {
6706
6956
  .icon-list-plus.color--light {
6707
6957
  color: var(--color-text-lighter) !important; }
6708
6958
 
6959
+ .icon-list-plus.color--white {
6960
+ color: #e2e5e9 !important; }
6961
+
6709
6962
  .icon-list-plus.scale--2x {
6710
6963
  --icon-base-size: 32px
6711
6964
  ; }
@@ -6742,6 +6995,9 @@ doc-react-playground {
6742
6995
  .icon-envelope.color--light {
6743
6996
  color: var(--color-text-lighter) !important; }
6744
6997
 
6998
+ .icon-envelope.color--white {
6999
+ color: #e2e5e9 !important; }
7000
+
6745
7001
  .icon-envelope.scale--2x {
6746
7002
  --icon-base-size: 32px
6747
7003
  ; }
@@ -6778,6 +7034,9 @@ doc-react-playground {
6778
7034
  .icon-heart.color--light {
6779
7035
  color: var(--color-text-lighter) !important; }
6780
7036
 
7037
+ .icon-heart.color--white {
7038
+ color: #e2e5e9 !important; }
7039
+
6781
7040
  .icon-heart.scale--2x {
6782
7041
  --icon-base-size: 32px
6783
7042
  ; }
@@ -6814,6 +7073,9 @@ doc-react-playground {
6814
7073
  .icon-home.color--light {
6815
7074
  color: var(--color-text-lighter) !important; }
6816
7075
 
7076
+ .icon-home.color--white {
7077
+ color: #e2e5e9 !important; }
7078
+
6817
7079
  .icon-home.scale--2x {
6818
7080
  --icon-base-size: 32px
6819
7081
  ; }
@@ -6850,6 +7112,9 @@ doc-react-playground {
6850
7112
  .icon-print.color--light {
6851
7113
  color: var(--color-text-lighter) !important; }
6852
7114
 
7115
+ .icon-print.color--white {
7116
+ color: #e2e5e9 !important; }
7117
+
6853
7118
  .icon-print.scale--2x {
6854
7119
  --icon-base-size: 32px
6855
7120
  ; }
@@ -6886,6 +7151,9 @@ doc-react-playground {
6886
7151
  .icon-font.color--light {
6887
7152
  color: var(--color-text-lighter) !important; }
6888
7153
 
7154
+ .icon-font.color--white {
7155
+ color: #e2e5e9 !important; }
7156
+
6889
7157
  .icon-font.scale--2x {
6890
7158
  --icon-base-size: 32px
6891
7159
  ; }
@@ -6922,6 +7190,9 @@ doc-react-playground {
6922
7190
  .icon-bold.color--light {
6923
7191
  color: var(--color-text-lighter) !important; }
6924
7192
 
7193
+ .icon-bold.color--white {
7194
+ color: #e2e5e9 !important; }
7195
+
6925
7196
  .icon-bold.scale--2x {
6926
7197
  --icon-base-size: 32px
6927
7198
  ; }
@@ -6958,6 +7229,9 @@ doc-react-playground {
6958
7229
  .icon-italic.color--light {
6959
7230
  color: var(--color-text-lighter) !important; }
6960
7231
 
7232
+ .icon-italic.color--white {
7233
+ color: #e2e5e9 !important; }
7234
+
6961
7235
  .icon-italic.scale--2x {
6962
7236
  --icon-base-size: 32px
6963
7237
  ; }
@@ -6994,6 +7268,9 @@ doc-react-playground {
6994
7268
  .icon-underline.color--light {
6995
7269
  color: var(--color-text-lighter) !important; }
6996
7270
 
7271
+ .icon-underline.color--white {
7272
+ color: #e2e5e9 !important; }
7273
+
6997
7274
  .icon-underline.scale--2x {
6998
7275
  --icon-base-size: 32px
6999
7276
  ; }
@@ -7030,6 +7307,9 @@ doc-react-playground {
7030
7307
  .icon-strikethrough.color--light {
7031
7308
  color: var(--color-text-lighter) !important; }
7032
7309
 
7310
+ .icon-strikethrough.color--white {
7311
+ color: #e2e5e9 !important; }
7312
+
7033
7313
  .icon-strikethrough.scale--2x {
7034
7314
  --icon-base-size: 32px
7035
7315
  ; }
@@ -7066,6 +7346,9 @@ doc-react-playground {
7066
7346
  .icon-align-left.color--light {
7067
7347
  color: var(--color-text-lighter) !important; }
7068
7348
 
7349
+ .icon-align-left.color--white {
7350
+ color: #e2e5e9 !important; }
7351
+
7069
7352
  .icon-align-left.scale--2x {
7070
7353
  --icon-base-size: 32px
7071
7354
  ; }
@@ -7102,6 +7385,9 @@ doc-react-playground {
7102
7385
  .icon-align-center.color--light {
7103
7386
  color: var(--color-text-lighter) !important; }
7104
7387
 
7388
+ .icon-align-center.color--white {
7389
+ color: #e2e5e9 !important; }
7390
+
7105
7391
  .icon-align-center.scale--2x {
7106
7392
  --icon-base-size: 32px
7107
7393
  ; }
@@ -7138,6 +7424,9 @@ doc-react-playground {
7138
7424
  .icon-align-right.color--light {
7139
7425
  color: var(--color-text-lighter) !important; }
7140
7426
 
7427
+ .icon-align-right.color--white {
7428
+ color: #e2e5e9 !important; }
7429
+
7141
7430
  .icon-align-right.scale--2x {
7142
7431
  --icon-base-size: 32px
7143
7432
  ; }
@@ -7174,6 +7463,9 @@ doc-react-playground {
7174
7463
  .icon-align-justify.color--light {
7175
7464
  color: var(--color-text-lighter) !important; }
7176
7465
 
7466
+ .icon-align-justify.color--white {
7467
+ color: #e2e5e9 !important; }
7468
+
7177
7469
  .icon-align-justify.scale--2x {
7178
7470
  --icon-base-size: 32px
7179
7471
  ; }
@@ -7210,6 +7502,9 @@ doc-react-playground {
7210
7502
  .icon-unordered-list.color--light {
7211
7503
  color: var(--color-text-lighter) !important; }
7212
7504
 
7505
+ .icon-unordered-list.color--white {
7506
+ color: #e2e5e9 !important; }
7507
+
7213
7508
  .icon-unordered-list.scale--2x {
7214
7509
  --icon-base-size: 32px
7215
7510
  ; }
@@ -7246,6 +7541,9 @@ doc-react-playground {
7246
7541
  .icon-indent-left.color--light {
7247
7542
  color: var(--color-text-lighter) !important; }
7248
7543
 
7544
+ .icon-indent-left.color--white {
7545
+ color: #e2e5e9 !important; }
7546
+
7249
7547
  .icon-indent-left.scale--2x {
7250
7548
  --icon-base-size: 32px
7251
7549
  ; }
@@ -7282,6 +7580,9 @@ doc-react-playground {
7282
7580
  .icon-indent-right.color--light {
7283
7581
  color: var(--color-text-lighter) !important; }
7284
7582
 
7583
+ .icon-indent-right.color--white {
7584
+ color: #e2e5e9 !important; }
7585
+
7285
7586
  .icon-indent-right.scale--2x {
7286
7587
  --icon-base-size: 32px
7287
7588
  ; }
@@ -7318,6 +7619,9 @@ doc-react-playground {
7318
7619
  .icon-ban-circle.color--light {
7319
7620
  color: var(--color-text-lighter) !important; }
7320
7621
 
7622
+ .icon-ban-circle.color--white {
7623
+ color: #e2e5e9 !important; }
7624
+
7321
7625
  .icon-ban-circle.scale--2x {
7322
7626
  --icon-base-size: 32px
7323
7627
  ; }
@@ -7354,6 +7658,9 @@ doc-react-playground {
7354
7658
  .icon-bell.color--light {
7355
7659
  color: var(--color-text-lighter) !important; }
7356
7660
 
7661
+ .icon-bell.color--white {
7662
+ color: #e2e5e9 !important; }
7663
+
7357
7664
  .icon-bell.scale--2x {
7358
7665
  --icon-base-size: 32px
7359
7666
  ; }
@@ -7390,6 +7697,9 @@ doc-react-playground {
7390
7697
  .icon-random.color--light {
7391
7698
  color: var(--color-text-lighter) !important; }
7392
7699
 
7700
+ .icon-random.color--white {
7701
+ color: #e2e5e9 !important; }
7702
+
7393
7703
  .icon-random.scale--2x {
7394
7704
  --icon-base-size: 32px
7395
7705
  ; }
@@ -7426,6 +7736,9 @@ doc-react-playground {
7426
7736
  .icon-settings.color--light {
7427
7737
  color: var(--color-text-lighter) !important; }
7428
7738
 
7739
+ .icon-settings.color--white {
7740
+ color: #e2e5e9 !important; }
7741
+
7429
7742
  .icon-settings.scale--2x {
7430
7743
  --icon-base-size: 32px
7431
7744
  ; }
@@ -7462,6 +7775,9 @@ doc-react-playground {
7462
7775
  .icon-package-create.color--light {
7463
7776
  color: var(--color-text-lighter) !important; }
7464
7777
 
7778
+ .icon-package-create.color--white {
7779
+ color: #e2e5e9 !important; }
7780
+
7465
7781
  .icon-package-create.scale--2x {
7466
7782
  --icon-base-size: 32px
7467
7783
  ; }
@@ -7498,6 +7814,9 @@ doc-react-playground {
7498
7814
  .icon-list-menu.color--light {
7499
7815
  color: var(--color-text-lighter) !important; }
7500
7816
 
7817
+ .icon-list-menu.color--white {
7818
+ color: #e2e5e9 !important; }
7819
+
7501
7820
  .icon-list-menu.scale--2x {
7502
7821
  --icon-base-size: 32px
7503
7822
  ; }
@@ -7534,6 +7853,9 @@ doc-react-playground {
7534
7853
  .icon-new-doc.color--light {
7535
7854
  color: var(--color-text-lighter) !important; }
7536
7855
 
7856
+ .icon-new-doc.color--white {
7857
+ color: #e2e5e9 !important; }
7858
+
7537
7859
  .icon-new-doc.scale--2x {
7538
7860
  --icon-base-size: 32px
7539
7861
  ; }
@@ -7570,6 +7892,9 @@ doc-react-playground {
7570
7892
  .icon-edit-line.color--light {
7571
7893
  color: var(--color-text-lighter) !important; }
7572
7894
 
7895
+ .icon-edit-line.color--white {
7896
+ color: #e2e5e9 !important; }
7897
+
7573
7898
  .icon-edit-line.scale--2x {
7574
7899
  --icon-base-size: 32px
7575
7900
  ; }
@@ -7606,6 +7931,9 @@ doc-react-playground {
7606
7931
  .icon-calendar-list.color--light {
7607
7932
  color: var(--color-text-lighter) !important; }
7608
7933
 
7934
+ .icon-calendar-list.color--white {
7935
+ color: #e2e5e9 !important; }
7936
+
7609
7937
  .icon-calendar-list.scale--2x {
7610
7938
  --icon-base-size: 32px
7611
7939
  ; }
@@ -7642,6 +7970,9 @@ doc-react-playground {
7642
7970
  .icon-collapse.color--light {
7643
7971
  color: var(--color-text-lighter) !important; }
7644
7972
 
7973
+ .icon-collapse.color--white {
7974
+ color: #e2e5e9 !important; }
7975
+
7645
7976
  .icon-collapse.scale--2x {
7646
7977
  --icon-base-size: 32px
7647
7978
  ; }
@@ -7678,6 +8009,9 @@ doc-react-playground {
7678
8009
  .icon-broadcast.color--light {
7679
8010
  color: var(--color-text-lighter) !important; }
7680
8011
 
8012
+ .icon-broadcast.color--white {
8013
+ color: #e2e5e9 !important; }
8014
+
7681
8015
  .icon-broadcast.scale--2x {
7682
8016
  --icon-base-size: 32px
7683
8017
  ; }
@@ -7714,6 +8048,9 @@ doc-react-playground {
7714
8048
  .icon-broadcast-create.color--light {
7715
8049
  color: var(--color-text-lighter) !important; }
7716
8050
 
8051
+ .icon-broadcast-create.color--white {
8052
+ color: #e2e5e9 !important; }
8053
+
7717
8054
  .icon-broadcast-create.scale--2x {
7718
8055
  --icon-base-size: 32px
7719
8056
  ; }
@@ -7750,6 +8087,9 @@ doc-react-playground {
7750
8087
  .icon-kill.color--light {
7751
8088
  color: var(--color-text-lighter) !important; }
7752
8089
 
8090
+ .icon-kill.color--white {
8091
+ color: #e2e5e9 !important; }
8092
+
7753
8093
  .icon-kill.scale--2x {
7754
8094
  --icon-base-size: 32px
7755
8095
  ; }
@@ -7786,6 +8126,9 @@ doc-react-playground {
7786
8126
  .icon-graphic.color--light {
7787
8127
  color: var(--color-text-lighter) !important; }
7788
8128
 
8129
+ .icon-graphic.color--white {
8130
+ color: #e2e5e9 !important; }
8131
+
7789
8132
  .icon-graphic.scale--2x {
7790
8133
  --icon-base-size: 32px
7791
8134
  ; }
@@ -7822,6 +8165,9 @@ doc-react-playground {
7822
8165
  .icon-close-thick.color--light {
7823
8166
  color: var(--color-text-lighter) !important; }
7824
8167
 
8168
+ .icon-close-thick.color--white {
8169
+ color: #e2e5e9 !important; }
8170
+
7825
8171
  .icon-close-thick.scale--2x {
7826
8172
  --icon-base-size: 32px
7827
8173
  ; }
@@ -7858,6 +8204,9 @@ doc-react-playground {
7858
8204
  .icon-move.color--light {
7859
8205
  color: var(--color-text-lighter) !important; }
7860
8206
 
8207
+ .icon-move.color--white {
8208
+ color: #e2e5e9 !important; }
8209
+
7861
8210
  .icon-move.scale--2x {
7862
8211
  --icon-base-size: 32px
7863
8212
  ; }
@@ -7894,6 +8243,9 @@ doc-react-playground {
7894
8243
  .icon-takes-package.color--light {
7895
8244
  color: var(--color-text-lighter) !important; }
7896
8245
 
8246
+ .icon-takes-package.color--white {
8247
+ color: #e2e5e9 !important; }
8248
+
7897
8249
  .icon-takes-package.scale--2x {
7898
8250
  --icon-base-size: 32px
7899
8251
  ; }
@@ -7930,6 +8282,9 @@ doc-react-playground {
7930
8282
  .icon-highlight-package.color--light {
7931
8283
  color: var(--color-text-lighter) !important; }
7932
8284
 
8285
+ .icon-highlight-package.color--white {
8286
+ color: #e2e5e9 !important; }
8287
+
7933
8288
  .icon-highlight-package.scale--2x {
7934
8289
  --icon-base-size: 32px
7935
8290
  ; }
@@ -7966,6 +8321,9 @@ doc-react-playground {
7966
8321
  .icon-preview-mode.color--light {
7967
8322
  color: var(--color-text-lighter) !important; }
7968
8323
 
8324
+ .icon-preview-mode.color--white {
8325
+ color: #e2e5e9 !important; }
8326
+
7969
8327
  .icon-preview-mode.scale--2x {
7970
8328
  --icon-base-size: 32px
7971
8329
  ; }
@@ -8002,6 +8360,9 @@ doc-react-playground {
8002
8360
  .icon-unlocked.color--light {
8003
8361
  color: var(--color-text-lighter) !important; }
8004
8362
 
8363
+ .icon-unlocked.color--white {
8364
+ color: #e2e5e9 !important; }
8365
+
8005
8366
  .icon-unlocked.scale--2x {
8006
8367
  --icon-base-size: 32px
8007
8368
  ; }
@@ -8038,6 +8399,9 @@ doc-react-playground {
8038
8399
  .icon-code.color--light {
8039
8400
  color: var(--color-text-lighter) !important; }
8040
8401
 
8402
+ .icon-code.color--white {
8403
+ color: #e2e5e9 !important; }
8404
+
8041
8405
  .icon-code.scale--2x {
8042
8406
  --icon-base-size: 32px
8043
8407
  ; }
@@ -8074,6 +8438,9 @@ doc-react-playground {
8074
8438
  .icon-cut.color--light {
8075
8439
  color: var(--color-text-lighter) !important; }
8076
8440
 
8441
+ .icon-cut.color--white {
8442
+ color: #e2e5e9 !important; }
8443
+
8077
8444
  .icon-cut.scale--2x {
8078
8445
  --icon-base-size: 32px
8079
8446
  ; }
@@ -8110,6 +8477,9 @@ doc-react-playground {
8110
8477
  .icon-paste.color--light {
8111
8478
  color: var(--color-text-lighter) !important; }
8112
8479
 
8480
+ .icon-paste.color--white {
8481
+ color: #e2e5e9 !important; }
8482
+
8113
8483
  .icon-paste.scale--2x {
8114
8484
  --icon-base-size: 32px
8115
8485
  ; }
@@ -8146,6 +8516,9 @@ doc-react-playground {
8146
8516
  .icon-arrow-left.color--light {
8147
8517
  color: var(--color-text-lighter) !important; }
8148
8518
 
8519
+ .icon-arrow-left.color--white {
8520
+ color: #e2e5e9 !important; }
8521
+
8149
8522
  .icon-arrow-left.scale--2x {
8150
8523
  --icon-base-size: 32px
8151
8524
  ; }
@@ -8182,6 +8555,9 @@ doc-react-playground {
8182
8555
  .icon-arrow-right.color--light {
8183
8556
  color: var(--color-text-lighter) !important; }
8184
8557
 
8558
+ .icon-arrow-right.color--white {
8559
+ color: #e2e5e9 !important; }
8560
+
8185
8561
  .icon-arrow-right.scale--2x {
8186
8562
  --icon-base-size: 32px
8187
8563
  ; }
@@ -8218,6 +8594,9 @@ doc-react-playground {
8218
8594
  .icon-info-large.color--light {
8219
8595
  color: var(--color-text-lighter) !important; }
8220
8596
 
8597
+ .icon-info-large.color--white {
8598
+ color: #e2e5e9 !important; }
8599
+
8221
8600
  .icon-info-large.scale--2x {
8222
8601
  --icon-base-size: 32px
8223
8602
  ; }
@@ -8254,6 +8633,9 @@ doc-react-playground {
8254
8633
  .icon-help-large.color--light {
8255
8634
  color: var(--color-text-lighter) !important; }
8256
8635
 
8636
+ .icon-help-large.color--white {
8637
+ color: #e2e5e9 !important; }
8638
+
8257
8639
  .icon-help-large.scale--2x {
8258
8640
  --icon-base-size: 32px
8259
8641
  ; }
@@ -8290,6 +8672,9 @@ doc-react-playground {
8290
8672
  .icon-attachment.color--light {
8291
8673
  color: var(--color-text-lighter) !important; }
8292
8674
 
8675
+ .icon-attachment.color--white {
8676
+ color: #e2e5e9 !important; }
8677
+
8293
8678
  .icon-attachment.scale--2x {
8294
8679
  --icon-base-size: 32px
8295
8680
  ; }
@@ -8326,6 +8711,9 @@ doc-react-playground {
8326
8711
  .icon-attachment-large.color--light {
8327
8712
  color: var(--color-text-lighter) !important; }
8328
8713
 
8714
+ .icon-attachment-large.color--white {
8715
+ color: #e2e5e9 !important; }
8716
+
8329
8717
  .icon-attachment-large.scale--2x {
8330
8718
  --icon-base-size: 32px
8331
8719
  ; }
@@ -8362,6 +8750,9 @@ doc-react-playground {
8362
8750
  .icon-table.color--light {
8363
8751
  color: var(--color-text-lighter) !important; }
8364
8752
 
8753
+ .icon-table.color--white {
8754
+ color: #e2e5e9 !important; }
8755
+
8365
8756
  .icon-table.scale--2x {
8366
8757
  --icon-base-size: 32px
8367
8758
  ; }
@@ -8398,6 +8789,9 @@ doc-react-playground {
8398
8789
  .icon-ordered-list.color--light {
8399
8790
  color: var(--color-text-lighter) !important; }
8400
8791
 
8792
+ .icon-ordered-list.color--white {
8793
+ color: #e2e5e9 !important; }
8794
+
8401
8795
  .icon-ordered-list.scale--2x {
8402
8796
  --icon-base-size: 32px
8403
8797
  ; }
@@ -8434,6 +8828,9 @@ doc-react-playground {
8434
8828
  .icon-heading-1.color--light {
8435
8829
  color: var(--color-text-lighter) !important; }
8436
8830
 
8831
+ .icon-heading-1.color--white {
8832
+ color: #e2e5e9 !important; }
8833
+
8437
8834
  .icon-heading-1.scale--2x {
8438
8835
  --icon-base-size: 32px
8439
8836
  ; }
@@ -8470,6 +8867,9 @@ doc-react-playground {
8470
8867
  .icon-heading-2.color--light {
8471
8868
  color: var(--color-text-lighter) !important; }
8472
8869
 
8870
+ .icon-heading-2.color--white {
8871
+ color: #e2e5e9 !important; }
8872
+
8473
8873
  .icon-heading-2.scale--2x {
8474
8874
  --icon-base-size: 32px
8475
8875
  ; }
@@ -8506,6 +8906,9 @@ doc-react-playground {
8506
8906
  .icon-heading-3.color--light {
8507
8907
  color: var(--color-text-lighter) !important; }
8508
8908
 
8909
+ .icon-heading-3.color--white {
8910
+ color: #e2e5e9 !important; }
8911
+
8509
8912
  .icon-heading-3.scale--2x {
8510
8913
  --icon-base-size: 32px
8511
8914
  ; }
@@ -8542,6 +8945,9 @@ doc-react-playground {
8542
8945
  .icon-heading-4.color--light {
8543
8946
  color: var(--color-text-lighter) !important; }
8544
8947
 
8948
+ .icon-heading-4.color--white {
8949
+ color: #e2e5e9 !important; }
8950
+
8545
8951
  .icon-heading-4.scale--2x {
8546
8952
  --icon-base-size: 32px
8547
8953
  ; }
@@ -8578,6 +8984,9 @@ doc-react-playground {
8578
8984
  .icon-heading-5.color--light {
8579
8985
  color: var(--color-text-lighter) !important; }
8580
8986
 
8987
+ .icon-heading-5.color--white {
8988
+ color: #e2e5e9 !important; }
8989
+
8581
8990
  .icon-heading-5.scale--2x {
8582
8991
  --icon-base-size: 32px
8583
8992
  ; }
@@ -8614,6 +9023,9 @@ doc-react-playground {
8614
9023
  .icon-heading-6.color--light {
8615
9024
  color: var(--color-text-lighter) !important; }
8616
9025
 
9026
+ .icon-heading-6.color--white {
9027
+ color: #e2e5e9 !important; }
9028
+
8617
9029
  .icon-heading-6.scale--2x {
8618
9030
  --icon-base-size: 32px
8619
9031
  ; }
@@ -8650,6 +9062,9 @@ doc-react-playground {
8650
9062
  .icon-quote.color--light {
8651
9063
  color: var(--color-text-lighter) !important; }
8652
9064
 
9065
+ .icon-quote.color--white {
9066
+ color: #e2e5e9 !important; }
9067
+
8653
9068
  .icon-quote.scale--2x {
8654
9069
  --icon-base-size: 32px
8655
9070
  ; }
@@ -8686,6 +9101,9 @@ doc-react-playground {
8686
9101
  .icon-multiedit.color--light {
8687
9102
  color: var(--color-text-lighter) !important; }
8688
9103
 
9104
+ .icon-multiedit.color--white {
9105
+ color: #e2e5e9 !important; }
9106
+
8689
9107
  .icon-multiedit.scale--2x {
8690
9108
  --icon-base-size: 32px
8691
9109
  ; }
@@ -8722,6 +9140,9 @@ doc-react-playground {
8722
9140
  .icon-phone.color--light {
8723
9141
  color: var(--color-text-lighter) !important; }
8724
9142
 
9143
+ .icon-phone.color--white {
9144
+ color: #e2e5e9 !important; }
9145
+
8725
9146
  .icon-phone.scale--2x {
8726
9147
  --icon-base-size: 32px
8727
9148
  ; }
@@ -8758,6 +9179,9 @@ doc-react-playground {
8758
9179
  .icon-mobile.color--light {
8759
9180
  color: var(--color-text-lighter) !important; }
8760
9181
 
9182
+ .icon-mobile.color--white {
9183
+ color: #e2e5e9 !important; }
9184
+
8761
9185
  .icon-mobile.scale--2x {
8762
9186
  --icon-base-size: 32px
8763
9187
  ; }
@@ -8794,6 +9218,9 @@ doc-react-playground {
8794
9218
  .icon-twitter.color--light {
8795
9219
  color: var(--color-text-lighter) !important; }
8796
9220
 
9221
+ .icon-twitter.color--white {
9222
+ color: #e2e5e9 !important; }
9223
+
8797
9224
  .icon-twitter.scale--2x {
8798
9225
  --icon-base-size: 32px
8799
9226
  ; }
@@ -8830,6 +9257,9 @@ doc-react-playground {
8830
9257
  .icon-facebook.color--light {
8831
9258
  color: var(--color-text-lighter) !important; }
8832
9259
 
9260
+ .icon-facebook.color--white {
9261
+ color: #e2e5e9 !important; }
9262
+
8833
9263
  .icon-facebook.scale--2x {
8834
9264
  --icon-base-size: 32px
8835
9265
  ; }
@@ -8866,6 +9296,9 @@ doc-react-playground {
8866
9296
  .icon-linked-in.color--light {
8867
9297
  color: var(--color-text-lighter) !important; }
8868
9298
 
9299
+ .icon-linked-in.color--white {
9300
+ color: #e2e5e9 !important; }
9301
+
8869
9302
  .icon-linked-in.scale--2x {
8870
9303
  --icon-base-size: 32px
8871
9304
  ; }
@@ -8902,6 +9335,9 @@ doc-react-playground {
8902
9335
  .icon-twitter-circle.color--light {
8903
9336
  color: var(--color-text-lighter) !important; }
8904
9337
 
9338
+ .icon-twitter-circle.color--white {
9339
+ color: #e2e5e9 !important; }
9340
+
8905
9341
  .icon-twitter-circle.scale--2x {
8906
9342
  --icon-base-size: 32px
8907
9343
  ; }
@@ -8938,6 +9374,9 @@ doc-react-playground {
8938
9374
  .icon-facebook-circle.color--light {
8939
9375
  color: var(--color-text-lighter) !important; }
8940
9376
 
9377
+ .icon-facebook-circle.color--white {
9378
+ color: #e2e5e9 !important; }
9379
+
8941
9380
  .icon-facebook-circle.scale--2x {
8942
9381
  --icon-base-size: 32px
8943
9382
  ; }
@@ -8974,6 +9413,9 @@ doc-react-playground {
8974
9413
  .icon-linked-in-circle.color--light {
8975
9414
  color: var(--color-text-lighter) !important; }
8976
9415
 
9416
+ .icon-linked-in-circle.color--white {
9417
+ color: #e2e5e9 !important; }
9418
+
8977
9419
  .icon-linked-in-circle.scale--2x {
8978
9420
  --icon-base-size: 32px
8979
9421
  ; }
@@ -9010,6 +9452,9 @@ doc-react-playground {
9010
9452
  .icon-recurring.color--light {
9011
9453
  color: var(--color-text-lighter) !important; }
9012
9454
 
9455
+ .icon-recurring.color--white {
9456
+ color: #e2e5e9 !important; }
9457
+
9013
9458
  .icon-recurring.scale--2x {
9014
9459
  --icon-base-size: 32px
9015
9460
  ; }
@@ -9046,6 +9491,9 @@ doc-react-playground {
9046
9491
  .icon-paragraph.color--light {
9047
9492
  color: var(--color-text-lighter) !important; }
9048
9493
 
9494
+ .icon-paragraph.color--white {
9495
+ color: #e2e5e9 !important; }
9496
+
9049
9497
  .icon-paragraph.scale--2x {
9050
9498
  --icon-base-size: 32px
9051
9499
  ; }
@@ -9082,6 +9530,9 @@ doc-react-playground {
9082
9530
  .icon-suggestion.color--light {
9083
9531
  color: var(--color-text-lighter) !important; }
9084
9532
 
9533
+ .icon-suggestion.color--white {
9534
+ color: #e2e5e9 !important; }
9535
+
9085
9536
  .icon-suggestion.scale--2x {
9086
9537
  --icon-base-size: 32px
9087
9538
  ; }
@@ -9118,6 +9569,9 @@ doc-react-playground {
9118
9569
  .icon-event.color--light {
9119
9570
  color: var(--color-text-lighter) !important; }
9120
9571
 
9572
+ .icon-event.color--white {
9573
+ color: #e2e5e9 !important; }
9574
+
9121
9575
  .icon-event.scale--2x {
9122
9576
  --icon-base-size: 32px
9123
9577
  ; }
@@ -9154,6 +9608,9 @@ doc-react-playground {
9154
9608
  .icon-kanban-view.color--light {
9155
9609
  color: var(--color-text-lighter) !important; }
9156
9610
 
9611
+ .icon-kanban-view.color--white {
9612
+ color: #e2e5e9 !important; }
9613
+
9157
9614
  .icon-kanban-view.scale--2x {
9158
9615
  --icon-base-size: 32px
9159
9616
  ; }
@@ -9190,6 +9647,9 @@ doc-react-playground {
9190
9647
  .icon-subscript.color--light {
9191
9648
  color: var(--color-text-lighter) !important; }
9192
9649
 
9650
+ .icon-subscript.color--white {
9651
+ color: #e2e5e9 !important; }
9652
+
9193
9653
  .icon-subscript.scale--2x {
9194
9654
  --icon-base-size: 32px
9195
9655
  ; }
@@ -9226,6 +9686,9 @@ doc-react-playground {
9226
9686
  .icon-superscript.color--light {
9227
9687
  color: var(--color-text-lighter) !important; }
9228
9688
 
9689
+ .icon-superscript.color--white {
9690
+ color: #e2e5e9 !important; }
9691
+
9229
9692
  .icon-superscript.scale--2x {
9230
9693
  --icon-base-size: 32px
9231
9694
  ; }
@@ -9262,6 +9725,9 @@ doc-react-playground {
9262
9725
  .icon-clear-format.color--light {
9263
9726
  color: var(--color-text-lighter) !important; }
9264
9727
 
9728
+ .icon-clear-format.color--white {
9729
+ color: #e2e5e9 !important; }
9730
+
9265
9731
  .icon-clear-format.scale--2x {
9266
9732
  --icon-base-size: 32px
9267
9733
  ; }
@@ -9298,6 +9764,9 @@ doc-react-playground {
9298
9764
  .icon-preformatted.color--light {
9299
9765
  color: var(--color-text-lighter) !important; }
9300
9766
 
9767
+ .icon-preformatted.color--white {
9768
+ color: #e2e5e9 !important; }
9769
+
9301
9770
  .icon-preformatted.scale--2x {
9302
9771
  --icon-base-size: 32px
9303
9772
  ; }
@@ -9334,6 +9803,9 @@ doc-react-playground {
9334
9803
  .icon-crop.color--light {
9335
9804
  color: var(--color-text-lighter) !important; }
9336
9805
 
9806
+ .icon-crop.color--white {
9807
+ color: #e2e5e9 !important; }
9808
+
9337
9809
  .icon-crop.scale--2x {
9338
9810
  --icon-base-size: 32px
9339
9811
  ; }
@@ -9370,6 +9842,9 @@ doc-react-playground {
9370
9842
  .icon-flip-horizontal.color--light {
9371
9843
  color: var(--color-text-lighter) !important; }
9372
9844
 
9845
+ .icon-flip-horizontal.color--white {
9846
+ color: #e2e5e9 !important; }
9847
+
9373
9848
  .icon-flip-horizontal.scale--2x {
9374
9849
  --icon-base-size: 32px
9375
9850
  ; }
@@ -9406,6 +9881,9 @@ doc-react-playground {
9406
9881
  .icon-flip-vertical.color--light {
9407
9882
  color: var(--color-text-lighter) !important; }
9408
9883
 
9884
+ .icon-flip-vertical.color--white {
9885
+ color: #e2e5e9 !important; }
9886
+
9409
9887
  .icon-flip-vertical.scale--2x {
9410
9888
  --icon-base-size: 32px
9411
9889
  ; }
@@ -9442,6 +9920,9 @@ doc-react-playground {
9442
9920
  .icon-rotate-right.color--light {
9443
9921
  color: var(--color-text-lighter) !important; }
9444
9922
 
9923
+ .icon-rotate-right.color--white {
9924
+ color: #e2e5e9 !important; }
9925
+
9445
9926
  .icon-rotate-right.scale--2x {
9446
9927
  --icon-base-size: 32px
9447
9928
  ; }
@@ -9478,6 +9959,9 @@ doc-react-playground {
9478
9959
  .icon-rotate-left.color--light {
9479
9960
  color: var(--color-text-lighter) !important; }
9480
9961
 
9962
+ .icon-rotate-left.color--white {
9963
+ color: #e2e5e9 !important; }
9964
+
9481
9965
  .icon-rotate-left.scale--2x {
9482
9966
  --icon-base-size: 32px
9483
9967
  ; }
@@ -9514,6 +9998,9 @@ doc-react-playground {
9514
9998
  .icon-business.color--light {
9515
9999
  color: var(--color-text-lighter) !important; }
9516
10000
 
10001
+ .icon-business.color--white {
10002
+ color: #e2e5e9 !important; }
10003
+
9517
10004
  .icon-business.scale--2x {
9518
10005
  --icon-base-size: 32px
9519
10006
  ; }
@@ -9550,6 +10037,9 @@ doc-react-playground {
9550
10037
  .icon-paywall.color--light {
9551
10038
  color: var(--color-text-lighter) !important; }
9552
10039
 
10040
+ .icon-paywall.color--white {
10041
+ color: #e2e5e9 !important; }
10042
+
9553
10043
  .icon-paywall.scale--2x {
9554
10044
  --icon-base-size: 32px
9555
10045
  ; }
@@ -9586,6 +10076,9 @@ doc-react-playground {
9586
10076
  .icon-analytics.color--light {
9587
10077
  color: var(--color-text-lighter) !important; }
9588
10078
 
10079
+ .icon-analytics.color--white {
10080
+ color: #e2e5e9 !important; }
10081
+
9589
10082
  .icon-analytics.scale--2x {
9590
10083
  --icon-base-size: 32px
9591
10084
  ; }
@@ -9622,6 +10115,9 @@ doc-react-playground {
9622
10115
  .icon-amp.color--light {
9623
10116
  color: var(--color-text-lighter) !important; }
9624
10117
 
10118
+ .icon-amp.color--white {
10119
+ color: #e2e5e9 !important; }
10120
+
9625
10121
  .icon-amp.scale--2x {
9626
10122
  --icon-base-size: 32px
9627
10123
  ; }
@@ -9658,6 +10154,9 @@ doc-react-playground {
9658
10154
  .icon-undo.color--light {
9659
10155
  color: var(--color-text-lighter) !important; }
9660
10156
 
10157
+ .icon-undo.color--white {
10158
+ color: #e2e5e9 !important; }
10159
+
9661
10160
  .icon-undo.scale--2x {
9662
10161
  --icon-base-size: 32px
9663
10162
  ; }
@@ -9694,6 +10193,9 @@ doc-react-playground {
9694
10193
  .icon-redo.color--light {
9695
10194
  color: var(--color-text-lighter) !important; }
9696
10195
 
10196
+ .icon-redo.color--white {
10197
+ color: #e2e5e9 !important; }
10198
+
9697
10199
  .icon-redo.scale--2x {
9698
10200
  --icon-base-size: 32px
9699
10201
  ; }
@@ -9730,6 +10232,9 @@ doc-react-playground {
9730
10232
  .icon-instagram.color--light {
9731
10233
  color: var(--color-text-lighter) !important; }
9732
10234
 
10235
+ .icon-instagram.color--white {
10236
+ color: #e2e5e9 !important; }
10237
+
9733
10238
  .icon-instagram.scale--2x {
9734
10239
  --icon-base-size: 32px
9735
10240
  ; }
@@ -9766,6 +10271,9 @@ doc-react-playground {
9766
10271
  .icon-play.color--light {
9767
10272
  color: var(--color-text-lighter) !important; }
9768
10273
 
10274
+ .icon-play.color--white {
10275
+ color: #e2e5e9 !important; }
10276
+
9769
10277
  .icon-play.scale--2x {
9770
10278
  --icon-base-size: 32px
9771
10279
  ; }
@@ -9802,6 +10310,9 @@ doc-react-playground {
9802
10310
  .icon-stop.color--light {
9803
10311
  color: var(--color-text-lighter) !important; }
9804
10312
 
10313
+ .icon-stop.color--white {
10314
+ color: #e2e5e9 !important; }
10315
+
9805
10316
  .icon-stop.scale--2x {
9806
10317
  --icon-base-size: 32px
9807
10318
  ; }
@@ -9838,6 +10349,9 @@ doc-react-playground {
9838
10349
  .icon-pause.color--light {
9839
10350
  color: var(--color-text-lighter) !important; }
9840
10351
 
10352
+ .icon-pause.color--white {
10353
+ color: #e2e5e9 !important; }
10354
+
9841
10355
  .icon-pause.scale--2x {
9842
10356
  --icon-base-size: 32px
9843
10357
  ; }
@@ -9874,6 +10388,9 @@ doc-react-playground {
9874
10388
  .icon-fast_rewind.color--light {
9875
10389
  color: var(--color-text-lighter) !important; }
9876
10390
 
10391
+ .icon-fast_rewind.color--white {
10392
+ color: #e2e5e9 !important; }
10393
+
9877
10394
  .icon-fast_rewind.scale--2x {
9878
10395
  --icon-base-size: 32px
9879
10396
  ; }
@@ -9910,6 +10427,9 @@ doc-react-playground {
9910
10427
  .icon-fast_forward.color--light {
9911
10428
  color: var(--color-text-lighter) !important; }
9912
10429
 
10430
+ .icon-fast_forward.color--white {
10431
+ color: #e2e5e9 !important; }
10432
+
9913
10433
  .icon-fast_forward.scale--2x {
9914
10434
  --icon-base-size: 32px
9915
10435
  ; }
@@ -9946,6 +10466,9 @@ doc-react-playground {
9946
10466
  .icon-skip_previous.color--light {
9947
10467
  color: var(--color-text-lighter) !important; }
9948
10468
 
10469
+ .icon-skip_previous.color--white {
10470
+ color: #e2e5e9 !important; }
10471
+
9949
10472
  .icon-skip_previous.scale--2x {
9950
10473
  --icon-base-size: 32px
9951
10474
  ; }
@@ -9982,6 +10505,9 @@ doc-react-playground {
9982
10505
  .icon-skip_next.color--light {
9983
10506
  color: var(--color-text-lighter) !important; }
9984
10507
 
10508
+ .icon-skip_next.color--white {
10509
+ color: #e2e5e9 !important; }
10510
+
9985
10511
  .icon-skip_next.scale--2x {
9986
10512
  --icon-base-size: 32px
9987
10513
  ; }
@@ -10018,6 +10544,9 @@ doc-react-playground {
10018
10544
  .icon-add-image.color--light {
10019
10545
  color: var(--color-text-lighter) !important; }
10020
10546
 
10547
+ .icon-add-image.color--white {
10548
+ color: #e2e5e9 !important; }
10549
+
10021
10550
  .icon-add-image.scale--2x {
10022
10551
  --icon-base-size: 32px
10023
10552
  ; }
@@ -10054,6 +10583,9 @@ doc-react-playground {
10054
10583
  .icon-add-gallery.color--light {
10055
10584
  color: var(--color-text-lighter) !important; }
10056
10585
 
10586
+ .icon-add-gallery.color--white {
10587
+ color: #e2e5e9 !important; }
10588
+
10057
10589
  .icon-add-gallery.scale--2x {
10058
10590
  --icon-base-size: 32px
10059
10591
  ; }
@@ -10090,6 +10622,9 @@ doc-react-playground {
10090
10622
  .icon-text-format.color--light {
10091
10623
  color: var(--color-text-lighter) !important; }
10092
10624
 
10625
+ .icon-text-format.color--white {
10626
+ color: #e2e5e9 !important; }
10627
+
10093
10628
  .icon-text-format.scale--2x {
10094
10629
  --icon-base-size: 32px
10095
10630
  ; }
@@ -10126,6 +10661,9 @@ doc-react-playground {
10126
10661
  .icon-to-uppercase.color--light {
10127
10662
  color: var(--color-text-lighter) !important; }
10128
10663
 
10664
+ .icon-to-uppercase.color--white {
10665
+ color: #e2e5e9 !important; }
10666
+
10129
10667
  .icon-to-uppercase.scale--2x {
10130
10668
  --icon-base-size: 32px
10131
10669
  ; }
@@ -10162,6 +10700,9 @@ doc-react-playground {
10162
10700
  .icon-to-lowercase.color--light {
10163
10701
  color: var(--color-text-lighter) !important; }
10164
10702
 
10703
+ .icon-to-lowercase.color--white {
10704
+ color: #e2e5e9 !important; }
10705
+
10165
10706
  .icon-to-lowercase.scale--2x {
10166
10707
  --icon-base-size: 32px
10167
10708
  ; }
@@ -10198,6 +10739,9 @@ doc-react-playground {
10198
10739
  .icon-arrow-small.color--light {
10199
10740
  color: var(--color-text-lighter) !important; }
10200
10741
 
10742
+ .icon-arrow-small.color--white {
10743
+ color: #e2e5e9 !important; }
10744
+
10201
10745
  .icon-arrow-small.scale--2x {
10202
10746
  --icon-base-size: 32px
10203
10747
  ; }
@@ -10234,6 +10778,9 @@ doc-react-playground {
10234
10778
  .icon-clear-all.color--light {
10235
10779
  color: var(--color-text-lighter) !important; }
10236
10780
 
10781
+ .icon-clear-all.color--white {
10782
+ color: #e2e5e9 !important; }
10783
+
10237
10784
  .icon-clear-all.scale--2x {
10238
10785
  --icon-base-size: 32px
10239
10786
  ; }
@@ -10270,6 +10817,9 @@ doc-react-playground {
10270
10817
  .icon-rundown.color--light {
10271
10818
  color: var(--color-text-lighter) !important; }
10272
10819
 
10820
+ .icon-rundown.color--white {
10821
+ color: #e2e5e9 !important; }
10822
+
10273
10823
  .icon-rundown.scale--2x {
10274
10824
  --icon-base-size: 32px
10275
10825
  ; }
@@ -12689,6 +13239,8 @@ doc-react-playground {
12689
13239
  color: var(--sd-colour-highlight) !important; }
12690
13240
  .big-icon--dashboard.color--light {
12691
13241
  color: var(--color-text-lighter) !important; }
13242
+ .big-icon--dashboard.color--white {
13243
+ color: #e2e5e9 !important; }
12692
13244
  .big-icon--dashboard.scale--2x {
12693
13245
  --big-icon-size: 52px
12694
13246
  ; }
@@ -12718,6 +13270,8 @@ doc-react-playground {
12718
13270
  color: var(--sd-colour-highlight) !important; }
12719
13271
  .big-icon--view.color--light {
12720
13272
  color: var(--color-text-lighter) !important; }
13273
+ .big-icon--view.color--white {
13274
+ color: #e2e5e9 !important; }
12721
13275
  .big-icon--view.scale--2x {
12722
13276
  --big-icon-size: 52px
12723
13277
  ; }
@@ -12747,6 +13301,8 @@ doc-react-playground {
12747
13301
  color: var(--sd-colour-highlight) !important; }
12748
13302
  .big-icon--tasks.color--light {
12749
13303
  color: var(--color-text-lighter) !important; }
13304
+ .big-icon--tasks.color--white {
13305
+ color: #e2e5e9 !important; }
12750
13306
  .big-icon--tasks.scale--2x {
12751
13307
  --big-icon-size: 52px
12752
13308
  ; }
@@ -12776,6 +13332,8 @@ doc-react-playground {
12776
13332
  color: var(--sd-colour-highlight) !important; }
12777
13333
  .big-icon--calendar.color--light {
12778
13334
  color: var(--color-text-lighter) !important; }
13335
+ .big-icon--calendar.color--white {
13336
+ color: #e2e5e9 !important; }
12779
13337
  .big-icon--calendar.scale--2x {
12780
13338
  --big-icon-size: 52px
12781
13339
  ; }
@@ -12805,6 +13363,8 @@ doc-react-playground {
12805
13363
  color: var(--sd-colour-highlight) !important; }
12806
13364
  .big-icon--marked-star.color--light {
12807
13365
  color: var(--color-text-lighter) !important; }
13366
+ .big-icon--marked-star.color--white {
13367
+ color: #e2e5e9 !important; }
12808
13368
  .big-icon--marked-star.scale--2x {
12809
13369
  --big-icon-size: 52px
12810
13370
  ; }
@@ -12834,6 +13394,8 @@ doc-react-playground {
12834
13394
  color: var(--sd-colour-highlight) !important; }
12835
13395
  .big-icon--archive.color--light {
12836
13396
  color: var(--color-text-lighter) !important; }
13397
+ .big-icon--archive.color--white {
13398
+ color: #e2e5e9 !important; }
12837
13399
  .big-icon--archive.scale--2x {
12838
13400
  --big-icon-size: 52px
12839
13401
  ; }
@@ -12863,6 +13425,8 @@ doc-react-playground {
12863
13425
  color: var(--sd-colour-highlight) !important; }
12864
13426
  .big-icon--spike.color--light {
12865
13427
  color: var(--color-text-lighter) !important; }
13428
+ .big-icon--spike.color--white {
13429
+ color: #e2e5e9 !important; }
12866
13430
  .big-icon--spike.scale--2x {
12867
13431
  --big-icon-size: 52px
12868
13432
  ; }
@@ -12892,6 +13456,8 @@ doc-react-playground {
12892
13456
  color: var(--sd-colour-highlight) !important; }
12893
13457
  .big-icon--unspike.color--light {
12894
13458
  color: var(--color-text-lighter) !important; }
13459
+ .big-icon--unspike.color--white {
13460
+ color: #e2e5e9 !important; }
12895
13461
  .big-icon--unspike.scale--2x {
12896
13462
  --big-icon-size: 52px
12897
13463
  ; }
@@ -12921,6 +13487,8 @@ doc-react-playground {
12921
13487
  color: var(--sd-colour-highlight) !important; }
12922
13488
  .big-icon--personal.color--light {
12923
13489
  color: var(--color-text-lighter) !important; }
13490
+ .big-icon--personal.color--white {
13491
+ color: #e2e5e9 !important; }
12924
13492
  .big-icon--personal.scale--2x {
12925
13493
  --big-icon-size: 52px
12926
13494
  ; }
@@ -12950,6 +13518,8 @@ doc-react-playground {
12950
13518
  color: var(--sd-colour-highlight) !important; }
12951
13519
  .big-icon--global-search.color--light {
12952
13520
  color: var(--color-text-lighter) !important; }
13521
+ .big-icon--global-search.color--white {
13522
+ color: #e2e5e9 !important; }
12953
13523
  .big-icon--global-search.scale--2x {
12954
13524
  --big-icon-size: 52px
12955
13525
  ; }
@@ -12979,6 +13549,8 @@ doc-react-playground {
12979
13549
  color: var(--sd-colour-highlight) !important; }
12980
13550
  .big-icon--analytics.color--light {
12981
13551
  color: var(--color-text-lighter) !important; }
13552
+ .big-icon--analytics.color--white {
13553
+ color: #e2e5e9 !important; }
12982
13554
  .big-icon--analytics.scale--2x {
12983
13555
  --big-icon-size: 52px
12984
13556
  ; }
@@ -13008,6 +13580,8 @@ doc-react-playground {
13008
13580
  color: var(--sd-colour-highlight) !important; }
13009
13581
  .big-icon--web.color--light {
13010
13582
  color: var(--color-text-lighter) !important; }
13583
+ .big-icon--web.color--white {
13584
+ color: #e2e5e9 !important; }
13011
13585
  .big-icon--web.scale--2x {
13012
13586
  --big-icon-size: 52px
13013
13587
  ; }
@@ -13037,6 +13611,8 @@ doc-react-playground {
13037
13611
  color: var(--sd-colour-highlight) !important; }
13038
13612
  .big-icon--cog.color--light {
13039
13613
  color: var(--color-text-lighter) !important; }
13614
+ .big-icon--cog.color--white {
13615
+ color: #e2e5e9 !important; }
13040
13616
  .big-icon--cog.scale--2x {
13041
13617
  --big-icon-size: 52px
13042
13618
  ; }
@@ -13066,6 +13642,8 @@ doc-react-playground {
13066
13642
  color: var(--sd-colour-highlight) !important; }
13067
13643
  .big-icon--send-to.color--light {
13068
13644
  color: var(--color-text-lighter) !important; }
13645
+ .big-icon--send-to.color--white {
13646
+ color: #e2e5e9 !important; }
13069
13647
  .big-icon--send-to.scale--2x {
13070
13648
  --big-icon-size: 52px
13071
13649
  ; }
@@ -13095,6 +13673,8 @@ doc-react-playground {
13095
13673
  color: var(--sd-colour-highlight) !important; }
13096
13674
  .big-icon--info.color--light {
13097
13675
  color: var(--color-text-lighter) !important; }
13676
+ .big-icon--info.color--white {
13677
+ color: #e2e5e9 !important; }
13098
13678
  .big-icon--info.scale--2x {
13099
13679
  --big-icon-size: 52px
13100
13680
  ; }
@@ -13124,6 +13704,8 @@ doc-react-playground {
13124
13704
  color: var(--sd-colour-highlight) !important; }
13125
13705
  .big-icon--find-replace.color--light {
13126
13706
  color: var(--color-text-lighter) !important; }
13707
+ .big-icon--find-replace.color--white {
13708
+ color: #e2e5e9 !important; }
13127
13709
  .big-icon--find-replace.scale--2x {
13128
13710
  --big-icon-size: 52px
13129
13711
  ; }
@@ -13153,6 +13735,8 @@ doc-react-playground {
13153
13735
  color: var(--sd-colour-highlight) !important; }
13154
13736
  .big-icon--comments.color--light {
13155
13737
  color: var(--color-text-lighter) !important; }
13738
+ .big-icon--comments.color--white {
13739
+ color: #e2e5e9 !important; }
13156
13740
  .big-icon--comments.scale--2x {
13157
13741
  --big-icon-size: 52px
13158
13742
  ; }
@@ -13182,6 +13766,8 @@ doc-react-playground {
13182
13766
  color: var(--sd-colour-highlight) !important; }
13183
13767
  .big-icon--history.color--light {
13184
13768
  color: var(--color-text-lighter) !important; }
13769
+ .big-icon--history.color--white {
13770
+ color: #e2e5e9 !important; }
13185
13771
  .big-icon--history.scale--2x {
13186
13772
  --big-icon-size: 52px
13187
13773
  ; }
@@ -13211,6 +13797,8 @@ doc-react-playground {
13211
13797
  color: var(--sd-colour-highlight) !important; }
13212
13798
  .big-icon--package.color--light {
13213
13799
  color: var(--color-text-lighter) !important; }
13800
+ .big-icon--package.color--white {
13801
+ color: #e2e5e9 !important; }
13214
13802
  .big-icon--package.scale--2x {
13215
13803
  --big-icon-size: 52px
13216
13804
  ; }
@@ -13240,6 +13828,8 @@ doc-react-playground {
13240
13828
  color: var(--sd-colour-highlight) !important; }
13241
13829
  .big-icon--create-package.color--light {
13242
13830
  color: var(--color-text-lighter) !important; }
13831
+ .big-icon--create-package.color--white {
13832
+ color: #e2e5e9 !important; }
13243
13833
  .big-icon--create-package.scale--2x {
13244
13834
  --big-icon-size: 52px
13245
13835
  ; }
@@ -13269,6 +13859,8 @@ doc-react-playground {
13269
13859
  color: var(--sd-colour-highlight) !important; }
13270
13860
  .big-icon--add-to-package.color--light {
13271
13861
  color: var(--color-text-lighter) !important; }
13862
+ .big-icon--add-to-package.color--white {
13863
+ color: #e2e5e9 !important; }
13272
13864
  .big-icon--add-to-package.scale--2x {
13273
13865
  --big-icon-size: 52px
13274
13866
  ; }
@@ -13298,6 +13890,8 @@ doc-react-playground {
13298
13890
  color: var(--sd-colour-highlight) !important; }
13299
13891
  .big-icon--fetch.color--light {
13300
13892
  color: var(--color-text-lighter) !important; }
13893
+ .big-icon--fetch.color--white {
13894
+ color: #e2e5e9 !important; }
13301
13895
  .big-icon--fetch.scale--2x {
13302
13896
  --big-icon-size: 52px
13303
13897
  ; }
@@ -13327,6 +13921,8 @@ doc-react-playground {
13327
13921
  color: var(--sd-colour-highlight) !important; }
13328
13922
  .big-icon--fetch-as.color--light {
13329
13923
  color: var(--color-text-lighter) !important; }
13924
+ .big-icon--fetch-as.color--white {
13925
+ color: #e2e5e9 !important; }
13330
13926
  .big-icon--fetch-as.scale--2x {
13331
13927
  --big-icon-size: 52px
13332
13928
  ; }
@@ -13356,6 +13952,8 @@ doc-react-playground {
13356
13952
  color: var(--sd-colour-highlight) !important; }
13357
13953
  .big-icon--macro.color--light {
13358
13954
  color: var(--color-text-lighter) !important; }
13955
+ .big-icon--macro.color--white {
13956
+ color: #e2e5e9 !important; }
13359
13957
  .big-icon--macro.scale--2x {
13360
13958
  --big-icon-size: 52px
13361
13959
  ; }
@@ -13385,6 +13983,8 @@ doc-react-playground {
13385
13983
  color: var(--sd-colour-highlight) !important; }
13386
13984
  .big-icon--related.color--light {
13387
13985
  color: var(--color-text-lighter) !important; }
13986
+ .big-icon--related.color--white {
13987
+ color: #e2e5e9 !important; }
13388
13988
  .big-icon--related.scale--2x {
13389
13989
  --big-icon-size: 52px
13390
13990
  ; }
@@ -13414,6 +14014,8 @@ doc-react-playground {
13414
14014
  color: var(--sd-colour-highlight) !important; }
13415
14015
  .big-icon--minimize.color--light {
13416
14016
  color: var(--color-text-lighter) !important; }
14017
+ .big-icon--minimize.color--white {
14018
+ color: #e2e5e9 !important; }
13417
14019
  .big-icon--minimize.scale--2x {
13418
14020
  --big-icon-size: 52px
13419
14021
  ; }
@@ -13443,6 +14045,8 @@ doc-react-playground {
13443
14045
  color: var(--sd-colour-highlight) !important; }
13444
14046
  .big-icon--settings.color--light {
13445
14047
  color: var(--color-text-lighter) !important; }
14048
+ .big-icon--settings.color--white {
14049
+ color: #e2e5e9 !important; }
13446
14050
  .big-icon--settings.scale--2x {
13447
14051
  --big-icon-size: 52px
13448
14052
  ; }
@@ -13472,6 +14076,8 @@ doc-react-playground {
13472
14076
  color: var(--sd-colour-highlight) !important; }
13473
14077
  .big-icon--multiedit.color--light {
13474
14078
  color: var(--color-text-lighter) !important; }
14079
+ .big-icon--multiedit.color--white {
14080
+ color: #e2e5e9 !important; }
13475
14081
  .big-icon--multiedit.scale--2x {
13476
14082
  --big-icon-size: 52px
13477
14083
  ; }
@@ -13501,6 +14107,8 @@ doc-react-playground {
13501
14107
  color: var(--sd-colour-highlight) !important; }
13502
14108
  .big-icon--export.color--light {
13503
14109
  color: var(--color-text-lighter) !important; }
14110
+ .big-icon--export.color--white {
14111
+ color: #e2e5e9 !important; }
13504
14112
  .big-icon--export.scale--2x {
13505
14113
  --big-icon-size: 52px
13506
14114
  ; }
@@ -13530,6 +14138,8 @@ doc-react-playground {
13530
14138
  color: var(--sd-colour-highlight) !important; }
13531
14139
  .big-icon--create-list.color--light {
13532
14140
  color: var(--color-text-lighter) !important; }
14141
+ .big-icon--create-list.color--white {
14142
+ color: #e2e5e9 !important; }
13533
14143
  .big-icon--create-list.scale--2x {
13534
14144
  --big-icon-size: 52px
13535
14145
  ; }
@@ -13559,6 +14169,8 @@ doc-react-playground {
13559
14169
  color: var(--sd-colour-highlight) !important; }
13560
14170
  .big-icon--add-to-list.color--light {
13561
14171
  color: var(--color-text-lighter) !important; }
14172
+ .big-icon--add-to-list.color--white {
14173
+ color: #e2e5e9 !important; }
13562
14174
  .big-icon--add-to-list.scale--2x {
13563
14175
  --big-icon-size: 52px
13564
14176
  ; }
@@ -13588,6 +14200,8 @@ doc-react-playground {
13588
14200
  color: var(--sd-colour-highlight) !important; }
13589
14201
  .big-icon--text.color--light {
13590
14202
  color: var(--color-text-lighter) !important; }
14203
+ .big-icon--text.color--white {
14204
+ color: #e2e5e9 !important; }
13591
14205
  .big-icon--text.scale--2x {
13592
14206
  --big-icon-size: 52px
13593
14207
  ; }
@@ -13617,6 +14231,8 @@ doc-react-playground {
13617
14231
  color: var(--sd-colour-highlight) !important; }
13618
14232
  .big-icon--desk.color--light {
13619
14233
  color: var(--color-text-lighter) !important; }
14234
+ .big-icon--desk.color--white {
14235
+ color: #e2e5e9 !important; }
13620
14236
  .big-icon--desk.scale--2x {
13621
14237
  --big-icon-size: 52px
13622
14238
  ; }
@@ -13646,6 +14262,8 @@ doc-react-playground {
13646
14262
  color: var(--sd-colour-highlight) !important; }
13647
14263
  .big-icon--chevron-left.color--light {
13648
14264
  color: var(--color-text-lighter) !important; }
14265
+ .big-icon--chevron-left.color--white {
14266
+ color: #e2e5e9 !important; }
13649
14267
  .big-icon--chevron-left.scale--2x {
13650
14268
  --big-icon-size: 52px
13651
14269
  ; }
@@ -13675,6 +14293,8 @@ doc-react-playground {
13675
14293
  color: var(--sd-colour-highlight) !important; }
13676
14294
  .big-icon--chevron-right.color--light {
13677
14295
  color: var(--color-text-lighter) !important; }
14296
+ .big-icon--chevron-right.color--white {
14297
+ color: #e2e5e9 !important; }
13678
14298
  .big-icon--chevron-right.scale--2x {
13679
14299
  --big-icon-size: 52px
13680
14300
  ; }
@@ -13704,6 +14324,8 @@ doc-react-playground {
13704
14324
  color: var(--sd-colour-highlight) !important; }
13705
14325
  .big-icon--dashboard-alt.color--light {
13706
14326
  color: var(--color-text-lighter) !important; }
14327
+ .big-icon--dashboard-alt.color--white {
14328
+ color: #e2e5e9 !important; }
13707
14329
  .big-icon--dashboard-alt.scale--2x {
13708
14330
  --big-icon-size: 52px
13709
14331
  ; }
@@ -13733,6 +14355,8 @@ doc-react-playground {
13733
14355
  color: var(--sd-colour-highlight) !important; }
13734
14356
  .big-icon--master.color--light {
13735
14357
  color: var(--color-text-lighter) !important; }
14358
+ .big-icon--master.color--white {
14359
+ color: #e2e5e9 !important; }
13736
14360
  .big-icon--master.scale--2x {
13737
14361
  --big-icon-size: 52px
13738
14362
  ; }
@@ -13762,6 +14386,8 @@ doc-react-playground {
13762
14386
  color: var(--sd-colour-highlight) !important; }
13763
14387
  .big-icon--attachment.color--light {
13764
14388
  color: var(--color-text-lighter) !important; }
14389
+ .big-icon--attachment.color--white {
14390
+ color: #e2e5e9 !important; }
13765
14391
  .big-icon--attachment.scale--2x {
13766
14392
  --big-icon-size: 52px
13767
14393
  ; }
@@ -13791,6 +14417,8 @@ doc-react-playground {
13791
14417
  color: var(--sd-colour-highlight) !important; }
13792
14418
  .big-icon--upload-alt.color--light {
13793
14419
  color: var(--color-text-lighter) !important; }
14420
+ .big-icon--upload-alt.color--white {
14421
+ color: #e2e5e9 !important; }
13794
14422
  .big-icon--upload-alt.scale--2x {
13795
14423
  --big-icon-size: 52px
13796
14424
  ; }
@@ -13820,6 +14448,8 @@ doc-react-playground {
13820
14448
  color: var(--sd-colour-highlight) !important; }
13821
14449
  .big-icon--document-default.color--light {
13822
14450
  color: var(--color-text-lighter) !important; }
14451
+ .big-icon--document-default.color--white {
14452
+ color: #e2e5e9 !important; }
13823
14453
  .big-icon--document-default.scale--2x {
13824
14454
  --big-icon-size: 52px
13825
14455
  ; }
@@ -13849,6 +14479,8 @@ doc-react-playground {
13849
14479
  color: var(--sd-colour-highlight) !important; }
13850
14480
  .big-icon--document-pdf.color--light {
13851
14481
  color: var(--color-text-lighter) !important; }
14482
+ .big-icon--document-pdf.color--white {
14483
+ color: #e2e5e9 !important; }
13852
14484
  .big-icon--document-pdf.scale--2x {
13853
14485
  --big-icon-size: 52px
13854
14486
  ; }
@@ -13878,6 +14510,8 @@ doc-react-playground {
13878
14510
  color: var(--sd-colour-highlight) !important; }
13879
14511
  .big-icon--document-doc.color--light {
13880
14512
  color: var(--color-text-lighter) !important; }
14513
+ .big-icon--document-doc.color--white {
14514
+ color: #e2e5e9 !important; }
13881
14515
  .big-icon--document-doc.scale--2x {
13882
14516
  --big-icon-size: 52px
13883
14517
  ; }
@@ -13907,6 +14541,8 @@ doc-react-playground {
13907
14541
  color: var(--sd-colour-highlight) !important; }
13908
14542
  .big-icon--semantics.color--light {
13909
14543
  color: var(--color-text-lighter) !important; }
14544
+ .big-icon--semantics.color--white {
14545
+ color: #e2e5e9 !important; }
13910
14546
  .big-icon--semantics.scale--2x {
13911
14547
  --big-icon-size: 52px
13912
14548
  ; }
@@ -13936,6 +14572,8 @@ doc-react-playground {
13936
14572
  color: var(--sd-colour-highlight) !important; }
13937
14573
  .big-icon--picture.color--light {
13938
14574
  color: var(--color-text-lighter) !important; }
14575
+ .big-icon--picture.color--white {
14576
+ color: #e2e5e9 !important; }
13939
14577
  .big-icon--picture.scale--2x {
13940
14578
  --big-icon-size: 52px
13941
14579
  ; }
@@ -13965,6 +14603,8 @@ doc-react-playground {
13965
14603
  color: var(--sd-colour-highlight) !important; }
13966
14604
  .big-icon--manage-package.color--light {
13967
14605
  color: var(--color-text-lighter) !important; }
14606
+ .big-icon--manage-package.color--white {
14607
+ color: #e2e5e9 !important; }
13968
14608
  .big-icon--manage-package.scale--2x {
13969
14609
  --big-icon-size: 52px
13970
14610
  ; }
@@ -13994,6 +14634,8 @@ doc-react-playground {
13994
14634
  color: var(--sd-colour-highlight) !important; }
13995
14635
  .big-icon--live.color--light {
13996
14636
  color: var(--color-text-lighter) !important; }
14637
+ .big-icon--live.color--white {
14638
+ color: #e2e5e9 !important; }
13997
14639
  .big-icon--live.scale--2x {
13998
14640
  --big-icon-size: 52px
13999
14641
  ; }
@@ -14023,6 +14665,8 @@ doc-react-playground {
14023
14665
  color: var(--sd-colour-highlight) !important; }
14024
14666
  .big-icon--live-alt.color--light {
14025
14667
  color: var(--color-text-lighter) !important; }
14668
+ .big-icon--live-alt.color--white {
14669
+ color: #e2e5e9 !important; }
14026
14670
  .big-icon--live-alt.scale--2x {
14027
14671
  --big-icon-size: 52px
14028
14672
  ; }
@@ -14052,6 +14696,8 @@ doc-react-playground {
14052
14696
  color: var(--sd-colour-highlight) !important; }
14053
14697
  .big-icon--meta-search.color--light {
14054
14698
  color: var(--color-text-lighter) !important; }
14699
+ .big-icon--meta-search.color--white {
14700
+ color: #e2e5e9 !important; }
14055
14701
  .big-icon--meta-search.scale--2x {
14056
14702
  --big-icon-size: 52px
14057
14703
  ; }
@@ -14081,6 +14727,8 @@ doc-react-playground {
14081
14727
  color: var(--sd-colour-highlight) !important; }
14082
14728
  .big-icon--chat.color--light {
14083
14729
  color: var(--color-text-lighter) !important; }
14730
+ .big-icon--chat.color--white {
14731
+ color: #e2e5e9 !important; }
14084
14732
  .big-icon--chat.scale--2x {
14085
14733
  --big-icon-size: 52px
14086
14734
  ; }
@@ -14110,6 +14758,8 @@ doc-react-playground {
14110
14758
  color: var(--sd-colour-highlight) !important; }
14111
14759
  .big-icon--annotation.color--light {
14112
14760
  color: var(--color-text-lighter) !important; }
14761
+ .big-icon--annotation.color--white {
14762
+ color: #e2e5e9 !important; }
14113
14763
  .big-icon--annotation.scale--2x {
14114
14764
  --big-icon-size: 52px
14115
14765
  ; }
@@ -14139,6 +14789,8 @@ doc-react-playground {
14139
14789
  color: var(--sd-colour-highlight) !important; }
14140
14790
  .big-icon--suggestion.color--light {
14141
14791
  color: var(--color-text-lighter) !important; }
14792
+ .big-icon--suggestion.color--white {
14793
+ color: #e2e5e9 !important; }
14142
14794
  .big-icon--suggestion.scale--2x {
14143
14795
  --big-icon-size: 52px
14144
14796
  ; }
@@ -14168,6 +14820,8 @@ doc-react-playground {
14168
14820
  color: var(--sd-colour-highlight) !important; }
14169
14821
  .big-icon--publisher.color--light {
14170
14822
  color: var(--color-text-lighter) !important; }
14823
+ .big-icon--publisher.color--white {
14824
+ color: #e2e5e9 !important; }
14171
14825
  .big-icon--publisher.scale--2x {
14172
14826
  --big-icon-size: 52px
14173
14827
  ; }
@@ -14197,6 +14851,8 @@ doc-react-playground {
14197
14851
  color: var(--sd-colour-highlight) !important; }
14198
14852
  .big-icon--tag.color--light {
14199
14853
  color: var(--color-text-lighter) !important; }
14854
+ .big-icon--tag.color--white {
14855
+ color: #e2e5e9 !important; }
14200
14856
  .big-icon--tag.scale--2x {
14201
14857
  --big-icon-size: 52px
14202
14858
  ; }
@@ -14226,6 +14882,8 @@ doc-react-playground {
14226
14882
  color: var(--sd-colour-highlight) !important; }
14227
14883
  .big-icon--rundown.color--light {
14228
14884
  color: var(--color-text-lighter) !important; }
14885
+ .big-icon--rundown.color--white {
14886
+ color: #e2e5e9 !important; }
14229
14887
  .big-icon--rundown.scale--2x {
14230
14888
  --big-icon-size: 52px
14231
14889
  ; }
@@ -14255,6 +14913,8 @@ doc-react-playground {
14255
14913
  color: var(--sd-colour-highlight) !important; }
14256
14914
  .big-icon--checkmark-circle.color--light {
14257
14915
  color: var(--color-text-lighter) !important; }
14916
+ .big-icon--checkmark-circle.color--white {
14917
+ color: #e2e5e9 !important; }
14258
14918
  .big-icon--checkmark-circle.scale--2x {
14259
14919
  --big-icon-size: 52px
14260
14920
  ; }