@cube-dev/ui-kit 0.98.9 → 0.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (672) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/es/_internal/hooks/index.js +10 -10
  3. package/es/_internal/hooks/use-chained-callback.js +2 -2
  4. package/es/_internal/hooks/use-debounced-value.js +1 -1
  5. package/es/_internal/hooks/use-deprecation-warning.js +2 -2
  6. package/es/_internal/hooks/use-effect-once.js +1 -1
  7. package/es/_internal/hooks/use-event.js +2 -2
  8. package/es/_internal/hooks/use-is-first-render.js +1 -1
  9. package/es/_internal/hooks/use-sync-ref.js +2 -2
  10. package/es/_internal/hooks/use-timer/index.js +3 -3
  11. package/es/_internal/hooks/use-timer/timer.js +1 -1
  12. package/es/_internal/hooks/use-timer/use-timer.js +3 -3
  13. package/es/_internal/hooks/use-update-effect.js +2 -2
  14. package/es/_internal/hooks/use-warn.js +3 -3
  15. package/es/_internal/index.js +2 -2
  16. package/es/components/Block.js +2 -2
  17. package/es/components/CollectionItem.js +3 -3
  18. package/es/components/GlobalStyles.js +56 -65
  19. package/es/components/GridProvider.js +4 -4
  20. package/es/components/HiddenInput.js +2 -2
  21. package/es/components/OpenTrasition.js +1 -1
  22. package/es/components/Root.js +22 -64
  23. package/es/components/actions/Action/Action.js +3 -3
  24. package/es/components/actions/Button/Button.js +12 -12
  25. package/es/components/actions/Button/index.js +2 -2
  26. package/es/components/actions/ButtonGroup/ButtonGroup.js +4 -4
  27. package/es/components/actions/CommandMenu/CommandMenu.js +11 -11
  28. package/es/components/actions/CommandMenu/index.js +2 -2
  29. package/es/components/actions/CommandMenu/styled.js +2 -2
  30. package/es/components/actions/ItemAction/ItemAction.js +9 -9
  31. package/es/components/actions/ItemAction/index.js +2 -2
  32. package/es/components/actions/ItemActionContext.js +1 -1
  33. package/es/components/actions/ItemButton/ItemButton.js +9 -9
  34. package/es/components/actions/ItemButton/index.js +2 -2
  35. package/es/components/actions/Link/Link.js +2 -2
  36. package/es/components/actions/Menu/Menu.js +10 -10
  37. package/es/components/actions/Menu/MenuItem.js +7 -7
  38. package/es/components/actions/Menu/MenuSection.js +4 -4
  39. package/es/components/actions/Menu/MenuTrigger.js +6 -6
  40. package/es/components/actions/Menu/SubMenuTrigger.js +6 -6
  41. package/es/components/actions/Menu/SubmenuTriggerContext.js +1 -1
  42. package/es/components/actions/Menu/context.js +1 -1
  43. package/es/components/actions/Menu/index.js +10 -10
  44. package/es/components/actions/Menu/styled.js +5 -5
  45. package/es/components/actions/index.js +13 -13
  46. package/es/components/actions/use-action.js +7 -7
  47. package/es/components/actions/use-anchored-menu.js +6 -6
  48. package/es/components/actions/use-context-menu.js +6 -6
  49. package/es/components/content/ActiveZone/ActiveZone.js +4 -4
  50. package/es/components/content/Alert/Alert.js +4 -4
  51. package/es/components/content/Alert/index.js +2 -2
  52. package/es/components/content/Alert/types.js +1 -1
  53. package/es/components/content/Alert/use-alert.js +3 -3
  54. package/es/components/content/Avatar/Avatar.js +2 -2
  55. package/es/components/content/Badge/Badge.js +4 -4
  56. package/es/components/content/Card/Card.js +2 -2
  57. package/es/components/content/Content.js +3 -3
  58. package/es/components/content/CopyPasteBlock/CopyPasteBlock.js +8 -8
  59. package/es/components/content/CopyPasteBlock/index.js +2 -2
  60. package/es/components/content/CopySnippet/CopySnippet.js +9 -9
  61. package/es/components/content/CopySnippet/index.js +2 -2
  62. package/es/components/content/Disclosure/Disclosure.js +6 -6
  63. package/es/components/content/Disclosure/index.js +2 -2
  64. package/es/components/content/Divider.js +3 -3
  65. package/es/components/content/Footer.js +3 -3
  66. package/es/components/content/Header.js +3 -3
  67. package/es/components/content/HotKeys/HotKeys.js +5 -5
  68. package/es/components/content/HotKeys/index.js +2 -2
  69. package/es/components/content/Item/Item.js +15 -15
  70. package/es/components/content/Item/index.js +3 -3
  71. package/es/components/content/ItemBadge/ItemBadge.js +8 -8
  72. package/es/components/content/ItemBadge/index.js +2 -2
  73. package/es/components/content/Layout/GridLayout.js +13 -13
  74. package/es/components/content/Layout/Layout.js +7 -6
  75. package/es/components/content/Layout/LayoutBlock.js +4 -3
  76. package/es/components/content/Layout/LayoutCenter.js +3 -3
  77. package/es/components/content/Layout/LayoutContainer.js +4 -4
  78. package/es/components/content/Layout/LayoutContent.js +6 -5
  79. package/es/components/content/Layout/LayoutContext.js +1 -1
  80. package/es/components/content/Layout/LayoutFlex.js +4 -3
  81. package/es/components/content/Layout/LayoutFooter.js +4 -3
  82. package/es/components/content/Layout/LayoutGrid.js +4 -3
  83. package/es/components/content/Layout/LayoutHeader.js +8 -7
  84. package/es/components/content/Layout/LayoutPane.js +8 -7
  85. package/es/components/content/Layout/LayoutPanel.js +10 -9
  86. package/es/components/content/Layout/LayoutPanelHeader.js +7 -7
  87. package/es/components/content/Layout/LayoutToolbar.js +4 -3
  88. package/es/components/content/Layout/hooks/useTinyScrollbar.js +1 -1
  89. package/es/components/content/Layout/index.js +16 -16
  90. package/es/components/content/Layout/utils.js +1 -1
  91. package/es/components/content/List/SectionHeading.js +3 -3
  92. package/es/components/content/List/index.js +2 -2
  93. package/es/components/content/Paragraph.js +3 -3
  94. package/es/components/content/Placeholder/Placeholder.js +2 -2
  95. package/es/components/content/PrismCode/PrismCode.js +7 -7
  96. package/es/components/content/PrismCode/prismSetup.js +1 -1
  97. package/es/components/content/PrismDiffCode/PrismDiffCode.js +2 -2
  98. package/es/components/content/Result/Result.js +4 -4
  99. package/es/components/content/Skeleton/Skeleton.js +5 -5
  100. package/es/components/content/Tag/Tag.js +4 -4
  101. package/es/components/content/Text.js +3 -3
  102. package/es/components/content/TextItem/TextItem.js +5 -5
  103. package/es/components/content/TextItem/index.js +2 -2
  104. package/es/components/content/Title.js +4 -4
  105. package/es/components/content/highlightText.js +2 -2
  106. package/es/components/content/use-auto-tooltip.js +2 -2
  107. package/es/components/fields/Checkbox/Checkbox.js +12 -12
  108. package/es/components/fields/Checkbox/CheckboxGroup.js +7 -7
  109. package/es/components/fields/Checkbox/context.js +1 -1
  110. package/es/components/fields/Checkbox/index.js +3 -3
  111. package/es/components/fields/ComboBox/ComboBox.js +18 -18
  112. package/es/components/fields/ComboBox/index.js +2 -2
  113. package/es/components/fields/DatePicker/DateInput.js +10 -10
  114. package/es/components/fields/DatePicker/DateInputBase.js +6 -6
  115. package/es/components/fields/DatePicker/DatePicker.js +14 -14
  116. package/es/components/fields/DatePicker/DatePickerButton.js +4 -4
  117. package/es/components/fields/DatePicker/DatePickerElement.js +3 -3
  118. package/es/components/fields/DatePicker/DatePickerInput.js +5 -5
  119. package/es/components/fields/DatePicker/DatePickerSegment.js +2 -2
  120. package/es/components/fields/DatePicker/DateRangePicker.js +15 -15
  121. package/es/components/fields/DatePicker/DateRangeSeparatedPicker.js +15 -15
  122. package/es/components/fields/DatePicker/TimeInput.js +9 -9
  123. package/es/components/fields/DatePicker/index.js +8 -8
  124. package/es/components/fields/DatePicker/intl.js +1 -1
  125. package/es/components/fields/DatePicker/parseDate.js +1 -1
  126. package/es/components/fields/DatePicker/props.js +1 -1
  127. package/es/components/fields/DatePicker/types.js +1 -1
  128. package/es/components/fields/DatePicker/utils.js +1 -1
  129. package/es/components/fields/FileInput/FileInput.js +6 -6
  130. package/es/components/fields/FilterListBox/FilterListBox.js +10 -10
  131. package/es/components/fields/FilterListBox/index.js +2 -2
  132. package/es/components/fields/FilterPicker/FilterPicker.js +14 -14
  133. package/es/components/fields/FilterPicker/index.js +2 -2
  134. package/es/components/fields/Input/Input.js +6 -6
  135. package/es/components/fields/Input/index.js +2 -2
  136. package/es/components/fields/ListBox/ListBox.js +14 -14
  137. package/es/components/fields/ListBox/index.js +2 -2
  138. package/es/components/fields/NumberInput/NumberInput.js +8 -8
  139. package/es/components/fields/NumberInput/StepButton.js +4 -4
  140. package/es/components/fields/PasswordInput/PasswordInput.js +8 -8
  141. package/es/components/fields/Picker/Picker.js +13 -13
  142. package/es/components/fields/Picker/index.js +2 -2
  143. package/es/components/fields/RadioGroup/Radio.js +10 -10
  144. package/es/components/fields/RadioGroup/RadioGroup.js +7 -7
  145. package/es/components/fields/RadioGroup/context.js +1 -1
  146. package/es/components/fields/RadioGroup/index.js +3 -3
  147. package/es/components/fields/SearchInput/SearchInput.js +8 -8
  148. package/es/components/fields/SearchInput/index.js +2 -2
  149. package/es/components/fields/Select/Select.js +20 -20
  150. package/es/components/fields/Select/index.js +2 -2
  151. package/es/components/fields/Slider/Gradation.js +2 -2
  152. package/es/components/fields/Slider/Header.js +1 -1
  153. package/es/components/fields/Slider/RangeSlider.js +5 -5
  154. package/es/components/fields/Slider/Slider.js +7 -7
  155. package/es/components/fields/Slider/SliderBase.js +6 -6
  156. package/es/components/fields/Slider/SliderInput.js +2 -2
  157. package/es/components/fields/Slider/SliderThumb.js +3 -3
  158. package/es/components/fields/Slider/SliderTrack.js +2 -2
  159. package/es/components/fields/Slider/elements.js +2 -2
  160. package/es/components/fields/Slider/index.js +4 -4
  161. package/es/components/fields/Slider/types.js +1 -1
  162. package/es/components/fields/Switch/Switch.js +11 -11
  163. package/es/components/fields/Switch/index.js +2 -2
  164. package/es/components/fields/TextArea/TextArea.js +7 -7
  165. package/es/components/fields/TextArea/index.js +2 -2
  166. package/es/components/fields/TextInput/TextInput.js +6 -6
  167. package/es/components/fields/TextInput/TextInputBase.js +9 -9
  168. package/es/components/fields/TextInput/index.js +3 -3
  169. package/es/components/fields/TextInputMapper/TextInputMapper.js +14 -14
  170. package/es/components/fields/TextInputMapper/index.js +2 -2
  171. package/es/components/fields/index.js +20 -20
  172. package/es/components/form/FieldWrapper/FieldWrapper.js +9 -9
  173. package/es/components/form/FieldWrapper/extract-field-wrapper-props.js +1 -1
  174. package/es/components/form/FieldWrapper/index.js +4 -4
  175. package/es/components/form/FieldWrapper/types.js +1 -1
  176. package/es/components/form/Form/Field.js +6 -6
  177. package/es/components/form/Form/Form.js +6 -6
  178. package/es/components/form/Form/ResetButton/ResetButton.js +6 -6
  179. package/es/components/form/Form/ResetButton/index.js +2 -2
  180. package/es/components/form/Form/SubmitButton/SubmitButton.js +4 -4
  181. package/es/components/form/Form/SubmitButton/index.js +2 -2
  182. package/es/components/form/Form/SubmitError.js +3 -3
  183. package/es/components/form/Form/index.js +11 -11
  184. package/es/components/form/Form/types.js +1 -1
  185. package/es/components/form/Form/use-field/index.js +4 -4
  186. package/es/components/form/Form/use-field/types.js +1 -1
  187. package/es/components/form/Form/use-field/use-field-props.js +6 -6
  188. package/es/components/form/Form/use-field/use-field.js +4 -4
  189. package/es/components/form/Form/use-form.js +3 -3
  190. package/es/components/form/Form/validation.js +1 -1
  191. package/es/components/form/Label.js +3 -3
  192. package/es/components/form/index.js +5 -5
  193. package/es/components/form/wrapper.js +3 -3
  194. package/es/components/helpers/DisplayTransition/DisplayTransition.js +1 -1
  195. package/es/components/helpers/DisplayTransition/index.js +2 -2
  196. package/es/components/helpers/IconSwitch/IconSwitch.js +3 -3
  197. package/es/components/helpers/index.js +3 -3
  198. package/es/components/layout/Flex.js +2 -2
  199. package/es/components/layout/Flow.js +2 -2
  200. package/es/components/layout/Grid.js +2 -2
  201. package/es/components/layout/Panel.js +2 -2
  202. package/es/components/layout/Prefix.js +3 -3
  203. package/es/components/layout/ResizablePanel.js +5 -5
  204. package/es/components/layout/Space.js +2 -2
  205. package/es/components/layout/Suffix.js +3 -3
  206. package/es/components/organisms/FileTabs/FileTabs.js +8 -8
  207. package/es/components/organisms/StatsCard/StatsCard.js +4 -4
  208. package/es/components/other/Calendar/Calendar.js +8 -8
  209. package/es/components/other/Calendar/CalendarCell.js +2 -2
  210. package/es/components/other/Calendar/CalendarGrid.js +3 -3
  211. package/es/components/other/Calendar/RangeCalendar.js +8 -8
  212. package/es/components/other/CloudLogo/CloudLogo.js +3 -3
  213. package/es/components/overlays/AlertDialog/AlertDialog.js +11 -11
  214. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +2 -2
  215. package/es/components/overlays/AlertDialog/AlertDialogZone.js +4 -4
  216. package/es/components/overlays/AlertDialog/index.js +4 -4
  217. package/es/components/overlays/AlertDialog/types.js +1 -1
  218. package/es/components/overlays/Dialog/Dialog.js +7 -7
  219. package/es/components/overlays/Dialog/DialogContainer.js +3 -3
  220. package/es/components/overlays/Dialog/DialogForm.js +8 -8
  221. package/es/components/overlays/Dialog/DialogTrigger.js +4 -4
  222. package/es/components/overlays/Dialog/context.js +1 -1
  223. package/es/components/overlays/Dialog/index.js +6 -6
  224. package/es/components/overlays/Dialog/use-dialog-container.js +4 -4
  225. package/es/components/overlays/Modal/Modal.js +5 -5
  226. package/es/components/overlays/Modal/OpenTransition.js +1 -1
  227. package/es/components/overlays/Modal/Overlay.js +3 -3
  228. package/es/components/overlays/Modal/Popover.js +4 -4
  229. package/es/components/overlays/Modal/Tray.js +6 -6
  230. package/es/components/overlays/Modal/Underlay.js +2 -2
  231. package/es/components/overlays/Modal/index.js +7 -7
  232. package/es/components/overlays/Modal/types.js +1 -1
  233. package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +5 -5
  234. package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +7 -7
  235. package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +36 -34
  236. package/es/components/overlays/NewNotifications/Bar/index.js +2 -2
  237. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogContext.js +1 -1
  238. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +8 -8
  239. package/es/components/overlays/NewNotifications/Dialog/index.js +2 -2
  240. package/es/components/overlays/NewNotifications/Notification.js +4 -4
  241. package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +5 -5
  242. package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +4 -4
  243. package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +4 -4
  244. package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +3 -3
  245. package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +3 -3
  246. package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +4 -4
  247. package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +1 -1
  248. package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +12 -12
  249. package/es/components/overlays/NewNotifications/NotificationView/index.js +3 -3
  250. package/es/components/overlays/NewNotifications/NotificationView/types.js +1 -1
  251. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsContext.js +1 -1
  252. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +5 -5
  253. package/es/components/overlays/NewNotifications/NotificationsContext/index.js +3 -3
  254. package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +2 -2
  255. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +4 -4
  256. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +5 -5
  257. package/es/components/overlays/NewNotifications/NotificationsList/index.js +2 -2
  258. package/es/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
  259. package/es/components/overlays/NewNotifications/hooks/index.js +6 -6
  260. package/es/components/overlays/NewNotifications/hooks/types.js +1 -1
  261. package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
  262. package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +2 -2
  263. package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
  264. package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +3 -3
  265. package/es/components/overlays/NewNotifications/index.js +7 -7
  266. package/es/components/overlays/NewNotifications/types.js +1 -1
  267. package/es/components/overlays/Notification/Notification.js +7 -7
  268. package/es/components/overlays/OverlayWrapper.js +2 -2
  269. package/es/components/overlays/Toasts/Toast.js +4 -4
  270. package/es/components/overlays/Toasts/index.js +3 -3
  271. package/es/components/overlays/Toasts/types.js +1 -1
  272. package/es/components/overlays/Toasts/use-toasts-api.js +2 -2
  273. package/es/components/overlays/Tooltip/Tooltip.js +4 -4
  274. package/es/components/overlays/Tooltip/TooltipProvider.js +3 -3
  275. package/es/components/overlays/Tooltip/TooltipTrigger.js +6 -6
  276. package/es/components/overlays/Tooltip/context.js +1 -1
  277. package/es/components/overlays/Tooltip/index.js +4 -4
  278. package/es/components/portal/Portal.js +2 -2
  279. package/es/components/portal/PortalProvider.js +1 -1
  280. package/es/components/portal/index.js +3 -3
  281. package/es/components/portal/types.js +1 -1
  282. package/es/components/portal/usePortal.js +2 -2
  283. package/es/components/shared/InvalidIcon.js +2 -2
  284. package/es/components/shared/ValidIcon.js +2 -2
  285. package/es/components/status/LoadingAnimation/LoadingAnimation.js +58 -114
  286. package/es/components/status/LoadingAnimation/index.js +2 -2
  287. package/es/components/status/Spin/Cube.js +95 -179
  288. package/es/components/status/Spin/InternalSpinner.js +5 -5
  289. package/es/components/status/Spin/Spin.js +4 -4
  290. package/es/components/status/Spin/SpinsContainer.js +28 -30
  291. package/es/components/status/Spin/index.js +2 -2
  292. package/es/components/status/Spin/types.js +1 -1
  293. package/es/components/status/index.js +3 -3
  294. package/es/data/item-themes.js +1 -1
  295. package/es/data/themes.js +1 -1
  296. package/es/icons/AdjustmentsHorizontalIcon.js +2 -2
  297. package/es/icons/AdjustmentsIcon.js +2 -2
  298. package/es/icons/AiIcon.js +2 -2
  299. package/es/icons/AreaChartIcon.js +2 -2
  300. package/es/icons/BackwardIcon.js +2 -2
  301. package/es/icons/BarChartIcon.js +2 -2
  302. package/es/icons/BellFilledIcon.js +2 -2
  303. package/es/icons/BellIcon.js +2 -2
  304. package/es/icons/BooleanIcon.js +2 -2
  305. package/es/icons/CalendarEditIcon.js +2 -2
  306. package/es/icons/CalendarIcon.js +2 -2
  307. package/es/icons/CaretDownIcon.js +2 -2
  308. package/es/icons/CaretUpIcon.js +2 -2
  309. package/es/icons/ChartAreaStackedIcon.js +2 -2
  310. package/es/icons/ChartAreaStackedPercentageIcon.js +2 -2
  311. package/es/icons/ChartBarGroupedHorizontalIcon.js +2 -2
  312. package/es/icons/ChartBarGroupedIcon.js +2 -2
  313. package/es/icons/ChartBarHorizontalIcon.js +2 -2
  314. package/es/icons/ChartBarLineIcon.js +2 -2
  315. package/es/icons/ChartBarStackedHorizontalIcon.js +2 -2
  316. package/es/icons/ChartBarStackedIcon.js +2 -2
  317. package/es/icons/ChartBarStackedPercentageHorizontalIcon.js +2 -2
  318. package/es/icons/ChartBarStackedPercentageIcon.js +2 -2
  319. package/es/icons/ChartBoxPlot2Icon.js +2 -2
  320. package/es/icons/ChartBoxPlotIcon.js +2 -2
  321. package/es/icons/ChartBubbleIcon.js +2 -2
  322. package/es/icons/ChartDonut2Icon.js +2 -2
  323. package/es/icons/ChartFunnelIcon.js +2 -2
  324. package/es/icons/ChartHeatmapIcon.js +2 -2
  325. package/es/icons/ChartKPIIcon.js +2 -2
  326. package/es/icons/ChartPie2Icon.js +2 -2
  327. package/es/icons/ChartScatterIcon.js +2 -2
  328. package/es/icons/CheckCircleFilledIcon.js +2 -2
  329. package/es/icons/CheckCircleIcon.js +2 -2
  330. package/es/icons/CheckIcon.js +2 -2
  331. package/es/icons/CircleFilledIcon.js +2 -2
  332. package/es/icons/ClearIcon.js +2 -2
  333. package/es/icons/CloseCircleFilledIcon.js +2 -2
  334. package/es/icons/CloseCircleIcon.js +2 -2
  335. package/es/icons/CloseIcon.js +2 -2
  336. package/es/icons/CodeIcon.js +2 -2
  337. package/es/icons/ColumnTotalIcon.js +2 -2
  338. package/es/icons/CopyIcon.js +2 -2
  339. package/es/icons/CountIcon.js +2 -2
  340. package/es/icons/CubeIcon.js +2 -2
  341. package/es/icons/CubePauseIcon.js +2 -2
  342. package/es/icons/CubePlayIcon.js +2 -2
  343. package/es/icons/CurrencyDollarIcon.js +2 -2
  344. package/es/icons/DangerIcon.js +2 -2
  345. package/es/icons/DashboardIcon.js +2 -2
  346. package/es/icons/DatabaseIcon.js +2 -2
  347. package/es/icons/DecimalDecreaseIcon.js +2 -2
  348. package/es/icons/DecimalIncreaseIcon.js +2 -2
  349. package/es/icons/DirectionIcon.js +3 -3
  350. package/es/icons/DonutIcon.js +2 -2
  351. package/es/icons/DownIcon.js +2 -2
  352. package/es/icons/EditIcon.js +2 -2
  353. package/es/icons/ExclamationCircleFilledIcon.js +2 -2
  354. package/es/icons/ExclamationCircleIcon.js +2 -2
  355. package/es/icons/ExclamationIcon.js +2 -2
  356. package/es/icons/EyeIcon.js +2 -2
  357. package/es/icons/EyeInvisibleIcon.js +2 -2
  358. package/es/icons/FilterIcon.js +2 -2
  359. package/es/icons/FolderFilledIcon.js +2 -2
  360. package/es/icons/FolderIcon.js +2 -2
  361. package/es/icons/FolderOpenFilledIcon.js +2 -2
  362. package/es/icons/FolderOpenIcon.js +2 -2
  363. package/es/icons/ForwardIcon.js +2 -2
  364. package/es/icons/HierarchyIcon.js +2 -2
  365. package/es/icons/HierarchyOpenIcon.js +2 -2
  366. package/es/icons/Icon.js +2 -2
  367. package/es/icons/InfoCircleIcon.js +2 -2
  368. package/es/icons/InfoIcon.js +2 -2
  369. package/es/icons/KeyIcon.js +2 -2
  370. package/es/icons/LeftIcon.js +2 -2
  371. package/es/icons/LineChartIcon.js +2 -2
  372. package/es/icons/LoadingIcon.js +2 -2
  373. package/es/icons/LockFilledIcon.js +2 -2
  374. package/es/icons/LockIcon.js +2 -2
  375. package/es/icons/MoreIcon.js +2 -2
  376. package/es/icons/NotAllowedIcon.js +2 -2
  377. package/es/icons/Number123Icon.js +2 -2
  378. package/es/icons/NumberIcon.js +2 -2
  379. package/es/icons/PauseCircleFilledIcon.js +2 -2
  380. package/es/icons/PauseCircleIcon.js +2 -2
  381. package/es/icons/PauseIcon.js +2 -2
  382. package/es/icons/PercentageIcon.js +2 -2
  383. package/es/icons/PieChartIcon.js +2 -2
  384. package/es/icons/PlayCircleIcon.js +2 -2
  385. package/es/icons/PlayIcon.js +2 -2
  386. package/es/icons/PlusIcon.js +2 -2
  387. package/es/icons/ProgressBarIcon.js +2 -2
  388. package/es/icons/ReloadIcon.js +2 -2
  389. package/es/icons/ReportIcon.js +2 -2
  390. package/es/icons/ReturnIcon.js +2 -2
  391. package/es/icons/RightIcon.js +2 -2
  392. package/es/icons/RowTotalsIcon.js +2 -2
  393. package/es/icons/SchemeIcon.js +2 -2
  394. package/es/icons/SearchIcon.js +2 -2
  395. package/es/icons/SemanticQueryIcon.js +2 -2
  396. package/es/icons/SettingsIcon.js +2 -2
  397. package/es/icons/ShieldFilledIcon.js +2 -2
  398. package/es/icons/ShieldIcon.js +2 -2
  399. package/es/icons/SlashIcon.js +2 -2
  400. package/es/icons/SparklesIcon.js +2 -2
  401. package/es/icons/SqlIcon.js +2 -2
  402. package/es/icons/StatsIcon.js +2 -2
  403. package/es/icons/StopIcon.js +2 -2
  404. package/es/icons/StringIcon.js +2 -2
  405. package/es/icons/SubtotalsIcon.js +2 -2
  406. package/es/icons/SwitchIcon.js +2 -2
  407. package/es/icons/TableIcon.js +2 -2
  408. package/es/icons/ThumbsDownIcon.js +2 -2
  409. package/es/icons/ThumbsUpIcon.js +2 -2
  410. package/es/icons/ThunderboltCrossedIcon.js +2 -2
  411. package/es/icons/ThunderboltFilledIcon.js +2 -2
  412. package/es/icons/ThunderboltIcon.js +2 -2
  413. package/es/icons/TimeIcon.js +2 -2
  414. package/es/icons/TrashIcon.js +2 -2
  415. package/es/icons/UnlockIcon.js +2 -2
  416. package/es/icons/UpIcon.js +2 -2
  417. package/es/icons/UserGroupIcon.js +2 -2
  418. package/es/icons/UserIcon.js +2 -2
  419. package/es/icons/UserLockIcon.js +2 -2
  420. package/es/icons/ViewIcon.js +2 -2
  421. package/es/icons/WarningFilledIcon.js +2 -2
  422. package/es/icons/WarningIcon.js +2 -2
  423. package/es/icons/index.js +129 -129
  424. package/es/icons/wrap-icon.js +2 -2
  425. package/es/index.js +73 -74
  426. package/es/provider.js +4 -10
  427. package/es/providers/TrackingProvider.js +1 -1
  428. package/es/providers/navigation.types.js +1 -1
  429. package/es/providers/navigationAdapter.default.js +1 -1
  430. package/es/services/notification.js +2 -2
  431. package/es/shared/form.js +1 -1
  432. package/es/shared/index.js +2 -2
  433. package/es/stories/Form.legacy-stories.js +4 -4
  434. package/es/stories/FormFieldArgs.js +2 -2
  435. package/es/stories/SimpleLayout.stories.js +2 -2
  436. package/es/stories/Tasty.stories.js +2 -2
  437. package/es/stories/components/ConfirmDeletionDialogForm.js +2 -2
  438. package/es/stories/components/DialogFormApp.js +3 -3
  439. package/es/stories/components/StyledButton.js +19 -15
  440. package/es/stories/lists/baseProps.js +2 -2
  441. package/es/stories/playground/PlaygroundEditor.js +89 -0
  442. package/es/stories/playground/PlaygroundLayout.js +16 -0
  443. package/es/stories/playground/PlaygroundOutput.js +92 -0
  444. package/es/stories/playground/PlaygroundPreview.js +91 -0
  445. package/es/stories/playground/components/Button.js +45 -0
  446. package/es/stories/playground/components/Card.js +20 -0
  447. package/es/stories/playground/components/ScrollProgress.js +17 -0
  448. package/es/stories/playground/examples.js +158 -0
  449. package/es/tasty/chunks/cacheKey.js +98 -0
  450. package/es/tasty/chunks/definitions.js +281 -0
  451. package/es/tasty/chunks/index.js +12 -0
  452. package/es/tasty/chunks/renderChunk.js +97 -0
  453. package/es/tasty/config.js +280 -0
  454. package/es/tasty/debug.js +195 -9
  455. package/es/tasty/hooks/index.js +12 -0
  456. package/es/tasty/hooks/useGlobalStyles.js +67 -0
  457. package/es/tasty/hooks/useRawCSS.js +40 -0
  458. package/es/tasty/hooks/useStyles.js +206 -0
  459. package/es/tasty/index.js +31 -17
  460. package/es/tasty/injector/index.js +34 -90
  461. package/es/tasty/injector/injector.js +81 -299
  462. package/es/tasty/injector/sheet-manager.js +138 -3
  463. package/es/tasty/injector/types.js +1 -1
  464. package/es/tasty/keyframes/index.js +301 -0
  465. package/es/tasty/parser/classify.js +8 -6
  466. package/es/tasty/parser/const.js +1 -1
  467. package/es/tasty/parser/lru.js +1 -1
  468. package/es/tasty/parser/parser.js +18 -5
  469. package/es/tasty/parser/tokenizer.js +1 -1
  470. package/es/tasty/parser/types.js +2 -1
  471. package/es/tasty/pipeline/conditions.js +426 -0
  472. package/es/tasty/pipeline/exclusive.js +311 -0
  473. package/es/tasty/pipeline/index.js +543 -0
  474. package/es/tasty/pipeline/materialize.js +1260 -0
  475. package/es/tasty/pipeline/parseStateKey.js +592 -0
  476. package/es/tasty/pipeline/simplify.js +898 -0
  477. package/es/tasty/plugins/index.js +26 -0
  478. package/es/tasty/plugins/okhsl-plugin.js +400 -0
  479. package/es/tasty/plugins/types.js +10 -0
  480. package/es/tasty/states/index.js +523 -0
  481. package/es/tasty/static/index.js +47 -0
  482. package/es/tasty/static/tastyStatic.js +55 -0
  483. package/es/tasty/static/types.js +34 -0
  484. package/es/tasty/styles/align.js +1 -1
  485. package/es/tasty/styles/border.js +2 -2
  486. package/es/tasty/styles/boxShadow.combinator.js +1 -1
  487. package/es/tasty/styles/color.js +3 -3
  488. package/es/tasty/styles/createStyle.js +3 -3
  489. package/es/tasty/styles/dimension.js +2 -2
  490. package/es/tasty/styles/display.js +1 -1
  491. package/es/tasty/styles/fade.js +2 -2
  492. package/es/tasty/styles/fill.js +11 -21
  493. package/es/tasty/styles/flow.js +1 -1
  494. package/es/tasty/styles/font.js +1 -1
  495. package/es/tasty/styles/fontStyle.js +1 -1
  496. package/es/tasty/styles/gap.js +2 -2
  497. package/es/tasty/styles/groupRadius.js +2 -2
  498. package/es/tasty/styles/height.js +2 -2
  499. package/es/tasty/styles/index.js +3 -3
  500. package/es/tasty/styles/inset.js +2 -2
  501. package/es/tasty/styles/justify.js +1 -1
  502. package/es/tasty/styles/list.js +1 -1
  503. package/es/tasty/styles/margin.js +76 -56
  504. package/es/tasty/styles/outline.js +2 -2
  505. package/es/tasty/styles/padding.js +76 -56
  506. package/es/tasty/styles/place.js +1 -1
  507. package/es/tasty/styles/predefined.js +28 -27
  508. package/es/tasty/styles/preset.js +2 -2
  509. package/es/tasty/styles/radius.js +5 -12
  510. package/es/tasty/styles/reset.js +3 -7
  511. package/es/tasty/styles/scrollbar.js +2 -2
  512. package/es/tasty/styles/shadow.js +2 -2
  513. package/es/tasty/styles/styledScrollbar.js +1 -1
  514. package/es/tasty/styles/transition.js +10 -3
  515. package/es/tasty/styles/types.js +1 -1
  516. package/es/tasty/styles/width.js +2 -2
  517. package/es/tasty/tasty.js +81 -122
  518. package/es/tasty/types.js +1 -1
  519. package/es/tasty/utils/cache-wrapper.js +1 -1
  520. package/es/tasty/utils/case-converter.js +1 -1
  521. package/es/tasty/utils/colors.js +1 -1
  522. package/es/tasty/utils/dotize.js +1 -1
  523. package/es/tasty/utils/filterBaseProps.js +1 -1
  524. package/es/tasty/utils/getDisplayName.js +1 -1
  525. package/es/tasty/utils/isDevEnv.js +1 -1
  526. package/es/tasty/utils/mergeStyles.js +2 -2
  527. package/es/tasty/utils/modAttrs.js +3 -3
  528. package/es/tasty/utils/processTokens.js +88 -2
  529. package/es/tasty/utils/string.js +1 -1
  530. package/es/tasty/utils/styles.js +255 -22
  531. package/es/tasty/utils/typography.js +67 -0
  532. package/es/tasty/utils/warnings.js +1 -1
  533. package/es/tasty/zero/babel.js +453 -0
  534. package/es/tasty/zero/css-writer.js +94 -0
  535. package/es/tasty/zero/extractor.js +222 -0
  536. package/es/tasty/zero/index.js +28 -0
  537. package/es/tasty/zero/next.js +102 -0
  538. package/es/tokens/base.js +64 -0
  539. package/es/tokens/colors.js +68 -0
  540. package/es/tokens/index.js +63 -0
  541. package/es/tokens/layout.js +26 -0
  542. package/es/tokens/shadows.js +27 -0
  543. package/es/tokens/sizes.js +42 -0
  544. package/es/tokens/spacing.js +22 -0
  545. package/es/tokens/typography.js +237 -0
  546. package/es/utils/ResizeSensor.js +1 -1
  547. package/es/utils/index.js +10 -10
  548. package/es/utils/modules.js +1 -1
  549. package/es/utils/promise.js +1 -1
  550. package/es/utils/raf.js +1 -1
  551. package/es/utils/random.js +1 -1
  552. package/es/utils/range.js +1 -1
  553. package/es/utils/react/RenderCache.js +1 -1
  554. package/es/utils/react/Slots.js +2 -2
  555. package/es/utils/react/chain.js +1 -1
  556. package/es/utils/react/forwardRefWithGenerics.js +1 -1
  557. package/es/utils/react/index.js +17 -17
  558. package/es/utils/react/interactions.js +1 -1
  559. package/es/utils/react/isTextOnly.js +1 -1
  560. package/es/utils/react/mapProps.js +1 -1
  561. package/es/utils/react/mergeProps.js +4 -4
  562. package/es/utils/react/nullableValue.js +1 -1
  563. package/es/utils/react/resolveIcon.js +1 -1
  564. package/es/utils/react/sharedStore.js +2 -2
  565. package/es/utils/react/useCombinedRefs.js +1 -1
  566. package/es/utils/react/useControlledFocusVisible.js +2 -2
  567. package/es/utils/react/useEventBus.js +1 -1
  568. package/es/utils/react/useId.js +2 -2
  569. package/es/utils/react/useIsDarwin.js +1 -1
  570. package/es/utils/react/useKeySymbols.js +2 -2
  571. package/es/utils/react/useLayoutEffect.js +1 -1
  572. package/es/utils/react/useLocalStorage.js +2 -2
  573. package/es/utils/react/useQaProps.js +1 -1
  574. package/es/utils/react/useViewportSize.js +1 -1
  575. package/es/utils/react/wrapNodeIfPlain.js +1 -1
  576. package/es/utils/tree.js +1 -1
  577. package/es/utils/warnings.js +1 -1
  578. package/es/version.js +2 -2
  579. package/package.json +14 -4
  580. package/types/components/GlobalStyles.d.ts +2 -1
  581. package/types/components/HiddenInput.d.ts +828 -826
  582. package/types/components/Root.d.ts +1 -0
  583. package/types/components/actions/Button/Button.d.ts +1649 -1645
  584. package/types/components/actions/CommandMenu/styled.d.ts +4140 -4130
  585. package/types/components/actions/Menu/styled.d.ts +4893 -4883
  586. package/types/components/actions/use-action.d.ts +1 -1
  587. package/types/components/content/List/SectionHeading.d.ts +251 -251
  588. package/types/components/content/Text.d.ts +1487 -1487
  589. package/types/components/fields/DatePicker/DatePickerElement.d.ts +251 -251
  590. package/types/components/fields/Select/Select.d.ts +828 -826
  591. package/types/components/fields/Slider/elements.d.ts +4968 -4956
  592. package/types/components/status/Spin/Cube.d.ts +1 -1
  593. package/types/components/status/Spin/SpinsContainer.d.ts +6 -3
  594. package/types/index.d.ts +1 -4
  595. package/types/provider.d.ts +1 -2
  596. package/types/stories/components/StyledButton.d.ts +1 -1
  597. package/types/stories/playground/PlaygroundEditor.d.ts +6 -0
  598. package/types/stories/playground/PlaygroundLayout.d.ts +8 -0
  599. package/types/stories/playground/PlaygroundOutput.d.ts +5 -0
  600. package/types/stories/playground/PlaygroundPreview.d.ts +6 -0
  601. package/types/stories/playground/components/Button.d.ts +11 -0
  602. package/types/stories/playground/components/Card.d.ts +7 -0
  603. package/types/stories/playground/components/ScrollProgress.d.ts +5 -0
  604. package/types/stories/playground/examples.d.ts +7 -0
  605. package/types/tasty/chunks/cacheKey.d.ts +26 -0
  606. package/types/tasty/chunks/definitions.d.ts +75 -0
  607. package/types/tasty/chunks/index.d.ts +4 -0
  608. package/types/tasty/chunks/renderChunk.d.ts +25 -0
  609. package/types/tasty/config.d.ts +171 -0
  610. package/types/tasty/debug.d.ts +35 -0
  611. package/types/tasty/hooks/index.d.ts +4 -0
  612. package/types/tasty/hooks/useGlobalStyles.d.ts +22 -0
  613. package/types/tasty/hooks/useRawCSS.d.ts +50 -0
  614. package/types/tasty/hooks/useStyles.d.ts +35 -0
  615. package/types/tasty/index.d.ts +14 -4
  616. package/types/tasty/injector/index.d.ts +30 -19
  617. package/types/tasty/injector/injector.d.ts +19 -13
  618. package/types/tasty/injector/sheet-manager.d.ts +25 -1
  619. package/types/tasty/injector/types.d.ts +23 -2
  620. package/types/tasty/keyframes/index.d.ts +49 -0
  621. package/types/tasty/parser/parser.d.ts +4 -0
  622. package/types/tasty/parser/types.d.ts +1 -0
  623. package/types/tasty/pipeline/conditions.d.ts +243 -0
  624. package/types/tasty/pipeline/exclusive.d.ts +103 -0
  625. package/types/tasty/pipeline/index.d.ts +67 -0
  626. package/types/tasty/pipeline/materialize.d.ts +162 -0
  627. package/types/tasty/pipeline/parseStateKey.d.ts +20 -0
  628. package/types/tasty/pipeline/simplify.d.ts +28 -0
  629. package/types/tasty/plugins/index.d.ts +17 -0
  630. package/types/tasty/plugins/okhsl-plugin.d.ts +45 -0
  631. package/types/tasty/plugins/types.d.ts +34 -0
  632. package/types/tasty/states/index.d.ts +101 -0
  633. package/types/tasty/static/index.d.ts +39 -0
  634. package/types/tasty/static/tastyStatic.d.ts +41 -0
  635. package/types/tasty/static/types.d.ts +44 -0
  636. package/types/tasty/styles/fill.d.ts +11 -1
  637. package/types/tasty/styles/margin.d.ts +3 -1
  638. package/types/tasty/styles/padding.d.ts +3 -1
  639. package/types/tasty/styles/radius.d.ts +2 -10
  640. package/types/tasty/styles/types.d.ts +24 -3
  641. package/types/tasty/tasty.d.ts +892 -840
  642. package/types/tasty/utils/styles.d.ts +50 -6
  643. package/types/tasty/utils/typography.d.ts +32 -0
  644. package/types/tasty/zero/babel.d.ts +63 -0
  645. package/types/tasty/zero/css-writer.d.ts +41 -0
  646. package/types/tasty/zero/extractor.d.ts +40 -0
  647. package/types/tasty/zero/index.d.ts +18 -0
  648. package/types/tasty/zero/next.d.ts +57 -0
  649. package/types/tokens/base.d.ts +8 -0
  650. package/types/tokens/colors.d.ts +6 -0
  651. package/types/tokens/index.d.ts +41 -0
  652. package/types/tokens/layout.d.ts +7 -0
  653. package/types/tokens/shadows.d.ts +12 -0
  654. package/types/tokens/sizes.d.ts +25 -0
  655. package/types/tokens/spacing.d.ts +8 -0
  656. package/types/tokens/typography.d.ts +30 -0
  657. package/es/components/navigation/LegacyTabs/LegacyTabs.js +0 -275
  658. package/es/components/other/Base64Upload/Base64Upload.js +0 -103
  659. package/es/icons/add-new-icon.js +0 -129
  660. package/es/tasty/providers/BreakpointsProvider.js +0 -16
  661. package/es/tasty/utils/getModCombinations.js +0 -38
  662. package/es/tasty/utils/renderStyles.js +0 -1050
  663. package/es/tasty/utils/responsive.js +0 -60
  664. package/es/tokens.js +0 -309
  665. package/types/components/navigation/LegacyTabs/LegacyTabs.d.ts +0 -43
  666. package/types/components/other/Base64Upload/Base64Upload.d.ts +0 -5
  667. package/types/icons/add-new-icon.d.ts +0 -2
  668. package/types/tasty/providers/BreakpointsProvider.d.ts +0 -8
  669. package/types/tasty/utils/getModCombinations.d.ts +0 -9
  670. package/types/tasty/utils/renderStyles.d.ts +0 -41
  671. package/types/tasty/utils/responsive.d.ts +0 -8
  672. package/types/tokens.d.ts +0 -221
@@ -7,832 +7,834 @@ import { FieldBaseProps } from '../../../shared/index';
7
7
  import { BasePropsWithoutChildren, BaseStyleProps, ColorStyleProps, OuterStyleProps, Props, Styles } from '../../../tasty/index';
8
8
  import { CollectionItem } from '../../CollectionItem';
9
9
  export declare const ListBoxElement: React.ForwardRefExoticComponent<import("../../../tasty/types").AllBaseProps<keyof HTMLElementTagNameMap> & {
10
- color?: import("../../../tasty/index").ResponsiveStyleValue<string | boolean | undefined>;
11
- filter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
12
- fill?: import("../../../tasty/index").ResponsiveStyleValue<boolean | (string & {}) | "#purple" | "#purple.0" | "#purple.1" | "#purple.2" | "#purple.3" | "#purple.4" | "#purple.5" | "#purple.6" | "#purple.7" | "#purple.8" | "#purple.9" | "#purple.00" | "#purple.01" | "#purple.02" | "#purple.03" | "#purple.04" | "#purple.05" | "#purple.06" | "#purple.07" | "#purple.08" | "#purple.09" | "#purple.10" | "#purple.11" | "#purple.12" | "#purple.13" | "#purple.14" | "#purple.15" | "#purple.16" | "#purple.17" | "#purple.18" | "#purple.19" | "#purple.20" | "#purple.21" | "#purple.22" | "#purple.23" | "#purple.24" | "#purple.25" | "#purple.26" | "#purple.27" | "#purple.28" | "#purple.29" | "#purple.30" | "#purple.31" | "#purple.32" | "#purple.33" | "#purple.34" | "#purple.35" | "#purple.36" | "#purple.37" | "#purple.38" | "#purple.39" | "#purple.40" | "#purple.41" | "#purple.42" | "#purple.43" | "#purple.44" | "#purple.45" | "#purple.46" | "#purple.47" | "#purple.48" | "#purple.49" | "#purple.50" | "#purple.51" | "#purple.52" | "#purple.53" | "#purple.54" | "#purple.55" | "#purple.56" | "#purple.57" | "#purple.58" | "#purple.59" | "#purple.60" | "#purple.61" | "#purple.62" | "#purple.63" | "#purple.64" | "#purple.65" | "#purple.66" | "#purple.67" | "#purple.68" | "#purple.69" | "#purple.70" | "#purple.71" | "#purple.72" | "#purple.73" | "#purple.74" | "#purple.75" | "#purple.76" | "#purple.77" | "#purple.78" | "#purple.79" | "#purple.80" | "#purple.81" | "#purple.82" | "#purple.83" | "#purple.84" | "#purple.85" | "#purple.86" | "#purple.87" | "#purple.88" | "#purple.89" | "#purple.90" | "#purple.91" | "#purple.92" | "#purple.93" | "#purple.94" | "#purple.95" | "#purple.96" | "#purple.97" | "#purple.98" | "#purple.99" | "#purple.100" | "#purple-text" | "#purple-text.0" | "#purple-text.1" | "#purple-text.2" | "#purple-text.3" | "#purple-text.4" | "#purple-text.5" | "#purple-text.6" | "#purple-text.7" | "#purple-text.8" | "#purple-text.9" | "#purple-text.00" | "#purple-text.01" | "#purple-text.02" | "#purple-text.03" | "#purple-text.04" | "#purple-text.05" | "#purple-text.06" | "#purple-text.07" | "#purple-text.08" | "#purple-text.09" | "#purple-text.10" | "#purple-text.11" | "#purple-text.12" | "#purple-text.13" | "#purple-text.14" | "#purple-text.15" | "#purple-text.16" | "#purple-text.17" | "#purple-text.18" | "#purple-text.19" | "#purple-text.20" | "#purple-text.21" | "#purple-text.22" | "#purple-text.23" | "#purple-text.24" | "#purple-text.25" | "#purple-text.26" | "#purple-text.27" | "#purple-text.28" | "#purple-text.29" | "#purple-text.30" | "#purple-text.31" | "#purple-text.32" | "#purple-text.33" | "#purple-text.34" | "#purple-text.35" | "#purple-text.36" | "#purple-text.37" | "#purple-text.38" | "#purple-text.39" | "#purple-text.40" | "#purple-text.41" | "#purple-text.42" | "#purple-text.43" | "#purple-text.44" | "#purple-text.45" | "#purple-text.46" | "#purple-text.47" | "#purple-text.48" | "#purple-text.49" | "#purple-text.50" | "#purple-text.51" | "#purple-text.52" | "#purple-text.53" | "#purple-text.54" | "#purple-text.55" | "#purple-text.56" | "#purple-text.57" | "#purple-text.58" | "#purple-text.59" | "#purple-text.60" | "#purple-text.61" | "#purple-text.62" | "#purple-text.63" | "#purple-text.64" | "#purple-text.65" | "#purple-text.66" | "#purple-text.67" | "#purple-text.68" | "#purple-text.69" | "#purple-text.70" | "#purple-text.71" | "#purple-text.72" | "#purple-text.73" | "#purple-text.74" | "#purple-text.75" | "#purple-text.76" | "#purple-text.77" | "#purple-text.78" | "#purple-text.79" | "#purple-text.80" | "#purple-text.81" | "#purple-text.82" | "#purple-text.83" | "#purple-text.84" | "#purple-text.85" | "#purple-text.86" | "#purple-text.87" | "#purple-text.88" | "#purple-text.89" | "#purple-text.90" | "#purple-text.91" | "#purple-text.92" | "#purple-text.93" | "#purple-text.94" | "#purple-text.95" | "#purple-text.96" | "#purple-text.97" | "#purple-text.98" | "#purple-text.99" | "#purple-text.100" | "#purple-icon" | "#purple-icon.0" | "#purple-icon.1" | "#purple-icon.2" | "#purple-icon.3" | "#purple-icon.4" | "#purple-icon.5" | "#purple-icon.6" | "#purple-icon.7" | "#purple-icon.8" | "#purple-icon.9" | "#purple-icon.00" | "#purple-icon.01" | "#purple-icon.02" | "#purple-icon.03" | "#purple-icon.04" | "#purple-icon.05" | "#purple-icon.06" | "#purple-icon.07" | "#purple-icon.08" | "#purple-icon.09" | "#purple-icon.10" | "#purple-icon.11" | "#purple-icon.12" | "#purple-icon.13" | "#purple-icon.14" | "#purple-icon.15" | "#purple-icon.16" | "#purple-icon.17" | "#purple-icon.18" | "#purple-icon.19" | "#purple-icon.20" | "#purple-icon.21" | "#purple-icon.22" | "#purple-icon.23" | "#purple-icon.24" | "#purple-icon.25" | "#purple-icon.26" | "#purple-icon.27" | "#purple-icon.28" | "#purple-icon.29" | "#purple-icon.30" | "#purple-icon.31" | "#purple-icon.32" | "#purple-icon.33" | "#purple-icon.34" | "#purple-icon.35" | "#purple-icon.36" | "#purple-icon.37" | "#purple-icon.38" | "#purple-icon.39" | "#purple-icon.40" | "#purple-icon.41" | "#purple-icon.42" | "#purple-icon.43" | "#purple-icon.44" | "#purple-icon.45" | "#purple-icon.46" | "#purple-icon.47" | "#purple-icon.48" | "#purple-icon.49" | "#purple-icon.50" | "#purple-icon.51" | "#purple-icon.52" | "#purple-icon.53" | "#purple-icon.54" | "#purple-icon.55" | "#purple-icon.56" | "#purple-icon.57" | "#purple-icon.58" | "#purple-icon.59" | "#purple-icon.60" | "#purple-icon.61" | "#purple-icon.62" | "#purple-icon.63" | "#purple-icon.64" | "#purple-icon.65" | "#purple-icon.66" | "#purple-icon.67" | "#purple-icon.68" | "#purple-icon.69" | "#purple-icon.70" | "#purple-icon.71" | "#purple-icon.72" | "#purple-icon.73" | "#purple-icon.74" | "#purple-icon.75" | "#purple-icon.76" | "#purple-icon.77" | "#purple-icon.78" | "#purple-icon.79" | "#purple-icon.80" | "#purple-icon.81" | "#purple-icon.82" | "#purple-icon.83" | "#purple-icon.84" | "#purple-icon.85" | "#purple-icon.86" | "#purple-icon.87" | "#purple-icon.88" | "#purple-icon.89" | "#purple-icon.90" | "#purple-icon.91" | "#purple-icon.92" | "#purple-icon.93" | "#purple-icon.94" | "#purple-icon.95" | "#purple-icon.96" | "#purple-icon.97" | "#purple-icon.98" | "#purple-icon.99" | "#purple-icon.100" | "#purple-bg" | "#purple-bg.0" | "#purple-bg.1" | "#purple-bg.2" | "#purple-bg.3" | "#purple-bg.4" | "#purple-bg.5" | "#purple-bg.6" | "#purple-bg.7" | "#purple-bg.8" | "#purple-bg.9" | "#purple-bg.00" | "#purple-bg.01" | "#purple-bg.02" | "#purple-bg.03" | "#purple-bg.04" | "#purple-bg.05" | "#purple-bg.06" | "#purple-bg.07" | "#purple-bg.08" | "#purple-bg.09" | "#purple-bg.10" | "#purple-bg.11" | "#purple-bg.12" | "#purple-bg.13" | "#purple-bg.14" | "#purple-bg.15" | "#purple-bg.16" | "#purple-bg.17" | "#purple-bg.18" | "#purple-bg.19" | "#purple-bg.20" | "#purple-bg.21" | "#purple-bg.22" | "#purple-bg.23" | "#purple-bg.24" | "#purple-bg.25" | "#purple-bg.26" | "#purple-bg.27" | "#purple-bg.28" | "#purple-bg.29" | "#purple-bg.30" | "#purple-bg.31" | "#purple-bg.32" | "#purple-bg.33" | "#purple-bg.34" | "#purple-bg.35" | "#purple-bg.36" | "#purple-bg.37" | "#purple-bg.38" | "#purple-bg.39" | "#purple-bg.40" | "#purple-bg.41" | "#purple-bg.42" | "#purple-bg.43" | "#purple-bg.44" | "#purple-bg.45" | "#purple-bg.46" | "#purple-bg.47" | "#purple-bg.48" | "#purple-bg.49" | "#purple-bg.50" | "#purple-bg.51" | "#purple-bg.52" | "#purple-bg.53" | "#purple-bg.54" | "#purple-bg.55" | "#purple-bg.56" | "#purple-bg.57" | "#purple-bg.58" | "#purple-bg.59" | "#purple-bg.60" | "#purple-bg.61" | "#purple-bg.62" | "#purple-bg.63" | "#purple-bg.64" | "#purple-bg.65" | "#purple-bg.66" | "#purple-bg.67" | "#purple-bg.68" | "#purple-bg.69" | "#purple-bg.70" | "#purple-bg.71" | "#purple-bg.72" | "#purple-bg.73" | "#purple-bg.74" | "#purple-bg.75" | "#purple-bg.76" | "#purple-bg.77" | "#purple-bg.78" | "#purple-bg.79" | "#purple-bg.80" | "#purple-bg.81" | "#purple-bg.82" | "#purple-bg.83" | "#purple-bg.84" | "#purple-bg.85" | "#purple-bg.86" | "#purple-bg.87" | "#purple-bg.88" | "#purple-bg.89" | "#purple-bg.90" | "#purple-bg.91" | "#purple-bg.92" | "#purple-bg.93" | "#purple-bg.94" | "#purple-bg.95" | "#purple-bg.96" | "#purple-bg.97" | "#purple-bg.98" | "#purple-bg.99" | "#purple-bg.100" | "#purple-01" | "#purple-01.0" | "#purple-01.1" | "#purple-01.2" | "#purple-01.3" | "#purple-01.4" | "#purple-01.5" | "#purple-01.6" | "#purple-01.7" | "#purple-01.8" | "#purple-01.9" | "#purple-01.00" | "#purple-01.01" | "#purple-01.02" | "#purple-01.03" | "#purple-01.04" | "#purple-01.05" | "#purple-01.06" | "#purple-01.07" | "#purple-01.08" | "#purple-01.09" | "#purple-01.10" | "#purple-01.11" | "#purple-01.12" | "#purple-01.13" | "#purple-01.14" | "#purple-01.15" | "#purple-01.16" | "#purple-01.17" | "#purple-01.18" | "#purple-01.19" | "#purple-01.20" | "#purple-01.21" | "#purple-01.22" | "#purple-01.23" | "#purple-01.24" | "#purple-01.25" | "#purple-01.26" | "#purple-01.27" | "#purple-01.28" | "#purple-01.29" | "#purple-01.30" | "#purple-01.31" | "#purple-01.32" | "#purple-01.33" | "#purple-01.34" | "#purple-01.35" | "#purple-01.36" | "#purple-01.37" | "#purple-01.38" | "#purple-01.39" | "#purple-01.40" | "#purple-01.41" | "#purple-01.42" | "#purple-01.43" | "#purple-01.44" | "#purple-01.45" | "#purple-01.46" | "#purple-01.47" | "#purple-01.48" | "#purple-01.49" | "#purple-01.50" | "#purple-01.51" | "#purple-01.52" | "#purple-01.53" | "#purple-01.54" | "#purple-01.55" | "#purple-01.56" | "#purple-01.57" | "#purple-01.58" | "#purple-01.59" | "#purple-01.60" | "#purple-01.61" | "#purple-01.62" | "#purple-01.63" | "#purple-01.64" | "#purple-01.65" | "#purple-01.66" | "#purple-01.67" | "#purple-01.68" | "#purple-01.69" | "#purple-01.70" | "#purple-01.71" | "#purple-01.72" | "#purple-01.73" | "#purple-01.74" | "#purple-01.75" | "#purple-01.76" | "#purple-01.77" | "#purple-01.78" | "#purple-01.79" | "#purple-01.80" | "#purple-01.81" | "#purple-01.82" | "#purple-01.83" | "#purple-01.84" | "#purple-01.85" | "#purple-01.86" | "#purple-01.87" | "#purple-01.88" | "#purple-01.89" | "#purple-01.90" | "#purple-01.91" | "#purple-01.92" | "#purple-01.93" | "#purple-01.94" | "#purple-01.95" | "#purple-01.96" | "#purple-01.97" | "#purple-01.98" | "#purple-01.99" | "#purple-01.100" | "#purple-02" | "#purple-02.0" | "#purple-02.1" | "#purple-02.2" | "#purple-02.3" | "#purple-02.4" | "#purple-02.5" | "#purple-02.6" | "#purple-02.7" | "#purple-02.8" | "#purple-02.9" | "#purple-02.00" | "#purple-02.01" | "#purple-02.02" | "#purple-02.03" | "#purple-02.04" | "#purple-02.05" | "#purple-02.06" | "#purple-02.07" | "#purple-02.08" | "#purple-02.09" | "#purple-02.10" | "#purple-02.11" | "#purple-02.12" | "#purple-02.13" | "#purple-02.14" | "#purple-02.15" | "#purple-02.16" | "#purple-02.17" | "#purple-02.18" | "#purple-02.19" | "#purple-02.20" | "#purple-02.21" | "#purple-02.22" | "#purple-02.23" | "#purple-02.24" | "#purple-02.25" | "#purple-02.26" | "#purple-02.27" | "#purple-02.28" | "#purple-02.29" | "#purple-02.30" | "#purple-02.31" | "#purple-02.32" | "#purple-02.33" | "#purple-02.34" | "#purple-02.35" | "#purple-02.36" | "#purple-02.37" | "#purple-02.38" | "#purple-02.39" | "#purple-02.40" | "#purple-02.41" | "#purple-02.42" | "#purple-02.43" | "#purple-02.44" | "#purple-02.45" | "#purple-02.46" | "#purple-02.47" | "#purple-02.48" | "#purple-02.49" | "#purple-02.50" | "#purple-02.51" | "#purple-02.52" | "#purple-02.53" | "#purple-02.54" | "#purple-02.55" | "#purple-02.56" | "#purple-02.57" | "#purple-02.58" | "#purple-02.59" | "#purple-02.60" | "#purple-02.61" | "#purple-02.62" | "#purple-02.63" | "#purple-02.64" | "#purple-02.65" | "#purple-02.66" | "#purple-02.67" | "#purple-02.68" | "#purple-02.69" | "#purple-02.70" | "#purple-02.71" | "#purple-02.72" | "#purple-02.73" | "#purple-02.74" | "#purple-02.75" | "#purple-02.76" | "#purple-02.77" | "#purple-02.78" | "#purple-02.79" | "#purple-02.80" | "#purple-02.81" | "#purple-02.82" | "#purple-02.83" | "#purple-02.84" | "#purple-02.85" | "#purple-02.86" | "#purple-02.87" | "#purple-02.88" | "#purple-02.89" | "#purple-02.90" | "#purple-02.91" | "#purple-02.92" | "#purple-02.93" | "#purple-02.94" | "#purple-02.95" | "#purple-02.96" | "#purple-02.97" | "#purple-02.98" | "#purple-02.99" | "#purple-02.100" | "#purple-03" | "#purple-03.0" | "#purple-03.1" | "#purple-03.2" | "#purple-03.3" | "#purple-03.4" | "#purple-03.5" | "#purple-03.6" | "#purple-03.7" | "#purple-03.8" | "#purple-03.9" | "#purple-03.00" | "#purple-03.01" | "#purple-03.02" | "#purple-03.03" | "#purple-03.04" | "#purple-03.05" | "#purple-03.06" | "#purple-03.07" | "#purple-03.08" | "#purple-03.09" | "#purple-03.10" | "#purple-03.11" | "#purple-03.12" | "#purple-03.13" | "#purple-03.14" | "#purple-03.15" | "#purple-03.16" | "#purple-03.17" | "#purple-03.18" | "#purple-03.19" | "#purple-03.20" | "#purple-03.21" | "#purple-03.22" | "#purple-03.23" | "#purple-03.24" | "#purple-03.25" | "#purple-03.26" | "#purple-03.27" | "#purple-03.28" | "#purple-03.29" | "#purple-03.30" | "#purple-03.31" | "#purple-03.32" | "#purple-03.33" | "#purple-03.34" | "#purple-03.35" | "#purple-03.36" | "#purple-03.37" | "#purple-03.38" | "#purple-03.39" | "#purple-03.40" | "#purple-03.41" | "#purple-03.42" | "#purple-03.43" | "#purple-03.44" | "#purple-03.45" | "#purple-03.46" | "#purple-03.47" | "#purple-03.48" | "#purple-03.49" | "#purple-03.50" | "#purple-03.51" | "#purple-03.52" | "#purple-03.53" | "#purple-03.54" | "#purple-03.55" | "#purple-03.56" | "#purple-03.57" | "#purple-03.58" | "#purple-03.59" | "#purple-03.60" | "#purple-03.61" | "#purple-03.62" | "#purple-03.63" | "#purple-03.64" | "#purple-03.65" | "#purple-03.66" | "#purple-03.67" | "#purple-03.68" | "#purple-03.69" | "#purple-03.70" | "#purple-03.71" | "#purple-03.72" | "#purple-03.73" | "#purple-03.74" | "#purple-03.75" | "#purple-03.76" | "#purple-03.77" | "#purple-03.78" | "#purple-03.79" | "#purple-03.80" | "#purple-03.81" | "#purple-03.82" | "#purple-03.83" | "#purple-03.84" | "#purple-03.85" | "#purple-03.86" | "#purple-03.87" | "#purple-03.88" | "#purple-03.89" | "#purple-03.90" | "#purple-03.91" | "#purple-03.92" | "#purple-03.93" | "#purple-03.94" | "#purple-03.95" | "#purple-03.96" | "#purple-03.97" | "#purple-03.98" | "#purple-03.99" | "#purple-03.100" | "#purple-04" | "#purple-04.0" | "#purple-04.1" | "#purple-04.2" | "#purple-04.3" | "#purple-04.4" | "#purple-04.5" | "#purple-04.6" | "#purple-04.7" | "#purple-04.8" | "#purple-04.9" | "#purple-04.00" | "#purple-04.01" | "#purple-04.02" | "#purple-04.03" | "#purple-04.04" | "#purple-04.05" | "#purple-04.06" | "#purple-04.07" | "#purple-04.08" | "#purple-04.09" | "#purple-04.10" | "#purple-04.11" | "#purple-04.12" | "#purple-04.13" | "#purple-04.14" | "#purple-04.15" | "#purple-04.16" | "#purple-04.17" | "#purple-04.18" | "#purple-04.19" | "#purple-04.20" | "#purple-04.21" | "#purple-04.22" | "#purple-04.23" | "#purple-04.24" | "#purple-04.25" | "#purple-04.26" | "#purple-04.27" | "#purple-04.28" | "#purple-04.29" | "#purple-04.30" | "#purple-04.31" | "#purple-04.32" | "#purple-04.33" | "#purple-04.34" | "#purple-04.35" | "#purple-04.36" | "#purple-04.37" | "#purple-04.38" | "#purple-04.39" | "#purple-04.40" | "#purple-04.41" | "#purple-04.42" | "#purple-04.43" | "#purple-04.44" | "#purple-04.45" | "#purple-04.46" | "#purple-04.47" | "#purple-04.48" | "#purple-04.49" | "#purple-04.50" | "#purple-04.51" | "#purple-04.52" | "#purple-04.53" | "#purple-04.54" | "#purple-04.55" | "#purple-04.56" | "#purple-04.57" | "#purple-04.58" | "#purple-04.59" | "#purple-04.60" | "#purple-04.61" | "#purple-04.62" | "#purple-04.63" | "#purple-04.64" | "#purple-04.65" | "#purple-04.66" | "#purple-04.67" | "#purple-04.68" | "#purple-04.69" | "#purple-04.70" | "#purple-04.71" | "#purple-04.72" | "#purple-04.73" | "#purple-04.74" | "#purple-04.75" | "#purple-04.76" | "#purple-04.77" | "#purple-04.78" | "#purple-04.79" | "#purple-04.80" | "#purple-04.81" | "#purple-04.82" | "#purple-04.83" | "#purple-04.84" | "#purple-04.85" | "#purple-04.86" | "#purple-04.87" | "#purple-04.88" | "#purple-04.89" | "#purple-04.90" | "#purple-04.91" | "#purple-04.92" | "#purple-04.93" | "#purple-04.94" | "#purple-04.95" | "#purple-04.96" | "#purple-04.97" | "#purple-04.98" | "#purple-04.99" | "#purple-04.100" | "#dark" | "#dark.0" | "#dark.1" | "#dark.2" | "#dark.3" | "#dark.4" | "#dark.5" | "#dark.6" | "#dark.7" | "#dark.8" | "#dark.9" | "#dark.00" | "#dark.01" | "#dark.02" | "#dark.03" | "#dark.04" | "#dark.05" | "#dark.06" | "#dark.07" | "#dark.08" | "#dark.09" | "#dark.10" | "#dark.11" | "#dark.12" | "#dark.13" | "#dark.14" | "#dark.15" | "#dark.16" | "#dark.17" | "#dark.18" | "#dark.19" | "#dark.20" | "#dark.21" | "#dark.22" | "#dark.23" | "#dark.24" | "#dark.25" | "#dark.26" | "#dark.27" | "#dark.28" | "#dark.29" | "#dark.30" | "#dark.31" | "#dark.32" | "#dark.33" | "#dark.34" | "#dark.35" | "#dark.36" | "#dark.37" | "#dark.38" | "#dark.39" | "#dark.40" | "#dark.41" | "#dark.42" | "#dark.43" | "#dark.44" | "#dark.45" | "#dark.46" | "#dark.47" | "#dark.48" | "#dark.49" | "#dark.50" | "#dark.51" | "#dark.52" | "#dark.53" | "#dark.54" | "#dark.55" | "#dark.56" | "#dark.57" | "#dark.58" | "#dark.59" | "#dark.60" | "#dark.61" | "#dark.62" | "#dark.63" | "#dark.64" | "#dark.65" | "#dark.66" | "#dark.67" | "#dark.68" | "#dark.69" | "#dark.70" | "#dark.71" | "#dark.72" | "#dark.73" | "#dark.74" | "#dark.75" | "#dark.76" | "#dark.77" | "#dark.78" | "#dark.79" | "#dark.80" | "#dark.81" | "#dark.82" | "#dark.83" | "#dark.84" | "#dark.85" | "#dark.86" | "#dark.87" | "#dark.88" | "#dark.89" | "#dark.90" | "#dark.91" | "#dark.92" | "#dark.93" | "#dark.94" | "#dark.95" | "#dark.96" | "#dark.97" | "#dark.98" | "#dark.99" | "#dark.100" | "#dark-01" | "#dark-01.0" | "#dark-01.1" | "#dark-01.2" | "#dark-01.3" | "#dark-01.4" | "#dark-01.5" | "#dark-01.6" | "#dark-01.7" | "#dark-01.8" | "#dark-01.9" | "#dark-01.00" | "#dark-01.01" | "#dark-01.02" | "#dark-01.03" | "#dark-01.04" | "#dark-01.05" | "#dark-01.06" | "#dark-01.07" | "#dark-01.08" | "#dark-01.09" | "#dark-01.10" | "#dark-01.11" | "#dark-01.12" | "#dark-01.13" | "#dark-01.14" | "#dark-01.15" | "#dark-01.16" | "#dark-01.17" | "#dark-01.18" | "#dark-01.19" | "#dark-01.20" | "#dark-01.21" | "#dark-01.22" | "#dark-01.23" | "#dark-01.24" | "#dark-01.25" | "#dark-01.26" | "#dark-01.27" | "#dark-01.28" | "#dark-01.29" | "#dark-01.30" | "#dark-01.31" | "#dark-01.32" | "#dark-01.33" | "#dark-01.34" | "#dark-01.35" | "#dark-01.36" | "#dark-01.37" | "#dark-01.38" | "#dark-01.39" | "#dark-01.40" | "#dark-01.41" | "#dark-01.42" | "#dark-01.43" | "#dark-01.44" | "#dark-01.45" | "#dark-01.46" | "#dark-01.47" | "#dark-01.48" | "#dark-01.49" | "#dark-01.50" | "#dark-01.51" | "#dark-01.52" | "#dark-01.53" | "#dark-01.54" | "#dark-01.55" | "#dark-01.56" | "#dark-01.57" | "#dark-01.58" | "#dark-01.59" | "#dark-01.60" | "#dark-01.61" | "#dark-01.62" | "#dark-01.63" | "#dark-01.64" | "#dark-01.65" | "#dark-01.66" | "#dark-01.67" | "#dark-01.68" | "#dark-01.69" | "#dark-01.70" | "#dark-01.71" | "#dark-01.72" | "#dark-01.73" | "#dark-01.74" | "#dark-01.75" | "#dark-01.76" | "#dark-01.77" | "#dark-01.78" | "#dark-01.79" | "#dark-01.80" | "#dark-01.81" | "#dark-01.82" | "#dark-01.83" | "#dark-01.84" | "#dark-01.85" | "#dark-01.86" | "#dark-01.87" | "#dark-01.88" | "#dark-01.89" | "#dark-01.90" | "#dark-01.91" | "#dark-01.92" | "#dark-01.93" | "#dark-01.94" | "#dark-01.95" | "#dark-01.96" | "#dark-01.97" | "#dark-01.98" | "#dark-01.99" | "#dark-01.100" | "#dark-02" | "#dark-02.0" | "#dark-02.1" | "#dark-02.2" | "#dark-02.3" | "#dark-02.4" | "#dark-02.5" | "#dark-02.6" | "#dark-02.7" | "#dark-02.8" | "#dark-02.9" | "#dark-02.00" | "#dark-02.01" | "#dark-02.02" | "#dark-02.03" | "#dark-02.04" | "#dark-02.05" | "#dark-02.06" | "#dark-02.07" | "#dark-02.08" | "#dark-02.09" | "#dark-02.10" | "#dark-02.11" | "#dark-02.12" | "#dark-02.13" | "#dark-02.14" | "#dark-02.15" | "#dark-02.16" | "#dark-02.17" | "#dark-02.18" | "#dark-02.19" | "#dark-02.20" | "#dark-02.21" | "#dark-02.22" | "#dark-02.23" | "#dark-02.24" | "#dark-02.25" | "#dark-02.26" | "#dark-02.27" | "#dark-02.28" | "#dark-02.29" | "#dark-02.30" | "#dark-02.31" | "#dark-02.32" | "#dark-02.33" | "#dark-02.34" | "#dark-02.35" | "#dark-02.36" | "#dark-02.37" | "#dark-02.38" | "#dark-02.39" | "#dark-02.40" | "#dark-02.41" | "#dark-02.42" | "#dark-02.43" | "#dark-02.44" | "#dark-02.45" | "#dark-02.46" | "#dark-02.47" | "#dark-02.48" | "#dark-02.49" | "#dark-02.50" | "#dark-02.51" | "#dark-02.52" | "#dark-02.53" | "#dark-02.54" | "#dark-02.55" | "#dark-02.56" | "#dark-02.57" | "#dark-02.58" | "#dark-02.59" | "#dark-02.60" | "#dark-02.61" | "#dark-02.62" | "#dark-02.63" | "#dark-02.64" | "#dark-02.65" | "#dark-02.66" | "#dark-02.67" | "#dark-02.68" | "#dark-02.69" | "#dark-02.70" | "#dark-02.71" | "#dark-02.72" | "#dark-02.73" | "#dark-02.74" | "#dark-02.75" | "#dark-02.76" | "#dark-02.77" | "#dark-02.78" | "#dark-02.79" | "#dark-02.80" | "#dark-02.81" | "#dark-02.82" | "#dark-02.83" | "#dark-02.84" | "#dark-02.85" | "#dark-02.86" | "#dark-02.87" | "#dark-02.88" | "#dark-02.89" | "#dark-02.90" | "#dark-02.91" | "#dark-02.92" | "#dark-02.93" | "#dark-02.94" | "#dark-02.95" | "#dark-02.96" | "#dark-02.97" | "#dark-02.98" | "#dark-02.99" | "#dark-02.100" | "#dark-03" | "#dark-03.0" | "#dark-03.1" | "#dark-03.2" | "#dark-03.3" | "#dark-03.4" | "#dark-03.5" | "#dark-03.6" | "#dark-03.7" | "#dark-03.8" | "#dark-03.9" | "#dark-03.00" | "#dark-03.01" | "#dark-03.02" | "#dark-03.03" | "#dark-03.04" | "#dark-03.05" | "#dark-03.06" | "#dark-03.07" | "#dark-03.08" | "#dark-03.09" | "#dark-03.10" | "#dark-03.11" | "#dark-03.12" | "#dark-03.13" | "#dark-03.14" | "#dark-03.15" | "#dark-03.16" | "#dark-03.17" | "#dark-03.18" | "#dark-03.19" | "#dark-03.20" | "#dark-03.21" | "#dark-03.22" | "#dark-03.23" | "#dark-03.24" | "#dark-03.25" | "#dark-03.26" | "#dark-03.27" | "#dark-03.28" | "#dark-03.29" | "#dark-03.30" | "#dark-03.31" | "#dark-03.32" | "#dark-03.33" | "#dark-03.34" | "#dark-03.35" | "#dark-03.36" | "#dark-03.37" | "#dark-03.38" | "#dark-03.39" | "#dark-03.40" | "#dark-03.41" | "#dark-03.42" | "#dark-03.43" | "#dark-03.44" | "#dark-03.45" | "#dark-03.46" | "#dark-03.47" | "#dark-03.48" | "#dark-03.49" | "#dark-03.50" | "#dark-03.51" | "#dark-03.52" | "#dark-03.53" | "#dark-03.54" | "#dark-03.55" | "#dark-03.56" | "#dark-03.57" | "#dark-03.58" | "#dark-03.59" | "#dark-03.60" | "#dark-03.61" | "#dark-03.62" | "#dark-03.63" | "#dark-03.64" | "#dark-03.65" | "#dark-03.66" | "#dark-03.67" | "#dark-03.68" | "#dark-03.69" | "#dark-03.70" | "#dark-03.71" | "#dark-03.72" | "#dark-03.73" | "#dark-03.74" | "#dark-03.75" | "#dark-03.76" | "#dark-03.77" | "#dark-03.78" | "#dark-03.79" | "#dark-03.80" | "#dark-03.81" | "#dark-03.82" | "#dark-03.83" | "#dark-03.84" | "#dark-03.85" | "#dark-03.86" | "#dark-03.87" | "#dark-03.88" | "#dark-03.89" | "#dark-03.90" | "#dark-03.91" | "#dark-03.92" | "#dark-03.93" | "#dark-03.94" | "#dark-03.95" | "#dark-03.96" | "#dark-03.97" | "#dark-03.98" | "#dark-03.99" | "#dark-03.100" | "#dark-04" | "#dark-04.0" | "#dark-04.1" | "#dark-04.2" | "#dark-04.3" | "#dark-04.4" | "#dark-04.5" | "#dark-04.6" | "#dark-04.7" | "#dark-04.8" | "#dark-04.9" | "#dark-04.00" | "#dark-04.01" | "#dark-04.02" | "#dark-04.03" | "#dark-04.04" | "#dark-04.05" | "#dark-04.06" | "#dark-04.07" | "#dark-04.08" | "#dark-04.09" | "#dark-04.10" | "#dark-04.11" | "#dark-04.12" | "#dark-04.13" | "#dark-04.14" | "#dark-04.15" | "#dark-04.16" | "#dark-04.17" | "#dark-04.18" | "#dark-04.19" | "#dark-04.20" | "#dark-04.21" | "#dark-04.22" | "#dark-04.23" | "#dark-04.24" | "#dark-04.25" | "#dark-04.26" | "#dark-04.27" | "#dark-04.28" | "#dark-04.29" | "#dark-04.30" | "#dark-04.31" | "#dark-04.32" | "#dark-04.33" | "#dark-04.34" | "#dark-04.35" | "#dark-04.36" | "#dark-04.37" | "#dark-04.38" | "#dark-04.39" | "#dark-04.40" | "#dark-04.41" | "#dark-04.42" | "#dark-04.43" | "#dark-04.44" | "#dark-04.45" | "#dark-04.46" | "#dark-04.47" | "#dark-04.48" | "#dark-04.49" | "#dark-04.50" | "#dark-04.51" | "#dark-04.52" | "#dark-04.53" | "#dark-04.54" | "#dark-04.55" | "#dark-04.56" | "#dark-04.57" | "#dark-04.58" | "#dark-04.59" | "#dark-04.60" | "#dark-04.61" | "#dark-04.62" | "#dark-04.63" | "#dark-04.64" | "#dark-04.65" | "#dark-04.66" | "#dark-04.67" | "#dark-04.68" | "#dark-04.69" | "#dark-04.70" | "#dark-04.71" | "#dark-04.72" | "#dark-04.73" | "#dark-04.74" | "#dark-04.75" | "#dark-04.76" | "#dark-04.77" | "#dark-04.78" | "#dark-04.79" | "#dark-04.80" | "#dark-04.81" | "#dark-04.82" | "#dark-04.83" | "#dark-04.84" | "#dark-04.85" | "#dark-04.86" | "#dark-04.87" | "#dark-04.88" | "#dark-04.89" | "#dark-04.90" | "#dark-04.91" | "#dark-04.92" | "#dark-04.93" | "#dark-04.94" | "#dark-04.95" | "#dark-04.96" | "#dark-04.97" | "#dark-04.98" | "#dark-04.99" | "#dark-04.100" | "#dark-05" | "#dark-05.0" | "#dark-05.1" | "#dark-05.2" | "#dark-05.3" | "#dark-05.4" | "#dark-05.5" | "#dark-05.6" | "#dark-05.7" | "#dark-05.8" | "#dark-05.9" | "#dark-05.00" | "#dark-05.01" | "#dark-05.02" | "#dark-05.03" | "#dark-05.04" | "#dark-05.05" | "#dark-05.06" | "#dark-05.07" | "#dark-05.08" | "#dark-05.09" | "#dark-05.10" | "#dark-05.11" | "#dark-05.12" | "#dark-05.13" | "#dark-05.14" | "#dark-05.15" | "#dark-05.16" | "#dark-05.17" | "#dark-05.18" | "#dark-05.19" | "#dark-05.20" | "#dark-05.21" | "#dark-05.22" | "#dark-05.23" | "#dark-05.24" | "#dark-05.25" | "#dark-05.26" | "#dark-05.27" | "#dark-05.28" | "#dark-05.29" | "#dark-05.30" | "#dark-05.31" | "#dark-05.32" | "#dark-05.33" | "#dark-05.34" | "#dark-05.35" | "#dark-05.36" | "#dark-05.37" | "#dark-05.38" | "#dark-05.39" | "#dark-05.40" | "#dark-05.41" | "#dark-05.42" | "#dark-05.43" | "#dark-05.44" | "#dark-05.45" | "#dark-05.46" | "#dark-05.47" | "#dark-05.48" | "#dark-05.49" | "#dark-05.50" | "#dark-05.51" | "#dark-05.52" | "#dark-05.53" | "#dark-05.54" | "#dark-05.55" | "#dark-05.56" | "#dark-05.57" | "#dark-05.58" | "#dark-05.59" | "#dark-05.60" | "#dark-05.61" | "#dark-05.62" | "#dark-05.63" | "#dark-05.64" | "#dark-05.65" | "#dark-05.66" | "#dark-05.67" | "#dark-05.68" | "#dark-05.69" | "#dark-05.70" | "#dark-05.71" | "#dark-05.72" | "#dark-05.73" | "#dark-05.74" | "#dark-05.75" | "#dark-05.76" | "#dark-05.77" | "#dark-05.78" | "#dark-05.79" | "#dark-05.80" | "#dark-05.81" | "#dark-05.82" | "#dark-05.83" | "#dark-05.84" | "#dark-05.85" | "#dark-05.86" | "#dark-05.87" | "#dark-05.88" | "#dark-05.89" | "#dark-05.90" | "#dark-05.91" | "#dark-05.92" | "#dark-05.93" | "#dark-05.94" | "#dark-05.95" | "#dark-05.96" | "#dark-05.97" | "#dark-05.98" | "#dark-05.99" | "#dark-05.100" | "#dark-bg" | "#dark-bg.0" | "#dark-bg.1" | "#dark-bg.2" | "#dark-bg.3" | "#dark-bg.4" | "#dark-bg.5" | "#dark-bg.6" | "#dark-bg.7" | "#dark-bg.8" | "#dark-bg.9" | "#dark-bg.00" | "#dark-bg.01" | "#dark-bg.02" | "#dark-bg.03" | "#dark-bg.04" | "#dark-bg.05" | "#dark-bg.06" | "#dark-bg.07" | "#dark-bg.08" | "#dark-bg.09" | "#dark-bg.10" | "#dark-bg.11" | "#dark-bg.12" | "#dark-bg.13" | "#dark-bg.14" | "#dark-bg.15" | "#dark-bg.16" | "#dark-bg.17" | "#dark-bg.18" | "#dark-bg.19" | "#dark-bg.20" | "#dark-bg.21" | "#dark-bg.22" | "#dark-bg.23" | "#dark-bg.24" | "#dark-bg.25" | "#dark-bg.26" | "#dark-bg.27" | "#dark-bg.28" | "#dark-bg.29" | "#dark-bg.30" | "#dark-bg.31" | "#dark-bg.32" | "#dark-bg.33" | "#dark-bg.34" | "#dark-bg.35" | "#dark-bg.36" | "#dark-bg.37" | "#dark-bg.38" | "#dark-bg.39" | "#dark-bg.40" | "#dark-bg.41" | "#dark-bg.42" | "#dark-bg.43" | "#dark-bg.44" | "#dark-bg.45" | "#dark-bg.46" | "#dark-bg.47" | "#dark-bg.48" | "#dark-bg.49" | "#dark-bg.50" | "#dark-bg.51" | "#dark-bg.52" | "#dark-bg.53" | "#dark-bg.54" | "#dark-bg.55" | "#dark-bg.56" | "#dark-bg.57" | "#dark-bg.58" | "#dark-bg.59" | "#dark-bg.60" | "#dark-bg.61" | "#dark-bg.62" | "#dark-bg.63" | "#dark-bg.64" | "#dark-bg.65" | "#dark-bg.66" | "#dark-bg.67" | "#dark-bg.68" | "#dark-bg.69" | "#dark-bg.70" | "#dark-bg.71" | "#dark-bg.72" | "#dark-bg.73" | "#dark-bg.74" | "#dark-bg.75" | "#dark-bg.76" | "#dark-bg.77" | "#dark-bg.78" | "#dark-bg.79" | "#dark-bg.80" | "#dark-bg.81" | "#dark-bg.82" | "#dark-bg.83" | "#dark-bg.84" | "#dark-bg.85" | "#dark-bg.86" | "#dark-bg.87" | "#dark-bg.88" | "#dark-bg.89" | "#dark-bg.90" | "#dark-bg.91" | "#dark-bg.92" | "#dark-bg.93" | "#dark-bg.94" | "#dark-bg.95" | "#dark-bg.96" | "#dark-bg.97" | "#dark-bg.98" | "#dark-bg.99" | "#dark-bg.100" | "#text" | "#text.0" | "#text.1" | "#text.2" | "#text.3" | "#text.4" | "#text.5" | "#text.6" | "#text.7" | "#text.8" | "#text.9" | "#text.00" | "#text.01" | "#text.02" | "#text.03" | "#text.04" | "#text.05" | "#text.06" | "#text.07" | "#text.08" | "#text.09" | "#text.10" | "#text.11" | "#text.12" | "#text.13" | "#text.14" | "#text.15" | "#text.16" | "#text.17" | "#text.18" | "#text.19" | "#text.20" | "#text.21" | "#text.22" | "#text.23" | "#text.24" | "#text.25" | "#text.26" | "#text.27" | "#text.28" | "#text.29" | "#text.30" | "#text.31" | "#text.32" | "#text.33" | "#text.34" | "#text.35" | "#text.36" | "#text.37" | "#text.38" | "#text.39" | "#text.40" | "#text.41" | "#text.42" | "#text.43" | "#text.44" | "#text.45" | "#text.46" | "#text.47" | "#text.48" | "#text.49" | "#text.50" | "#text.51" | "#text.52" | "#text.53" | "#text.54" | "#text.55" | "#text.56" | "#text.57" | "#text.58" | "#text.59" | "#text.60" | "#text.61" | "#text.62" | "#text.63" | "#text.64" | "#text.65" | "#text.66" | "#text.67" | "#text.68" | "#text.69" | "#text.70" | "#text.71" | "#text.72" | "#text.73" | "#text.74" | "#text.75" | "#text.76" | "#text.77" | "#text.78" | "#text.79" | "#text.80" | "#text.81" | "#text.82" | "#text.83" | "#text.84" | "#text.85" | "#text.86" | "#text.87" | "#text.88" | "#text.89" | "#text.90" | "#text.91" | "#text.92" | "#text.93" | "#text.94" | "#text.95" | "#text.96" | "#text.97" | "#text.98" | "#text.99" | "#text.100" | "#primary" | "#primary.0" | "#primary.1" | "#primary.2" | "#primary.3" | "#primary.4" | "#primary.5" | "#primary.6" | "#primary.7" | "#primary.8" | "#primary.9" | "#primary.00" | "#primary.01" | "#primary.02" | "#primary.03" | "#primary.04" | "#primary.05" | "#primary.06" | "#primary.07" | "#primary.08" | "#primary.09" | "#primary.10" | "#primary.11" | "#primary.12" | "#primary.13" | "#primary.14" | "#primary.15" | "#primary.16" | "#primary.17" | "#primary.18" | "#primary.19" | "#primary.20" | "#primary.21" | "#primary.22" | "#primary.23" | "#primary.24" | "#primary.25" | "#primary.26" | "#primary.27" | "#primary.28" | "#primary.29" | "#primary.30" | "#primary.31" | "#primary.32" | "#primary.33" | "#primary.34" | "#primary.35" | "#primary.36" | "#primary.37" | "#primary.38" | "#primary.39" | "#primary.40" | "#primary.41" | "#primary.42" | "#primary.43" | "#primary.44" | "#primary.45" | "#primary.46" | "#primary.47" | "#primary.48" | "#primary.49" | "#primary.50" | "#primary.51" | "#primary.52" | "#primary.53" | "#primary.54" | "#primary.55" | "#primary.56" | "#primary.57" | "#primary.58" | "#primary.59" | "#primary.60" | "#primary.61" | "#primary.62" | "#primary.63" | "#primary.64" | "#primary.65" | "#primary.66" | "#primary.67" | "#primary.68" | "#primary.69" | "#primary.70" | "#primary.71" | "#primary.72" | "#primary.73" | "#primary.74" | "#primary.75" | "#primary.76" | "#primary.77" | "#primary.78" | "#primary.79" | "#primary.80" | "#primary.81" | "#primary.82" | "#primary.83" | "#primary.84" | "#primary.85" | "#primary.86" | "#primary.87" | "#primary.88" | "#primary.89" | "#primary.90" | "#primary.91" | "#primary.92" | "#primary.93" | "#primary.94" | "#primary.95" | "#primary.96" | "#primary.97" | "#primary.98" | "#primary.99" | "#primary.100" | "#disabled" | "#disabled.0" | "#disabled.1" | "#disabled.2" | "#disabled.3" | "#disabled.4" | "#disabled.5" | "#disabled.6" | "#disabled.7" | "#disabled.8" | "#disabled.9" | "#disabled.00" | "#disabled.01" | "#disabled.02" | "#disabled.03" | "#disabled.04" | "#disabled.05" | "#disabled.06" | "#disabled.07" | "#disabled.08" | "#disabled.09" | "#disabled.10" | "#disabled.11" | "#disabled.12" | "#disabled.13" | "#disabled.14" | "#disabled.15" | "#disabled.16" | "#disabled.17" | "#disabled.18" | "#disabled.19" | "#disabled.20" | "#disabled.21" | "#disabled.22" | "#disabled.23" | "#disabled.24" | "#disabled.25" | "#disabled.26" | "#disabled.27" | "#disabled.28" | "#disabled.29" | "#disabled.30" | "#disabled.31" | "#disabled.32" | "#disabled.33" | "#disabled.34" | "#disabled.35" | "#disabled.36" | "#disabled.37" | "#disabled.38" | "#disabled.39" | "#disabled.40" | "#disabled.41" | "#disabled.42" | "#disabled.43" | "#disabled.44" | "#disabled.45" | "#disabled.46" | "#disabled.47" | "#disabled.48" | "#disabled.49" | "#disabled.50" | "#disabled.51" | "#disabled.52" | "#disabled.53" | "#disabled.54" | "#disabled.55" | "#disabled.56" | "#disabled.57" | "#disabled.58" | "#disabled.59" | "#disabled.60" | "#disabled.61" | "#disabled.62" | "#disabled.63" | "#disabled.64" | "#disabled.65" | "#disabled.66" | "#disabled.67" | "#disabled.68" | "#disabled.69" | "#disabled.70" | "#disabled.71" | "#disabled.72" | "#disabled.73" | "#disabled.74" | "#disabled.75" | "#disabled.76" | "#disabled.77" | "#disabled.78" | "#disabled.79" | "#disabled.80" | "#disabled.81" | "#disabled.82" | "#disabled.83" | "#disabled.84" | "#disabled.85" | "#disabled.86" | "#disabled.87" | "#disabled.88" | "#disabled.89" | "#disabled.90" | "#disabled.91" | "#disabled.92" | "#disabled.93" | "#disabled.94" | "#disabled.95" | "#disabled.96" | "#disabled.97" | "#disabled.98" | "#disabled.99" | "#disabled.100" | "#disabled-bg" | "#disabled-bg.0" | "#disabled-bg.1" | "#disabled-bg.2" | "#disabled-bg.3" | "#disabled-bg.4" | "#disabled-bg.5" | "#disabled-bg.6" | "#disabled-bg.7" | "#disabled-bg.8" | "#disabled-bg.9" | "#disabled-bg.00" | "#disabled-bg.01" | "#disabled-bg.02" | "#disabled-bg.03" | "#disabled-bg.04" | "#disabled-bg.05" | "#disabled-bg.06" | "#disabled-bg.07" | "#disabled-bg.08" | "#disabled-bg.09" | "#disabled-bg.10" | "#disabled-bg.11" | "#disabled-bg.12" | "#disabled-bg.13" | "#disabled-bg.14" | "#disabled-bg.15" | "#disabled-bg.16" | "#disabled-bg.17" | "#disabled-bg.18" | "#disabled-bg.19" | "#disabled-bg.20" | "#disabled-bg.21" | "#disabled-bg.22" | "#disabled-bg.23" | "#disabled-bg.24" | "#disabled-bg.25" | "#disabled-bg.26" | "#disabled-bg.27" | "#disabled-bg.28" | "#disabled-bg.29" | "#disabled-bg.30" | "#disabled-bg.31" | "#disabled-bg.32" | "#disabled-bg.33" | "#disabled-bg.34" | "#disabled-bg.35" | "#disabled-bg.36" | "#disabled-bg.37" | "#disabled-bg.38" | "#disabled-bg.39" | "#disabled-bg.40" | "#disabled-bg.41" | "#disabled-bg.42" | "#disabled-bg.43" | "#disabled-bg.44" | "#disabled-bg.45" | "#disabled-bg.46" | "#disabled-bg.47" | "#disabled-bg.48" | "#disabled-bg.49" | "#disabled-bg.50" | "#disabled-bg.51" | "#disabled-bg.52" | "#disabled-bg.53" | "#disabled-bg.54" | "#disabled-bg.55" | "#disabled-bg.56" | "#disabled-bg.57" | "#disabled-bg.58" | "#disabled-bg.59" | "#disabled-bg.60" | "#disabled-bg.61" | "#disabled-bg.62" | "#disabled-bg.63" | "#disabled-bg.64" | "#disabled-bg.65" | "#disabled-bg.66" | "#disabled-bg.67" | "#disabled-bg.68" | "#disabled-bg.69" | "#disabled-bg.70" | "#disabled-bg.71" | "#disabled-bg.72" | "#disabled-bg.73" | "#disabled-bg.74" | "#disabled-bg.75" | "#disabled-bg.76" | "#disabled-bg.77" | "#disabled-bg.78" | "#disabled-bg.79" | "#disabled-bg.80" | "#disabled-bg.81" | "#disabled-bg.82" | "#disabled-bg.83" | "#disabled-bg.84" | "#disabled-bg.85" | "#disabled-bg.86" | "#disabled-bg.87" | "#disabled-bg.88" | "#disabled-bg.89" | "#disabled-bg.90" | "#disabled-bg.91" | "#disabled-bg.92" | "#disabled-bg.93" | "#disabled-bg.94" | "#disabled-bg.95" | "#disabled-bg.96" | "#disabled-bg.97" | "#disabled-bg.98" | "#disabled-bg.99" | "#disabled-bg.100" | "#disabled-text" | "#disabled-text.0" | "#disabled-text.1" | "#disabled-text.2" | "#disabled-text.3" | "#disabled-text.4" | "#disabled-text.5" | "#disabled-text.6" | "#disabled-text.7" | "#disabled-text.8" | "#disabled-text.9" | "#disabled-text.00" | "#disabled-text.01" | "#disabled-text.02" | "#disabled-text.03" | "#disabled-text.04" | "#disabled-text.05" | "#disabled-text.06" | "#disabled-text.07" | "#disabled-text.08" | "#disabled-text.09" | "#disabled-text.10" | "#disabled-text.11" | "#disabled-text.12" | "#disabled-text.13" | "#disabled-text.14" | "#disabled-text.15" | "#disabled-text.16" | "#disabled-text.17" | "#disabled-text.18" | "#disabled-text.19" | "#disabled-text.20" | "#disabled-text.21" | "#disabled-text.22" | "#disabled-text.23" | "#disabled-text.24" | "#disabled-text.25" | "#disabled-text.26" | "#disabled-text.27" | "#disabled-text.28" | "#disabled-text.29" | "#disabled-text.30" | "#disabled-text.31" | "#disabled-text.32" | "#disabled-text.33" | "#disabled-text.34" | "#disabled-text.35" | "#disabled-text.36" | "#disabled-text.37" | "#disabled-text.38" | "#disabled-text.39" | "#disabled-text.40" | "#disabled-text.41" | "#disabled-text.42" | "#disabled-text.43" | "#disabled-text.44" | "#disabled-text.45" | "#disabled-text.46" | "#disabled-text.47" | "#disabled-text.48" | "#disabled-text.49" | "#disabled-text.50" | "#disabled-text.51" | "#disabled-text.52" | "#disabled-text.53" | "#disabled-text.54" | "#disabled-text.55" | "#disabled-text.56" | "#disabled-text.57" | "#disabled-text.58" | "#disabled-text.59" | "#disabled-text.60" | "#disabled-text.61" | "#disabled-text.62" | "#disabled-text.63" | "#disabled-text.64" | "#disabled-text.65" | "#disabled-text.66" | "#disabled-text.67" | "#disabled-text.68" | "#disabled-text.69" | "#disabled-text.70" | "#disabled-text.71" | "#disabled-text.72" | "#disabled-text.73" | "#disabled-text.74" | "#disabled-text.75" | "#disabled-text.76" | "#disabled-text.77" | "#disabled-text.78" | "#disabled-text.79" | "#disabled-text.80" | "#disabled-text.81" | "#disabled-text.82" | "#disabled-text.83" | "#disabled-text.84" | "#disabled-text.85" | "#disabled-text.86" | "#disabled-text.87" | "#disabled-text.88" | "#disabled-text.89" | "#disabled-text.90" | "#disabled-text.91" | "#disabled-text.92" | "#disabled-text.93" | "#disabled-text.94" | "#disabled-text.95" | "#disabled-text.96" | "#disabled-text.97" | "#disabled-text.98" | "#disabled-text.99" | "#disabled-text.100" | "#danger" | "#danger.0" | "#danger.1" | "#danger.2" | "#danger.3" | "#danger.4" | "#danger.5" | "#danger.6" | "#danger.7" | "#danger.8" | "#danger.9" | "#danger.00" | "#danger.01" | "#danger.02" | "#danger.03" | "#danger.04" | "#danger.05" | "#danger.06" | "#danger.07" | "#danger.08" | "#danger.09" | "#danger.10" | "#danger.11" | "#danger.12" | "#danger.13" | "#danger.14" | "#danger.15" | "#danger.16" | "#danger.17" | "#danger.18" | "#danger.19" | "#danger.20" | "#danger.21" | "#danger.22" | "#danger.23" | "#danger.24" | "#danger.25" | "#danger.26" | "#danger.27" | "#danger.28" | "#danger.29" | "#danger.30" | "#danger.31" | "#danger.32" | "#danger.33" | "#danger.34" | "#danger.35" | "#danger.36" | "#danger.37" | "#danger.38" | "#danger.39" | "#danger.40" | "#danger.41" | "#danger.42" | "#danger.43" | "#danger.44" | "#danger.45" | "#danger.46" | "#danger.47" | "#danger.48" | "#danger.49" | "#danger.50" | "#danger.51" | "#danger.52" | "#danger.53" | "#danger.54" | "#danger.55" | "#danger.56" | "#danger.57" | "#danger.58" | "#danger.59" | "#danger.60" | "#danger.61" | "#danger.62" | "#danger.63" | "#danger.64" | "#danger.65" | "#danger.66" | "#danger.67" | "#danger.68" | "#danger.69" | "#danger.70" | "#danger.71" | "#danger.72" | "#danger.73" | "#danger.74" | "#danger.75" | "#danger.76" | "#danger.77" | "#danger.78" | "#danger.79" | "#danger.80" | "#danger.81" | "#danger.82" | "#danger.83" | "#danger.84" | "#danger.85" | "#danger.86" | "#danger.87" | "#danger.88" | "#danger.89" | "#danger.90" | "#danger.91" | "#danger.92" | "#danger.93" | "#danger.94" | "#danger.95" | "#danger.96" | "#danger.97" | "#danger.98" | "#danger.99" | "#danger.100" | "#danger-bg" | "#danger-bg.0" | "#danger-bg.1" | "#danger-bg.2" | "#danger-bg.3" | "#danger-bg.4" | "#danger-bg.5" | "#danger-bg.6" | "#danger-bg.7" | "#danger-bg.8" | "#danger-bg.9" | "#danger-bg.00" | "#danger-bg.01" | "#danger-bg.02" | "#danger-bg.03" | "#danger-bg.04" | "#danger-bg.05" | "#danger-bg.06" | "#danger-bg.07" | "#danger-bg.08" | "#danger-bg.09" | "#danger-bg.10" | "#danger-bg.11" | "#danger-bg.12" | "#danger-bg.13" | "#danger-bg.14" | "#danger-bg.15" | "#danger-bg.16" | "#danger-bg.17" | "#danger-bg.18" | "#danger-bg.19" | "#danger-bg.20" | "#danger-bg.21" | "#danger-bg.22" | "#danger-bg.23" | "#danger-bg.24" | "#danger-bg.25" | "#danger-bg.26" | "#danger-bg.27" | "#danger-bg.28" | "#danger-bg.29" | "#danger-bg.30" | "#danger-bg.31" | "#danger-bg.32" | "#danger-bg.33" | "#danger-bg.34" | "#danger-bg.35" | "#danger-bg.36" | "#danger-bg.37" | "#danger-bg.38" | "#danger-bg.39" | "#danger-bg.40" | "#danger-bg.41" | "#danger-bg.42" | "#danger-bg.43" | "#danger-bg.44" | "#danger-bg.45" | "#danger-bg.46" | "#danger-bg.47" | "#danger-bg.48" | "#danger-bg.49" | "#danger-bg.50" | "#danger-bg.51" | "#danger-bg.52" | "#danger-bg.53" | "#danger-bg.54" | "#danger-bg.55" | "#danger-bg.56" | "#danger-bg.57" | "#danger-bg.58" | "#danger-bg.59" | "#danger-bg.60" | "#danger-bg.61" | "#danger-bg.62" | "#danger-bg.63" | "#danger-bg.64" | "#danger-bg.65" | "#danger-bg.66" | "#danger-bg.67" | "#danger-bg.68" | "#danger-bg.69" | "#danger-bg.70" | "#danger-bg.71" | "#danger-bg.72" | "#danger-bg.73" | "#danger-bg.74" | "#danger-bg.75" | "#danger-bg.76" | "#danger-bg.77" | "#danger-bg.78" | "#danger-bg.79" | "#danger-bg.80" | "#danger-bg.81" | "#danger-bg.82" | "#danger-bg.83" | "#danger-bg.84" | "#danger-bg.85" | "#danger-bg.86" | "#danger-bg.87" | "#danger-bg.88" | "#danger-bg.89" | "#danger-bg.90" | "#danger-bg.91" | "#danger-bg.92" | "#danger-bg.93" | "#danger-bg.94" | "#danger-bg.95" | "#danger-bg.96" | "#danger-bg.97" | "#danger-bg.98" | "#danger-bg.99" | "#danger-bg.100" | "#danger-text" | "#danger-text.0" | "#danger-text.1" | "#danger-text.2" | "#danger-text.3" | "#danger-text.4" | "#danger-text.5" | "#danger-text.6" | "#danger-text.7" | "#danger-text.8" | "#danger-text.9" | "#danger-text.00" | "#danger-text.01" | "#danger-text.02" | "#danger-text.03" | "#danger-text.04" | "#danger-text.05" | "#danger-text.06" | "#danger-text.07" | "#danger-text.08" | "#danger-text.09" | "#danger-text.10" | "#danger-text.11" | "#danger-text.12" | "#danger-text.13" | "#danger-text.14" | "#danger-text.15" | "#danger-text.16" | "#danger-text.17" | "#danger-text.18" | "#danger-text.19" | "#danger-text.20" | "#danger-text.21" | "#danger-text.22" | "#danger-text.23" | "#danger-text.24" | "#danger-text.25" | "#danger-text.26" | "#danger-text.27" | "#danger-text.28" | "#danger-text.29" | "#danger-text.30" | "#danger-text.31" | "#danger-text.32" | "#danger-text.33" | "#danger-text.34" | "#danger-text.35" | "#danger-text.36" | "#danger-text.37" | "#danger-text.38" | "#danger-text.39" | "#danger-text.40" | "#danger-text.41" | "#danger-text.42" | "#danger-text.43" | "#danger-text.44" | "#danger-text.45" | "#danger-text.46" | "#danger-text.47" | "#danger-text.48" | "#danger-text.49" | "#danger-text.50" | "#danger-text.51" | "#danger-text.52" | "#danger-text.53" | "#danger-text.54" | "#danger-text.55" | "#danger-text.56" | "#danger-text.57" | "#danger-text.58" | "#danger-text.59" | "#danger-text.60" | "#danger-text.61" | "#danger-text.62" | "#danger-text.63" | "#danger-text.64" | "#danger-text.65" | "#danger-text.66" | "#danger-text.67" | "#danger-text.68" | "#danger-text.69" | "#danger-text.70" | "#danger-text.71" | "#danger-text.72" | "#danger-text.73" | "#danger-text.74" | "#danger-text.75" | "#danger-text.76" | "#danger-text.77" | "#danger-text.78" | "#danger-text.79" | "#danger-text.80" | "#danger-text.81" | "#danger-text.82" | "#danger-text.83" | "#danger-text.84" | "#danger-text.85" | "#danger-text.86" | "#danger-text.87" | "#danger-text.88" | "#danger-text.89" | "#danger-text.90" | "#danger-text.91" | "#danger-text.92" | "#danger-text.93" | "#danger-text.94" | "#danger-text.95" | "#danger-text.96" | "#danger-text.97" | "#danger-text.98" | "#danger-text.99" | "#danger-text.100" | "#danger-icon" | "#danger-icon.0" | "#danger-icon.1" | "#danger-icon.2" | "#danger-icon.3" | "#danger-icon.4" | "#danger-icon.5" | "#danger-icon.6" | "#danger-icon.7" | "#danger-icon.8" | "#danger-icon.9" | "#danger-icon.00" | "#danger-icon.01" | "#danger-icon.02" | "#danger-icon.03" | "#danger-icon.04" | "#danger-icon.05" | "#danger-icon.06" | "#danger-icon.07" | "#danger-icon.08" | "#danger-icon.09" | "#danger-icon.10" | "#danger-icon.11" | "#danger-icon.12" | "#danger-icon.13" | "#danger-icon.14" | "#danger-icon.15" | "#danger-icon.16" | "#danger-icon.17" | "#danger-icon.18" | "#danger-icon.19" | "#danger-icon.20" | "#danger-icon.21" | "#danger-icon.22" | "#danger-icon.23" | "#danger-icon.24" | "#danger-icon.25" | "#danger-icon.26" | "#danger-icon.27" | "#danger-icon.28" | "#danger-icon.29" | "#danger-icon.30" | "#danger-icon.31" | "#danger-icon.32" | "#danger-icon.33" | "#danger-icon.34" | "#danger-icon.35" | "#danger-icon.36" | "#danger-icon.37" | "#danger-icon.38" | "#danger-icon.39" | "#danger-icon.40" | "#danger-icon.41" | "#danger-icon.42" | "#danger-icon.43" | "#danger-icon.44" | "#danger-icon.45" | "#danger-icon.46" | "#danger-icon.47" | "#danger-icon.48" | "#danger-icon.49" | "#danger-icon.50" | "#danger-icon.51" | "#danger-icon.52" | "#danger-icon.53" | "#danger-icon.54" | "#danger-icon.55" | "#danger-icon.56" | "#danger-icon.57" | "#danger-icon.58" | "#danger-icon.59" | "#danger-icon.60" | "#danger-icon.61" | "#danger-icon.62" | "#danger-icon.63" | "#danger-icon.64" | "#danger-icon.65" | "#danger-icon.66" | "#danger-icon.67" | "#danger-icon.68" | "#danger-icon.69" | "#danger-icon.70" | "#danger-icon.71" | "#danger-icon.72" | "#danger-icon.73" | "#danger-icon.74" | "#danger-icon.75" | "#danger-icon.76" | "#danger-icon.77" | "#danger-icon.78" | "#danger-icon.79" | "#danger-icon.80" | "#danger-icon.81" | "#danger-icon.82" | "#danger-icon.83" | "#danger-icon.84" | "#danger-icon.85" | "#danger-icon.86" | "#danger-icon.87" | "#danger-icon.88" | "#danger-icon.89" | "#danger-icon.90" | "#danger-icon.91" | "#danger-icon.92" | "#danger-icon.93" | "#danger-icon.94" | "#danger-icon.95" | "#danger-icon.96" | "#danger-icon.97" | "#danger-icon.98" | "#danger-icon.99" | "#danger-icon.100" | "#success" | "#success.0" | "#success.1" | "#success.2" | "#success.3" | "#success.4" | "#success.5" | "#success.6" | "#success.7" | "#success.8" | "#success.9" | "#success.00" | "#success.01" | "#success.02" | "#success.03" | "#success.04" | "#success.05" | "#success.06" | "#success.07" | "#success.08" | "#success.09" | "#success.10" | "#success.11" | "#success.12" | "#success.13" | "#success.14" | "#success.15" | "#success.16" | "#success.17" | "#success.18" | "#success.19" | "#success.20" | "#success.21" | "#success.22" | "#success.23" | "#success.24" | "#success.25" | "#success.26" | "#success.27" | "#success.28" | "#success.29" | "#success.30" | "#success.31" | "#success.32" | "#success.33" | "#success.34" | "#success.35" | "#success.36" | "#success.37" | "#success.38" | "#success.39" | "#success.40" | "#success.41" | "#success.42" | "#success.43" | "#success.44" | "#success.45" | "#success.46" | "#success.47" | "#success.48" | "#success.49" | "#success.50" | "#success.51" | "#success.52" | "#success.53" | "#success.54" | "#success.55" | "#success.56" | "#success.57" | "#success.58" | "#success.59" | "#success.60" | "#success.61" | "#success.62" | "#success.63" | "#success.64" | "#success.65" | "#success.66" | "#success.67" | "#success.68" | "#success.69" | "#success.70" | "#success.71" | "#success.72" | "#success.73" | "#success.74" | "#success.75" | "#success.76" | "#success.77" | "#success.78" | "#success.79" | "#success.80" | "#success.81" | "#success.82" | "#success.83" | "#success.84" | "#success.85" | "#success.86" | "#success.87" | "#success.88" | "#success.89" | "#success.90" | "#success.91" | "#success.92" | "#success.93" | "#success.94" | "#success.95" | "#success.96" | "#success.97" | "#success.98" | "#success.99" | "#success.100" | "#success-bg" | "#success-bg.0" | "#success-bg.1" | "#success-bg.2" | "#success-bg.3" | "#success-bg.4" | "#success-bg.5" | "#success-bg.6" | "#success-bg.7" | "#success-bg.8" | "#success-bg.9" | "#success-bg.00" | "#success-bg.01" | "#success-bg.02" | "#success-bg.03" | "#success-bg.04" | "#success-bg.05" | "#success-bg.06" | "#success-bg.07" | "#success-bg.08" | "#success-bg.09" | "#success-bg.10" | "#success-bg.11" | "#success-bg.12" | "#success-bg.13" | "#success-bg.14" | "#success-bg.15" | "#success-bg.16" | "#success-bg.17" | "#success-bg.18" | "#success-bg.19" | "#success-bg.20" | "#success-bg.21" | "#success-bg.22" | "#success-bg.23" | "#success-bg.24" | "#success-bg.25" | "#success-bg.26" | "#success-bg.27" | "#success-bg.28" | "#success-bg.29" | "#success-bg.30" | "#success-bg.31" | "#success-bg.32" | "#success-bg.33" | "#success-bg.34" | "#success-bg.35" | "#success-bg.36" | "#success-bg.37" | "#success-bg.38" | "#success-bg.39" | "#success-bg.40" | "#success-bg.41" | "#success-bg.42" | "#success-bg.43" | "#success-bg.44" | "#success-bg.45" | "#success-bg.46" | "#success-bg.47" | "#success-bg.48" | "#success-bg.49" | "#success-bg.50" | "#success-bg.51" | "#success-bg.52" | "#success-bg.53" | "#success-bg.54" | "#success-bg.55" | "#success-bg.56" | "#success-bg.57" | "#success-bg.58" | "#success-bg.59" | "#success-bg.60" | "#success-bg.61" | "#success-bg.62" | "#success-bg.63" | "#success-bg.64" | "#success-bg.65" | "#success-bg.66" | "#success-bg.67" | "#success-bg.68" | "#success-bg.69" | "#success-bg.70" | "#success-bg.71" | "#success-bg.72" | "#success-bg.73" | "#success-bg.74" | "#success-bg.75" | "#success-bg.76" | "#success-bg.77" | "#success-bg.78" | "#success-bg.79" | "#success-bg.80" | "#success-bg.81" | "#success-bg.82" | "#success-bg.83" | "#success-bg.84" | "#success-bg.85" | "#success-bg.86" | "#success-bg.87" | "#success-bg.88" | "#success-bg.89" | "#success-bg.90" | "#success-bg.91" | "#success-bg.92" | "#success-bg.93" | "#success-bg.94" | "#success-bg.95" | "#success-bg.96" | "#success-bg.97" | "#success-bg.98" | "#success-bg.99" | "#success-bg.100" | "#success-text" | "#success-text.0" | "#success-text.1" | "#success-text.2" | "#success-text.3" | "#success-text.4" | "#success-text.5" | "#success-text.6" | "#success-text.7" | "#success-text.8" | "#success-text.9" | "#success-text.00" | "#success-text.01" | "#success-text.02" | "#success-text.03" | "#success-text.04" | "#success-text.05" | "#success-text.06" | "#success-text.07" | "#success-text.08" | "#success-text.09" | "#success-text.10" | "#success-text.11" | "#success-text.12" | "#success-text.13" | "#success-text.14" | "#success-text.15" | "#success-text.16" | "#success-text.17" | "#success-text.18" | "#success-text.19" | "#success-text.20" | "#success-text.21" | "#success-text.22" | "#success-text.23" | "#success-text.24" | "#success-text.25" | "#success-text.26" | "#success-text.27" | "#success-text.28" | "#success-text.29" | "#success-text.30" | "#success-text.31" | "#success-text.32" | "#success-text.33" | "#success-text.34" | "#success-text.35" | "#success-text.36" | "#success-text.37" | "#success-text.38" | "#success-text.39" | "#success-text.40" | "#success-text.41" | "#success-text.42" | "#success-text.43" | "#success-text.44" | "#success-text.45" | "#success-text.46" | "#success-text.47" | "#success-text.48" | "#success-text.49" | "#success-text.50" | "#success-text.51" | "#success-text.52" | "#success-text.53" | "#success-text.54" | "#success-text.55" | "#success-text.56" | "#success-text.57" | "#success-text.58" | "#success-text.59" | "#success-text.60" | "#success-text.61" | "#success-text.62" | "#success-text.63" | "#success-text.64" | "#success-text.65" | "#success-text.66" | "#success-text.67" | "#success-text.68" | "#success-text.69" | "#success-text.70" | "#success-text.71" | "#success-text.72" | "#success-text.73" | "#success-text.74" | "#success-text.75" | "#success-text.76" | "#success-text.77" | "#success-text.78" | "#success-text.79" | "#success-text.80" | "#success-text.81" | "#success-text.82" | "#success-text.83" | "#success-text.84" | "#success-text.85" | "#success-text.86" | "#success-text.87" | "#success-text.88" | "#success-text.89" | "#success-text.90" | "#success-text.91" | "#success-text.92" | "#success-text.93" | "#success-text.94" | "#success-text.95" | "#success-text.96" | "#success-text.97" | "#success-text.98" | "#success-text.99" | "#success-text.100" | "#success-icon" | "#success-icon.0" | "#success-icon.1" | "#success-icon.2" | "#success-icon.3" | "#success-icon.4" | "#success-icon.5" | "#success-icon.6" | "#success-icon.7" | "#success-icon.8" | "#success-icon.9" | "#success-icon.00" | "#success-icon.01" | "#success-icon.02" | "#success-icon.03" | "#success-icon.04" | "#success-icon.05" | "#success-icon.06" | "#success-icon.07" | "#success-icon.08" | "#success-icon.09" | "#success-icon.10" | "#success-icon.11" | "#success-icon.12" | "#success-icon.13" | "#success-icon.14" | "#success-icon.15" | "#success-icon.16" | "#success-icon.17" | "#success-icon.18" | "#success-icon.19" | "#success-icon.20" | "#success-icon.21" | "#success-icon.22" | "#success-icon.23" | "#success-icon.24" | "#success-icon.25" | "#success-icon.26" | "#success-icon.27" | "#success-icon.28" | "#success-icon.29" | "#success-icon.30" | "#success-icon.31" | "#success-icon.32" | "#success-icon.33" | "#success-icon.34" | "#success-icon.35" | "#success-icon.36" | "#success-icon.37" | "#success-icon.38" | "#success-icon.39" | "#success-icon.40" | "#success-icon.41" | "#success-icon.42" | "#success-icon.43" | "#success-icon.44" | "#success-icon.45" | "#success-icon.46" | "#success-icon.47" | "#success-icon.48" | "#success-icon.49" | "#success-icon.50" | "#success-icon.51" | "#success-icon.52" | "#success-icon.53" | "#success-icon.54" | "#success-icon.55" | "#success-icon.56" | "#success-icon.57" | "#success-icon.58" | "#success-icon.59" | "#success-icon.60" | "#success-icon.61" | "#success-icon.62" | "#success-icon.63" | "#success-icon.64" | "#success-icon.65" | "#success-icon.66" | "#success-icon.67" | "#success-icon.68" | "#success-icon.69" | "#success-icon.70" | "#success-icon.71" | "#success-icon.72" | "#success-icon.73" | "#success-icon.74" | "#success-icon.75" | "#success-icon.76" | "#success-icon.77" | "#success-icon.78" | "#success-icon.79" | "#success-icon.80" | "#success-icon.81" | "#success-icon.82" | "#success-icon.83" | "#success-icon.84" | "#success-icon.85" | "#success-icon.86" | "#success-icon.87" | "#success-icon.88" | "#success-icon.89" | "#success-icon.90" | "#success-icon.91" | "#success-icon.92" | "#success-icon.93" | "#success-icon.94" | "#success-icon.95" | "#success-icon.96" | "#success-icon.97" | "#success-icon.98" | "#success-icon.99" | "#success-icon.100" | "#note" | "#note.0" | "#note.1" | "#note.2" | "#note.3" | "#note.4" | "#note.5" | "#note.6" | "#note.7" | "#note.8" | "#note.9" | "#note.00" | "#note.01" | "#note.02" | "#note.03" | "#note.04" | "#note.05" | "#note.06" | "#note.07" | "#note.08" | "#note.09" | "#note.10" | "#note.11" | "#note.12" | "#note.13" | "#note.14" | "#note.15" | "#note.16" | "#note.17" | "#note.18" | "#note.19" | "#note.20" | "#note.21" | "#note.22" | "#note.23" | "#note.24" | "#note.25" | "#note.26" | "#note.27" | "#note.28" | "#note.29" | "#note.30" | "#note.31" | "#note.32" | "#note.33" | "#note.34" | "#note.35" | "#note.36" | "#note.37" | "#note.38" | "#note.39" | "#note.40" | "#note.41" | "#note.42" | "#note.43" | "#note.44" | "#note.45" | "#note.46" | "#note.47" | "#note.48" | "#note.49" | "#note.50" | "#note.51" | "#note.52" | "#note.53" | "#note.54" | "#note.55" | "#note.56" | "#note.57" | "#note.58" | "#note.59" | "#note.60" | "#note.61" | "#note.62" | "#note.63" | "#note.64" | "#note.65" | "#note.66" | "#note.67" | "#note.68" | "#note.69" | "#note.70" | "#note.71" | "#note.72" | "#note.73" | "#note.74" | "#note.75" | "#note.76" | "#note.77" | "#note.78" | "#note.79" | "#note.80" | "#note.81" | "#note.82" | "#note.83" | "#note.84" | "#note.85" | "#note.86" | "#note.87" | "#note.88" | "#note.89" | "#note.90" | "#note.91" | "#note.92" | "#note.93" | "#note.94" | "#note.95" | "#note.96" | "#note.97" | "#note.98" | "#note.99" | "#note.100" | "#note-bg" | "#note-bg.0" | "#note-bg.1" | "#note-bg.2" | "#note-bg.3" | "#note-bg.4" | "#note-bg.5" | "#note-bg.6" | "#note-bg.7" | "#note-bg.8" | "#note-bg.9" | "#note-bg.00" | "#note-bg.01" | "#note-bg.02" | "#note-bg.03" | "#note-bg.04" | "#note-bg.05" | "#note-bg.06" | "#note-bg.07" | "#note-bg.08" | "#note-bg.09" | "#note-bg.10" | "#note-bg.11" | "#note-bg.12" | "#note-bg.13" | "#note-bg.14" | "#note-bg.15" | "#note-bg.16" | "#note-bg.17" | "#note-bg.18" | "#note-bg.19" | "#note-bg.20" | "#note-bg.21" | "#note-bg.22" | "#note-bg.23" | "#note-bg.24" | "#note-bg.25" | "#note-bg.26" | "#note-bg.27" | "#note-bg.28" | "#note-bg.29" | "#note-bg.30" | "#note-bg.31" | "#note-bg.32" | "#note-bg.33" | "#note-bg.34" | "#note-bg.35" | "#note-bg.36" | "#note-bg.37" | "#note-bg.38" | "#note-bg.39" | "#note-bg.40" | "#note-bg.41" | "#note-bg.42" | "#note-bg.43" | "#note-bg.44" | "#note-bg.45" | "#note-bg.46" | "#note-bg.47" | "#note-bg.48" | "#note-bg.49" | "#note-bg.50" | "#note-bg.51" | "#note-bg.52" | "#note-bg.53" | "#note-bg.54" | "#note-bg.55" | "#note-bg.56" | "#note-bg.57" | "#note-bg.58" | "#note-bg.59" | "#note-bg.60" | "#note-bg.61" | "#note-bg.62" | "#note-bg.63" | "#note-bg.64" | "#note-bg.65" | "#note-bg.66" | "#note-bg.67" | "#note-bg.68" | "#note-bg.69" | "#note-bg.70" | "#note-bg.71" | "#note-bg.72" | "#note-bg.73" | "#note-bg.74" | "#note-bg.75" | "#note-bg.76" | "#note-bg.77" | "#note-bg.78" | "#note-bg.79" | "#note-bg.80" | "#note-bg.81" | "#note-bg.82" | "#note-bg.83" | "#note-bg.84" | "#note-bg.85" | "#note-bg.86" | "#note-bg.87" | "#note-bg.88" | "#note-bg.89" | "#note-bg.90" | "#note-bg.91" | "#note-bg.92" | "#note-bg.93" | "#note-bg.94" | "#note-bg.95" | "#note-bg.96" | "#note-bg.97" | "#note-bg.98" | "#note-bg.99" | "#note-bg.100" | "#note-text" | "#note-text.0" | "#note-text.1" | "#note-text.2" | "#note-text.3" | "#note-text.4" | "#note-text.5" | "#note-text.6" | "#note-text.7" | "#note-text.8" | "#note-text.9" | "#note-text.00" | "#note-text.01" | "#note-text.02" | "#note-text.03" | "#note-text.04" | "#note-text.05" | "#note-text.06" | "#note-text.07" | "#note-text.08" | "#note-text.09" | "#note-text.10" | "#note-text.11" | "#note-text.12" | "#note-text.13" | "#note-text.14" | "#note-text.15" | "#note-text.16" | "#note-text.17" | "#note-text.18" | "#note-text.19" | "#note-text.20" | "#note-text.21" | "#note-text.22" | "#note-text.23" | "#note-text.24" | "#note-text.25" | "#note-text.26" | "#note-text.27" | "#note-text.28" | "#note-text.29" | "#note-text.30" | "#note-text.31" | "#note-text.32" | "#note-text.33" | "#note-text.34" | "#note-text.35" | "#note-text.36" | "#note-text.37" | "#note-text.38" | "#note-text.39" | "#note-text.40" | "#note-text.41" | "#note-text.42" | "#note-text.43" | "#note-text.44" | "#note-text.45" | "#note-text.46" | "#note-text.47" | "#note-text.48" | "#note-text.49" | "#note-text.50" | "#note-text.51" | "#note-text.52" | "#note-text.53" | "#note-text.54" | "#note-text.55" | "#note-text.56" | "#note-text.57" | "#note-text.58" | "#note-text.59" | "#note-text.60" | "#note-text.61" | "#note-text.62" | "#note-text.63" | "#note-text.64" | "#note-text.65" | "#note-text.66" | "#note-text.67" | "#note-text.68" | "#note-text.69" | "#note-text.70" | "#note-text.71" | "#note-text.72" | "#note-text.73" | "#note-text.74" | "#note-text.75" | "#note-text.76" | "#note-text.77" | "#note-text.78" | "#note-text.79" | "#note-text.80" | "#note-text.81" | "#note-text.82" | "#note-text.83" | "#note-text.84" | "#note-text.85" | "#note-text.86" | "#note-text.87" | "#note-text.88" | "#note-text.89" | "#note-text.90" | "#note-text.91" | "#note-text.92" | "#note-text.93" | "#note-text.94" | "#note-text.95" | "#note-text.96" | "#note-text.97" | "#note-text.98" | "#note-text.99" | "#note-text.100" | "#note-icon" | "#note-icon.0" | "#note-icon.1" | "#note-icon.2" | "#note-icon.3" | "#note-icon.4" | "#note-icon.5" | "#note-icon.6" | "#note-icon.7" | "#note-icon.8" | "#note-icon.9" | "#note-icon.00" | "#note-icon.01" | "#note-icon.02" | "#note-icon.03" | "#note-icon.04" | "#note-icon.05" | "#note-icon.06" | "#note-icon.07" | "#note-icon.08" | "#note-icon.09" | "#note-icon.10" | "#note-icon.11" | "#note-icon.12" | "#note-icon.13" | "#note-icon.14" | "#note-icon.15" | "#note-icon.16" | "#note-icon.17" | "#note-icon.18" | "#note-icon.19" | "#note-icon.20" | "#note-icon.21" | "#note-icon.22" | "#note-icon.23" | "#note-icon.24" | "#note-icon.25" | "#note-icon.26" | "#note-icon.27" | "#note-icon.28" | "#note-icon.29" | "#note-icon.30" | "#note-icon.31" | "#note-icon.32" | "#note-icon.33" | "#note-icon.34" | "#note-icon.35" | "#note-icon.36" | "#note-icon.37" | "#note-icon.38" | "#note-icon.39" | "#note-icon.40" | "#note-icon.41" | "#note-icon.42" | "#note-icon.43" | "#note-icon.44" | "#note-icon.45" | "#note-icon.46" | "#note-icon.47" | "#note-icon.48" | "#note-icon.49" | "#note-icon.50" | "#note-icon.51" | "#note-icon.52" | "#note-icon.53" | "#note-icon.54" | "#note-icon.55" | "#note-icon.56" | "#note-icon.57" | "#note-icon.58" | "#note-icon.59" | "#note-icon.60" | "#note-icon.61" | "#note-icon.62" | "#note-icon.63" | "#note-icon.64" | "#note-icon.65" | "#note-icon.66" | "#note-icon.67" | "#note-icon.68" | "#note-icon.69" | "#note-icon.70" | "#note-icon.71" | "#note-icon.72" | "#note-icon.73" | "#note-icon.74" | "#note-icon.75" | "#note-icon.76" | "#note-icon.77" | "#note-icon.78" | "#note-icon.79" | "#note-icon.80" | "#note-icon.81" | "#note-icon.82" | "#note-icon.83" | "#note-icon.84" | "#note-icon.85" | "#note-icon.86" | "#note-icon.87" | "#note-icon.88" | "#note-icon.89" | "#note-icon.90" | "#note-icon.91" | "#note-icon.92" | "#note-icon.93" | "#note-icon.94" | "#note-icon.95" | "#note-icon.96" | "#note-icon.97" | "#note-icon.98" | "#note-icon.99" | "#note-icon.100" | "#white" | "#white.0" | "#white.1" | "#white.2" | "#white.3" | "#white.4" | "#white.5" | "#white.6" | "#white.7" | "#white.8" | "#white.9" | "#white.00" | "#white.01" | "#white.02" | "#white.03" | "#white.04" | "#white.05" | "#white.06" | "#white.07" | "#white.08" | "#white.09" | "#white.10" | "#white.11" | "#white.12" | "#white.13" | "#white.14" | "#white.15" | "#white.16" | "#white.17" | "#white.18" | "#white.19" | "#white.20" | "#white.21" | "#white.22" | "#white.23" | "#white.24" | "#white.25" | "#white.26" | "#white.27" | "#white.28" | "#white.29" | "#white.30" | "#white.31" | "#white.32" | "#white.33" | "#white.34" | "#white.35" | "#white.36" | "#white.37" | "#white.38" | "#white.39" | "#white.40" | "#white.41" | "#white.42" | "#white.43" | "#white.44" | "#white.45" | "#white.46" | "#white.47" | "#white.48" | "#white.49" | "#white.50" | "#white.51" | "#white.52" | "#white.53" | "#white.54" | "#white.55" | "#white.56" | "#white.57" | "#white.58" | "#white.59" | "#white.60" | "#white.61" | "#white.62" | "#white.63" | "#white.64" | "#white.65" | "#white.66" | "#white.67" | "#white.68" | "#white.69" | "#white.70" | "#white.71" | "#white.72" | "#white.73" | "#white.74" | "#white.75" | "#white.76" | "#white.77" | "#white.78" | "#white.79" | "#white.80" | "#white.81" | "#white.82" | "#white.83" | "#white.84" | "#white.85" | "#white.86" | "#white.87" | "#white.88" | "#white.89" | "#white.90" | "#white.91" | "#white.92" | "#white.93" | "#white.94" | "#white.95" | "#white.96" | "#white.97" | "#white.98" | "#white.99" | "#white.100" | "#light" | "#light.0" | "#light.1" | "#light.2" | "#light.3" | "#light.4" | "#light.5" | "#light.6" | "#light.7" | "#light.8" | "#light.9" | "#light.00" | "#light.01" | "#light.02" | "#light.03" | "#light.04" | "#light.05" | "#light.06" | "#light.07" | "#light.08" | "#light.09" | "#light.10" | "#light.11" | "#light.12" | "#light.13" | "#light.14" | "#light.15" | "#light.16" | "#light.17" | "#light.18" | "#light.19" | "#light.20" | "#light.21" | "#light.22" | "#light.23" | "#light.24" | "#light.25" | "#light.26" | "#light.27" | "#light.28" | "#light.29" | "#light.30" | "#light.31" | "#light.32" | "#light.33" | "#light.34" | "#light.35" | "#light.36" | "#light.37" | "#light.38" | "#light.39" | "#light.40" | "#light.41" | "#light.42" | "#light.43" | "#light.44" | "#light.45" | "#light.46" | "#light.47" | "#light.48" | "#light.49" | "#light.50" | "#light.51" | "#light.52" | "#light.53" | "#light.54" | "#light.55" | "#light.56" | "#light.57" | "#light.58" | "#light.59" | "#light.60" | "#light.61" | "#light.62" | "#light.63" | "#light.64" | "#light.65" | "#light.66" | "#light.67" | "#light.68" | "#light.69" | "#light.70" | "#light.71" | "#light.72" | "#light.73" | "#light.74" | "#light.75" | "#light.76" | "#light.77" | "#light.78" | "#light.79" | "#light.80" | "#light.81" | "#light.82" | "#light.83" | "#light.84" | "#light.85" | "#light.86" | "#light.87" | "#light.88" | "#light.89" | "#light.90" | "#light.91" | "#light.92" | "#light.93" | "#light.94" | "#light.95" | "#light.96" | "#light.97" | "#light.98" | "#light.99" | "#light.100" | "#light-grey" | "#light-grey.0" | "#light-grey.1" | "#light-grey.2" | "#light-grey.3" | "#light-grey.4" | "#light-grey.5" | "#light-grey.6" | "#light-grey.7" | "#light-grey.8" | "#light-grey.9" | "#light-grey.00" | "#light-grey.01" | "#light-grey.02" | "#light-grey.03" | "#light-grey.04" | "#light-grey.05" | "#light-grey.06" | "#light-grey.07" | "#light-grey.08" | "#light-grey.09" | "#light-grey.10" | "#light-grey.11" | "#light-grey.12" | "#light-grey.13" | "#light-grey.14" | "#light-grey.15" | "#light-grey.16" | "#light-grey.17" | "#light-grey.18" | "#light-grey.19" | "#light-grey.20" | "#light-grey.21" | "#light-grey.22" | "#light-grey.23" | "#light-grey.24" | "#light-grey.25" | "#light-grey.26" | "#light-grey.27" | "#light-grey.28" | "#light-grey.29" | "#light-grey.30" | "#light-grey.31" | "#light-grey.32" | "#light-grey.33" | "#light-grey.34" | "#light-grey.35" | "#light-grey.36" | "#light-grey.37" | "#light-grey.38" | "#light-grey.39" | "#light-grey.40" | "#light-grey.41" | "#light-grey.42" | "#light-grey.43" | "#light-grey.44" | "#light-grey.45" | "#light-grey.46" | "#light-grey.47" | "#light-grey.48" | "#light-grey.49" | "#light-grey.50" | "#light-grey.51" | "#light-grey.52" | "#light-grey.53" | "#light-grey.54" | "#light-grey.55" | "#light-grey.56" | "#light-grey.57" | "#light-grey.58" | "#light-grey.59" | "#light-grey.60" | "#light-grey.61" | "#light-grey.62" | "#light-grey.63" | "#light-grey.64" | "#light-grey.65" | "#light-grey.66" | "#light-grey.67" | "#light-grey.68" | "#light-grey.69" | "#light-grey.70" | "#light-grey.71" | "#light-grey.72" | "#light-grey.73" | "#light-grey.74" | "#light-grey.75" | "#light-grey.76" | "#light-grey.77" | "#light-grey.78" | "#light-grey.79" | "#light-grey.80" | "#light-grey.81" | "#light-grey.82" | "#light-grey.83" | "#light-grey.84" | "#light-grey.85" | "#light-grey.86" | "#light-grey.87" | "#light-grey.88" | "#light-grey.89" | "#light-grey.90" | "#light-grey.91" | "#light-grey.92" | "#light-grey.93" | "#light-grey.94" | "#light-grey.95" | "#light-grey.96" | "#light-grey.97" | "#light-grey.98" | "#light-grey.99" | "#light-grey.100" | "#black" | "#black.0" | "#black.1" | "#black.2" | "#black.3" | "#black.4" | "#black.5" | "#black.6" | "#black.7" | "#black.8" | "#black.9" | "#black.00" | "#black.01" | "#black.02" | "#black.03" | "#black.04" | "#black.05" | "#black.06" | "#black.07" | "#black.08" | "#black.09" | "#black.10" | "#black.11" | "#black.12" | "#black.13" | "#black.14" | "#black.15" | "#black.16" | "#black.17" | "#black.18" | "#black.19" | "#black.20" | "#black.21" | "#black.22" | "#black.23" | "#black.24" | "#black.25" | "#black.26" | "#black.27" | "#black.28" | "#black.29" | "#black.30" | "#black.31" | "#black.32" | "#black.33" | "#black.34" | "#black.35" | "#black.36" | "#black.37" | "#black.38" | "#black.39" | "#black.40" | "#black.41" | "#black.42" | "#black.43" | "#black.44" | "#black.45" | "#black.46" | "#black.47" | "#black.48" | "#black.49" | "#black.50" | "#black.51" | "#black.52" | "#black.53" | "#black.54" | "#black.55" | "#black.56" | "#black.57" | "#black.58" | "#black.59" | "#black.60" | "#black.61" | "#black.62" | "#black.63" | "#black.64" | "#black.65" | "#black.66" | "#black.67" | "#black.68" | "#black.69" | "#black.70" | "#black.71" | "#black.72" | "#black.73" | "#black.74" | "#black.75" | "#black.76" | "#black.77" | "#black.78" | "#black.79" | "#black.80" | "#black.81" | "#black.82" | "#black.83" | "#black.84" | "#black.85" | "#black.86" | "#black.87" | "#black.88" | "#black.89" | "#black.90" | "#black.91" | "#black.92" | "#black.93" | "#black.94" | "#black.95" | "#black.96" | "#black.97" | "#black.98" | "#black.99" | "#black.100" | "#pink" | "#pink.0" | "#pink.1" | "#pink.2" | "#pink.3" | "#pink.4" | "#pink.5" | "#pink.6" | "#pink.7" | "#pink.8" | "#pink.9" | "#pink.00" | "#pink.01" | "#pink.02" | "#pink.03" | "#pink.04" | "#pink.05" | "#pink.06" | "#pink.07" | "#pink.08" | "#pink.09" | "#pink.10" | "#pink.11" | "#pink.12" | "#pink.13" | "#pink.14" | "#pink.15" | "#pink.16" | "#pink.17" | "#pink.18" | "#pink.19" | "#pink.20" | "#pink.21" | "#pink.22" | "#pink.23" | "#pink.24" | "#pink.25" | "#pink.26" | "#pink.27" | "#pink.28" | "#pink.29" | "#pink.30" | "#pink.31" | "#pink.32" | "#pink.33" | "#pink.34" | "#pink.35" | "#pink.36" | "#pink.37" | "#pink.38" | "#pink.39" | "#pink.40" | "#pink.41" | "#pink.42" | "#pink.43" | "#pink.44" | "#pink.45" | "#pink.46" | "#pink.47" | "#pink.48" | "#pink.49" | "#pink.50" | "#pink.51" | "#pink.52" | "#pink.53" | "#pink.54" | "#pink.55" | "#pink.56" | "#pink.57" | "#pink.58" | "#pink.59" | "#pink.60" | "#pink.61" | "#pink.62" | "#pink.63" | "#pink.64" | "#pink.65" | "#pink.66" | "#pink.67" | "#pink.68" | "#pink.69" | "#pink.70" | "#pink.71" | "#pink.72" | "#pink.73" | "#pink.74" | "#pink.75" | "#pink.76" | "#pink.77" | "#pink.78" | "#pink.79" | "#pink.80" | "#pink.81" | "#pink.82" | "#pink.83" | "#pink.84" | "#pink.85" | "#pink.86" | "#pink.87" | "#pink.88" | "#pink.89" | "#pink.90" | "#pink.91" | "#pink.92" | "#pink.93" | "#pink.94" | "#pink.95" | "#pink.96" | "#pink.97" | "#pink.98" | "#pink.99" | "#pink.100" | "#pink-01" | "#pink-01.0" | "#pink-01.1" | "#pink-01.2" | "#pink-01.3" | "#pink-01.4" | "#pink-01.5" | "#pink-01.6" | "#pink-01.7" | "#pink-01.8" | "#pink-01.9" | "#pink-01.00" | "#pink-01.01" | "#pink-01.02" | "#pink-01.03" | "#pink-01.04" | "#pink-01.05" | "#pink-01.06" | "#pink-01.07" | "#pink-01.08" | "#pink-01.09" | "#pink-01.10" | "#pink-01.11" | "#pink-01.12" | "#pink-01.13" | "#pink-01.14" | "#pink-01.15" | "#pink-01.16" | "#pink-01.17" | "#pink-01.18" | "#pink-01.19" | "#pink-01.20" | "#pink-01.21" | "#pink-01.22" | "#pink-01.23" | "#pink-01.24" | "#pink-01.25" | "#pink-01.26" | "#pink-01.27" | "#pink-01.28" | "#pink-01.29" | "#pink-01.30" | "#pink-01.31" | "#pink-01.32" | "#pink-01.33" | "#pink-01.34" | "#pink-01.35" | "#pink-01.36" | "#pink-01.37" | "#pink-01.38" | "#pink-01.39" | "#pink-01.40" | "#pink-01.41" | "#pink-01.42" | "#pink-01.43" | "#pink-01.44" | "#pink-01.45" | "#pink-01.46" | "#pink-01.47" | "#pink-01.48" | "#pink-01.49" | "#pink-01.50" | "#pink-01.51" | "#pink-01.52" | "#pink-01.53" | "#pink-01.54" | "#pink-01.55" | "#pink-01.56" | "#pink-01.57" | "#pink-01.58" | "#pink-01.59" | "#pink-01.60" | "#pink-01.61" | "#pink-01.62" | "#pink-01.63" | "#pink-01.64" | "#pink-01.65" | "#pink-01.66" | "#pink-01.67" | "#pink-01.68" | "#pink-01.69" | "#pink-01.70" | "#pink-01.71" | "#pink-01.72" | "#pink-01.73" | "#pink-01.74" | "#pink-01.75" | "#pink-01.76" | "#pink-01.77" | "#pink-01.78" | "#pink-01.79" | "#pink-01.80" | "#pink-01.81" | "#pink-01.82" | "#pink-01.83" | "#pink-01.84" | "#pink-01.85" | "#pink-01.86" | "#pink-01.87" | "#pink-01.88" | "#pink-01.89" | "#pink-01.90" | "#pink-01.91" | "#pink-01.92" | "#pink-01.93" | "#pink-01.94" | "#pink-01.95" | "#pink-01.96" | "#pink-01.97" | "#pink-01.98" | "#pink-01.99" | "#pink-01.100" | "#pink-02" | "#pink-02.0" | "#pink-02.1" | "#pink-02.2" | "#pink-02.3" | "#pink-02.4" | "#pink-02.5" | "#pink-02.6" | "#pink-02.7" | "#pink-02.8" | "#pink-02.9" | "#pink-02.00" | "#pink-02.01" | "#pink-02.02" | "#pink-02.03" | "#pink-02.04" | "#pink-02.05" | "#pink-02.06" | "#pink-02.07" | "#pink-02.08" | "#pink-02.09" | "#pink-02.10" | "#pink-02.11" | "#pink-02.12" | "#pink-02.13" | "#pink-02.14" | "#pink-02.15" | "#pink-02.16" | "#pink-02.17" | "#pink-02.18" | "#pink-02.19" | "#pink-02.20" | "#pink-02.21" | "#pink-02.22" | "#pink-02.23" | "#pink-02.24" | "#pink-02.25" | "#pink-02.26" | "#pink-02.27" | "#pink-02.28" | "#pink-02.29" | "#pink-02.30" | "#pink-02.31" | "#pink-02.32" | "#pink-02.33" | "#pink-02.34" | "#pink-02.35" | "#pink-02.36" | "#pink-02.37" | "#pink-02.38" | "#pink-02.39" | "#pink-02.40" | "#pink-02.41" | "#pink-02.42" | "#pink-02.43" | "#pink-02.44" | "#pink-02.45" | "#pink-02.46" | "#pink-02.47" | "#pink-02.48" | "#pink-02.49" | "#pink-02.50" | "#pink-02.51" | "#pink-02.52" | "#pink-02.53" | "#pink-02.54" | "#pink-02.55" | "#pink-02.56" | "#pink-02.57" | "#pink-02.58" | "#pink-02.59" | "#pink-02.60" | "#pink-02.61" | "#pink-02.62" | "#pink-02.63" | "#pink-02.64" | "#pink-02.65" | "#pink-02.66" | "#pink-02.67" | "#pink-02.68" | "#pink-02.69" | "#pink-02.70" | "#pink-02.71" | "#pink-02.72" | "#pink-02.73" | "#pink-02.74" | "#pink-02.75" | "#pink-02.76" | "#pink-02.77" | "#pink-02.78" | "#pink-02.79" | "#pink-02.80" | "#pink-02.81" | "#pink-02.82" | "#pink-02.83" | "#pink-02.84" | "#pink-02.85" | "#pink-02.86" | "#pink-02.87" | "#pink-02.88" | "#pink-02.89" | "#pink-02.90" | "#pink-02.91" | "#pink-02.92" | "#pink-02.93" | "#pink-02.94" | "#pink-02.95" | "#pink-02.96" | "#pink-02.97" | "#pink-02.98" | "#pink-02.99" | "#pink-02.100" | "#border" | "#border.0" | "#border.1" | "#border.2" | "#border.3" | "#border.4" | "#border.5" | "#border.6" | "#border.7" | "#border.8" | "#border.9" | "#border.00" | "#border.01" | "#border.02" | "#border.03" | "#border.04" | "#border.05" | "#border.06" | "#border.07" | "#border.08" | "#border.09" | "#border.10" | "#border.11" | "#border.12" | "#border.13" | "#border.14" | "#border.15" | "#border.16" | "#border.17" | "#border.18" | "#border.19" | "#border.20" | "#border.21" | "#border.22" | "#border.23" | "#border.24" | "#border.25" | "#border.26" | "#border.27" | "#border.28" | "#border.29" | "#border.30" | "#border.31" | "#border.32" | "#border.33" | "#border.34" | "#border.35" | "#border.36" | "#border.37" | "#border.38" | "#border.39" | "#border.40" | "#border.41" | "#border.42" | "#border.43" | "#border.44" | "#border.45" | "#border.46" | "#border.47" | "#border.48" | "#border.49" | "#border.50" | "#border.51" | "#border.52" | "#border.53" | "#border.54" | "#border.55" | "#border.56" | "#border.57" | "#border.58" | "#border.59" | "#border.60" | "#border.61" | "#border.62" | "#border.63" | "#border.64" | "#border.65" | "#border.66" | "#border.67" | "#border.68" | "#border.69" | "#border.70" | "#border.71" | "#border.72" | "#border.73" | "#border.74" | "#border.75" | "#border.76" | "#border.77" | "#border.78" | "#border.79" | "#border.80" | "#border.81" | "#border.82" | "#border.83" | "#border.84" | "#border.85" | "#border.86" | "#border.87" | "#border.88" | "#border.89" | "#border.90" | "#border.91" | "#border.92" | "#border.93" | "#border.94" | "#border.95" | "#border.96" | "#border.97" | "#border.98" | "#border.99" | "#border.100" | "#clear" | "#clear.0" | "#clear.1" | "#clear.2" | "#clear.3" | "#clear.4" | "#clear.5" | "#clear.6" | "#clear.7" | "#clear.8" | "#clear.9" | "#clear.00" | "#clear.01" | "#clear.02" | "#clear.03" | "#clear.04" | "#clear.05" | "#clear.06" | "#clear.07" | "#clear.08" | "#clear.09" | "#clear.10" | "#clear.11" | "#clear.12" | "#clear.13" | "#clear.14" | "#clear.15" | "#clear.16" | "#clear.17" | "#clear.18" | "#clear.19" | "#clear.20" | "#clear.21" | "#clear.22" | "#clear.23" | "#clear.24" | "#clear.25" | "#clear.26" | "#clear.27" | "#clear.28" | "#clear.29" | "#clear.30" | "#clear.31" | "#clear.32" | "#clear.33" | "#clear.34" | "#clear.35" | "#clear.36" | "#clear.37" | "#clear.38" | "#clear.39" | "#clear.40" | "#clear.41" | "#clear.42" | "#clear.43" | "#clear.44" | "#clear.45" | "#clear.46" | "#clear.47" | "#clear.48" | "#clear.49" | "#clear.50" | "#clear.51" | "#clear.52" | "#clear.53" | "#clear.54" | "#clear.55" | "#clear.56" | "#clear.57" | "#clear.58" | "#clear.59" | "#clear.60" | "#clear.61" | "#clear.62" | "#clear.63" | "#clear.64" | "#clear.65" | "#clear.66" | "#clear.67" | "#clear.68" | "#clear.69" | "#clear.70" | "#clear.71" | "#clear.72" | "#clear.73" | "#clear.74" | "#clear.75" | "#clear.76" | "#clear.77" | "#clear.78" | "#clear.79" | "#clear.80" | "#clear.81" | "#clear.82" | "#clear.83" | "#clear.84" | "#clear.85" | "#clear.86" | "#clear.87" | "#clear.88" | "#clear.89" | "#clear.90" | "#clear.91" | "#clear.92" | "#clear.93" | "#clear.94" | "#clear.95" | "#clear.96" | "#clear.97" | "#clear.98" | "#clear.99" | "#clear.100" | "#shadow" | "#shadow.0" | "#shadow.1" | "#shadow.2" | "#shadow.3" | "#shadow.4" | "#shadow.5" | "#shadow.6" | "#shadow.7" | "#shadow.8" | "#shadow.9" | "#shadow.00" | "#shadow.01" | "#shadow.02" | "#shadow.03" | "#shadow.04" | "#shadow.05" | "#shadow.06" | "#shadow.07" | "#shadow.08" | "#shadow.09" | "#shadow.10" | "#shadow.11" | "#shadow.12" | "#shadow.13" | "#shadow.14" | "#shadow.15" | "#shadow.16" | "#shadow.17" | "#shadow.18" | "#shadow.19" | "#shadow.20" | "#shadow.21" | "#shadow.22" | "#shadow.23" | "#shadow.24" | "#shadow.25" | "#shadow.26" | "#shadow.27" | "#shadow.28" | "#shadow.29" | "#shadow.30" | "#shadow.31" | "#shadow.32" | "#shadow.33" | "#shadow.34" | "#shadow.35" | "#shadow.36" | "#shadow.37" | "#shadow.38" | "#shadow.39" | "#shadow.40" | "#shadow.41" | "#shadow.42" | "#shadow.43" | "#shadow.44" | "#shadow.45" | "#shadow.46" | "#shadow.47" | "#shadow.48" | "#shadow.49" | "#shadow.50" | "#shadow.51" | "#shadow.52" | "#shadow.53" | "#shadow.54" | "#shadow.55" | "#shadow.56" | "#shadow.57" | "#shadow.58" | "#shadow.59" | "#shadow.60" | "#shadow.61" | "#shadow.62" | "#shadow.63" | "#shadow.64" | "#shadow.65" | "#shadow.66" | "#shadow.67" | "#shadow.68" | "#shadow.69" | "#shadow.70" | "#shadow.71" | "#shadow.72" | "#shadow.73" | "#shadow.74" | "#shadow.75" | "#shadow.76" | "#shadow.77" | "#shadow.78" | "#shadow.79" | "#shadow.80" | "#shadow.81" | "#shadow.82" | "#shadow.83" | "#shadow.84" | "#shadow.85" | "#shadow.86" | "#shadow.87" | "#shadow.88" | "#shadow.89" | "#shadow.90" | "#shadow.91" | "#shadow.92" | "#shadow.93" | "#shadow.94" | "#shadow.95" | "#shadow.96" | "#shadow.97" | "#shadow.98" | "#shadow.99" | "#shadow.100" | "#draft" | "#draft.0" | "#draft.1" | "#draft.2" | "#draft.3" | "#draft.4" | "#draft.5" | "#draft.6" | "#draft.7" | "#draft.8" | "#draft.9" | "#draft.00" | "#draft.01" | "#draft.02" | "#draft.03" | "#draft.04" | "#draft.05" | "#draft.06" | "#draft.07" | "#draft.08" | "#draft.09" | "#draft.10" | "#draft.11" | "#draft.12" | "#draft.13" | "#draft.14" | "#draft.15" | "#draft.16" | "#draft.17" | "#draft.18" | "#draft.19" | "#draft.20" | "#draft.21" | "#draft.22" | "#draft.23" | "#draft.24" | "#draft.25" | "#draft.26" | "#draft.27" | "#draft.28" | "#draft.29" | "#draft.30" | "#draft.31" | "#draft.32" | "#draft.33" | "#draft.34" | "#draft.35" | "#draft.36" | "#draft.37" | "#draft.38" | "#draft.39" | "#draft.40" | "#draft.41" | "#draft.42" | "#draft.43" | "#draft.44" | "#draft.45" | "#draft.46" | "#draft.47" | "#draft.48" | "#draft.49" | "#draft.50" | "#draft.51" | "#draft.52" | "#draft.53" | "#draft.54" | "#draft.55" | "#draft.56" | "#draft.57" | "#draft.58" | "#draft.59" | "#draft.60" | "#draft.61" | "#draft.62" | "#draft.63" | "#draft.64" | "#draft.65" | "#draft.66" | "#draft.67" | "#draft.68" | "#draft.69" | "#draft.70" | "#draft.71" | "#draft.72" | "#draft.73" | "#draft.74" | "#draft.75" | "#draft.76" | "#draft.77" | "#draft.78" | "#draft.79" | "#draft.80" | "#draft.81" | "#draft.82" | "#draft.83" | "#draft.84" | "#draft.85" | "#draft.86" | "#draft.87" | "#draft.88" | "#draft.89" | "#draft.90" | "#draft.91" | "#draft.92" | "#draft.93" | "#draft.94" | "#draft.95" | "#draft.96" | "#draft.97" | "#draft.98" | "#draft.99" | "#draft.100" | "#minor" | "#minor.0" | "#minor.1" | "#minor.2" | "#minor.3" | "#minor.4" | "#minor.5" | "#minor.6" | "#minor.7" | "#minor.8" | "#minor.9" | "#minor.00" | "#minor.01" | "#minor.02" | "#minor.03" | "#minor.04" | "#minor.05" | "#minor.06" | "#minor.07" | "#minor.08" | "#minor.09" | "#minor.10" | "#minor.11" | "#minor.12" | "#minor.13" | "#minor.14" | "#minor.15" | "#minor.16" | "#minor.17" | "#minor.18" | "#minor.19" | "#minor.20" | "#minor.21" | "#minor.22" | "#minor.23" | "#minor.24" | "#minor.25" | "#minor.26" | "#minor.27" | "#minor.28" | "#minor.29" | "#minor.30" | "#minor.31" | "#minor.32" | "#minor.33" | "#minor.34" | "#minor.35" | "#minor.36" | "#minor.37" | "#minor.38" | "#minor.39" | "#minor.40" | "#minor.41" | "#minor.42" | "#minor.43" | "#minor.44" | "#minor.45" | "#minor.46" | "#minor.47" | "#minor.48" | "#minor.49" | "#minor.50" | "#minor.51" | "#minor.52" | "#minor.53" | "#minor.54" | "#minor.55" | "#minor.56" | "#minor.57" | "#minor.58" | "#minor.59" | "#minor.60" | "#minor.61" | "#minor.62" | "#minor.63" | "#minor.64" | "#minor.65" | "#minor.66" | "#minor.67" | "#minor.68" | "#minor.69" | "#minor.70" | "#minor.71" | "#minor.72" | "#minor.73" | "#minor.74" | "#minor.75" | "#minor.76" | "#minor.77" | "#minor.78" | "#minor.79" | "#minor.80" | "#minor.81" | "#minor.82" | "#minor.83" | "#minor.84" | "#minor.85" | "#minor.86" | "#minor.87" | "#minor.88" | "#minor.89" | "#minor.90" | "#minor.91" | "#minor.92" | "#minor.93" | "#minor.94" | "#minor.95" | "#minor.96" | "#minor.97" | "#minor.98" | "#minor.99" | "#minor.100" | `rgb(${string})` | `rgba(${string})` | undefined>;
13
- border?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Border<string | number> | undefined>;
14
- clear?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Clear | undefined>;
15
- shadow?: import("../../../tasty/index").ResponsiveStyleValue<string | boolean | undefined>;
16
- font?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.FontFamily | undefined>;
17
- outline?: import("../../../tasty/index").ResponsiveStyleValue<string | boolean | undefined>;
18
- gap?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Gap<string | number> | undefined>;
19
- padding?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Padding<string | number> | undefined>;
20
- margin?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Margin<string | number> | undefined>;
21
- width?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Width<string | number> | undefined>;
22
- height?: import("../../../tasty/index").ResponsiveStyleValue<boolean | import("csstype").Property.Height<string | number> | undefined>;
23
- transition?: import("../../../tasty/index").ResponsiveStyleValue<string | (string & {}) | undefined>;
24
- placeContent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PlaceContent | undefined>;
25
- placeItems?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PlaceItems | undefined>;
26
- accentColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AccentColor | undefined>;
27
- alignContent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
28
- alignItems?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
29
- alignSelf?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
30
- alignTracks?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignTracks | undefined>;
31
- animationComposition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationComposition | undefined>;
32
- animationDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
33
- animationDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
34
- animationDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
35
- animationFillMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
36
- animationIterationCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
37
- animationName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
38
- animationPlayState?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
39
- animationTimeline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationTimeline | undefined>;
40
- animationTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
41
- appearance?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Appearance | undefined>;
42
- aspectRatio?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AspectRatio | undefined>;
43
- backdropFilter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
44
- backfaceVisibility?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
45
- backgroundAttachment?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundAttachment | undefined>;
46
- backgroundBlendMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundBlendMode | undefined>;
47
- backgroundClip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
48
- backgroundColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | undefined>;
49
- backgroundImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundImage | undefined>;
50
- backgroundOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
51
- backgroundPositionX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
52
- backgroundPositionY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | undefined>;
53
- backgroundRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundRepeat | undefined>;
54
- backgroundSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
55
- blockOverflow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BlockOverflow | undefined>;
56
- blockSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | undefined>;
57
- borderBlockColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockColor | undefined>;
58
- borderBlockEndColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndColor | undefined>;
59
- borderBlockEndStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | undefined>;
60
- borderBlockEndWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>;
61
- borderBlockStartColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartColor | undefined>;
62
- borderBlockStartStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | undefined>;
63
- borderBlockStartWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>;
64
- borderBlockStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockStyle | undefined>;
65
- borderBlockWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | undefined>;
66
- borderBottomColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomColor | undefined>;
67
- borderBottomLeftRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
68
- borderBottomRightRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
69
- borderBottomStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomStyle | undefined>;
70
- borderBottomWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomWidth<string | number> | undefined>;
71
- borderCollapse?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderCollapse | undefined>;
72
- borderEndEndRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>;
73
- borderEndStartRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>;
74
- borderImageOutset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageOutset<string | number> | undefined>;
75
- borderImageRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageRepeat | undefined>;
76
- borderImageSlice?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
77
- borderImageSource?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageSource | undefined>;
78
- borderImageWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | undefined>;
79
- borderInlineColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineColor | undefined>;
80
- borderInlineEndColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
81
- borderInlineEndStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
82
- borderInlineEndWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
83
- borderInlineStartColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
84
- borderInlineStartStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
85
- borderInlineStartWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>;
86
- borderInlineStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStyle | undefined>;
87
- borderInlineWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | undefined>;
88
- borderLeftColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderLeftColor | undefined>;
89
- borderLeftStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | undefined>;
90
- borderLeftWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | undefined>;
91
- borderRightColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRightColor | undefined>;
92
- borderRightStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRightStyle | undefined>;
93
- borderRightWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRightWidth<string | number> | undefined>;
94
- borderSpacing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderSpacing<string | number> | undefined>;
95
- borderStartEndRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>;
96
- borderStartStartRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>;
97
- borderTopColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopColor | undefined>;
98
- borderTopLeftRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
99
- borderTopRightRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
100
- borderTopStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopStyle | undefined>;
101
- borderTopWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopWidth<string | number> | undefined>;
102
- bottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | undefined>;
103
- boxDecorationBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
104
- boxShadow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
105
- boxSizing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
106
- breakAfter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BreakAfter | undefined>;
107
- breakBefore?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BreakBefore | undefined>;
108
- breakInside?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BreakInside | undefined>;
109
- captionSide?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CaptionSide | undefined>;
110
- caretColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CaretColor | undefined>;
111
- caretShape?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CaretShape | undefined>;
112
- clipPath?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
113
- colorAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
114
- colorScheme?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColorScheme | undefined>;
115
- columnCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
116
- columnFill?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
117
- columnGap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | undefined>;
118
- columnRuleColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
119
- columnRuleStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
120
- columnRuleWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
121
- columnSpan?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
122
- columnWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
123
- contain?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Contain | undefined>;
124
- containIntrinsicBlockSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>;
125
- containIntrinsicHeight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>;
126
- containIntrinsicInlineSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>;
127
- containIntrinsicWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>;
128
- containerName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainerName | undefined>;
129
- containerType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainerType | undefined>;
130
- content?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Content | undefined>;
131
- contentVisibility?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | undefined>;
132
- counterIncrement?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CounterIncrement | undefined>;
133
- counterReset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CounterReset | undefined>;
134
- counterSet?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.CounterSet | undefined>;
135
- cursor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Cursor | undefined>;
136
- direction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Direction | undefined>;
137
- display?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Display | undefined>;
138
- emptyCells?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.EmptyCells | undefined>;
139
- flexBasis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
140
- flexDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
141
- flexGrow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
142
- flexShrink?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
143
- flexWrap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
144
- float?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Float | undefined>;
145
- fontFamily?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontFamily | undefined>;
146
- fontFeatureSettings?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
147
- fontKerning?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
148
- fontLanguageOverride?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
149
- fontOpticalSizing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontOpticalSizing | undefined>;
150
- fontPalette?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontPalette | undefined>;
151
- fontSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | undefined>;
152
- fontSizeAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | undefined>;
153
- fontSmooth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
154
- fontStretch?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontStretch | undefined>;
155
- fontStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontStyle | undefined>;
156
- fontSynthesis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSynthesis | undefined>;
157
- fontVariant?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariant | undefined>;
158
- fontVariantAlternates?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantAlternates | undefined>;
159
- fontVariantCaps?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantCaps | undefined>;
160
- fontVariantEastAsian?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantEastAsian | undefined>;
161
- fontVariantEmoji?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantEmoji | undefined>;
162
- fontVariantLigatures?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
163
- fontVariantNumeric?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantNumeric | undefined>;
164
- fontVariantPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | undefined>;
165
- fontVariationSettings?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariationSettings | undefined>;
166
- fontWeight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontWeight | undefined>;
167
- forcedColorAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | undefined>;
168
- gridAutoColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | undefined>;
169
- gridAutoFlow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridAutoFlow | undefined>;
170
- gridAutoRows?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | undefined>;
171
- gridColumnEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridColumnEnd | undefined>;
172
- gridColumnStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridColumnStart | undefined>;
173
- gridRowEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridRowEnd | undefined>;
174
- gridRowStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridRowStart | undefined>;
175
- gridTemplateAreas?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
176
- gridTemplateColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
177
- gridTemplateRows?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
178
- hangingPunctuation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.HangingPunctuation | undefined>;
179
- hyphenateCharacter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
180
- hyphenateLimitChars?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.HyphenateLimitChars | undefined>;
181
- hyphens?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
182
- imageOrientation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ImageOrientation | undefined>;
183
- imageRendering?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ImageRendering | undefined>;
184
- imageResolution?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ImageResolution | undefined>;
185
- initialLetter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
186
- inlineSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | undefined>;
187
- inputSecurity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InputSecurity | undefined>;
188
- insetBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
189
- insetBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
190
- insetInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
191
- insetInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
192
- isolation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Isolation | undefined>;
193
- justifyContent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
194
- justifyItems?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.JustifyItems | undefined>;
195
- justifySelf?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.JustifySelf | undefined>;
196
- justifyTracks?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.JustifyTracks | undefined>;
197
- left?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | undefined>;
198
- letterSpacing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | undefined>;
199
- lineBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
200
- lineHeight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | undefined>;
201
- lineHeightStep?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | undefined>;
202
- listStyleImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ListStyleImage | undefined>;
203
- listStylePosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ListStylePosition | undefined>;
204
- listStyleType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ListStyleType | undefined>;
205
- marginBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
206
- marginBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
207
- marginBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
208
- marginInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
209
- marginInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
210
- marginLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
211
- marginRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | undefined>;
212
- marginTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | undefined>;
213
- marginTrim?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginTrim | undefined>;
214
- maskBorderMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | undefined>;
215
- maskBorderOutset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
216
- maskBorderRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
217
- maskBorderSlice?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
218
- maskBorderSource?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
219
- maskBorderWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
220
- maskClip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskClip | undefined>;
221
- maskComposite?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskComposite | undefined>;
222
- maskImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskImage | undefined>;
223
- maskMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskMode | undefined>;
224
- maskOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskOrigin | undefined>;
225
- maskPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskPosition<string | number> | undefined>;
226
- maskRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskRepeat | undefined>;
227
- maskSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskSize<string | number> | undefined>;
228
- maskType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskType | undefined>;
229
- mathDepth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MathDepth | undefined>;
230
- mathShift?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MathShift | undefined>;
231
- mathStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MathStyle | undefined>;
232
- maxBlockSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxBlockSize<string | number> | undefined>;
233
- maxHeight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | undefined>;
234
- maxInlineSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
235
- maxLines?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxLines | undefined>;
236
- maxWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | undefined>;
237
- minBlockSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MinBlockSize<string | number> | undefined>;
238
- minHeight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | undefined>;
239
- minInlineSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MinInlineSize<string | number> | undefined>;
240
- minWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | undefined>;
241
- mixBlendMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MixBlendMode | undefined>;
242
- motionDistance?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
243
- motionPath?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
244
- motionRotation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
245
- objectFit?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
246
- objectPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
247
- offsetAnchor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | undefined>;
248
- offsetDistance?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
249
- offsetPath?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
250
- offsetPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetPosition<string | number> | undefined>;
251
- offsetRotate?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
252
- offsetRotation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
253
- opacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
254
- order?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
255
- orphans?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Orphans | undefined>;
256
- outlineColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
257
- outlineOffset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | undefined>;
258
- outlineStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
259
- outlineWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
260
- overflowAnchor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | undefined>;
261
- overflowBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | undefined>;
262
- overflowClipBox?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowClipBox | undefined>;
263
- overflowClipMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowClipMargin<string | number> | undefined>;
264
- overflowInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowInline | undefined>;
265
- overflowWrap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowWrap | undefined>;
266
- overflowX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
267
- overflowY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
268
- overscrollBehaviorBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorBlock | undefined>;
269
- overscrollBehaviorInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorInline | undefined>;
270
- overscrollBehaviorX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorX | undefined>;
271
- overscrollBehaviorY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorY | undefined>;
272
- paddingBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
273
- paddingBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
274
- paddingBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
275
- paddingInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
276
- paddingInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
277
- paddingLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
278
- paddingRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
279
- paddingTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
280
- page?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Page | undefined>;
281
- pageBreakAfter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | undefined>;
282
- pageBreakBefore?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | undefined>;
283
- pageBreakInside?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | undefined>;
284
- paintOrder?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaintOrder | undefined>;
285
- perspective?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
286
- perspectiveOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
287
- pointerEvents?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PointerEvents | undefined>;
288
- position?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Position | undefined>;
289
- printColorAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
290
- quotes?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Quotes | undefined>;
291
- resize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Resize | undefined>;
292
- right?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | undefined>;
293
- rotate?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Rotate | undefined>;
294
- rowGap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | undefined>;
295
- rubyAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.RubyAlign | undefined>;
296
- rubyMerge?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.RubyMerge | undefined>;
297
- rubyPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
298
- scale?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Scale | undefined>;
299
- scrollBehavior?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | undefined>;
300
- scrollMarginBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>;
301
- scrollMarginBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>;
302
- scrollMarginBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
303
- scrollMarginInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>;
304
- scrollMarginInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>;
305
- scrollMarginLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
306
- scrollMarginRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
307
- scrollMarginTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
308
- scrollPaddingBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>;
309
- scrollPaddingBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>;
310
- scrollPaddingBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>;
311
- scrollPaddingInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>;
312
- scrollPaddingInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>;
313
- scrollPaddingLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
314
- scrollPaddingRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>;
315
- scrollPaddingTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
316
- scrollSnapAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapAlign | undefined>;
317
- scrollSnapMarginBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
318
- scrollSnapMarginLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
319
- scrollSnapMarginRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
320
- scrollSnapMarginTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
321
- scrollSnapStop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapStop | undefined>;
322
- scrollSnapType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
323
- scrollTimelineAxis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineAxis | undefined>;
324
- scrollTimelineName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineName | undefined>;
325
- scrollbarColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollbarColor | undefined>;
326
- scrollbarGutter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollbarGutter | undefined>;
327
- scrollbarWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollbarWidth | undefined>;
328
- shapeImageThreshold?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | undefined>;
329
- shapeMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
330
- shapeOutside?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ShapeOutside | undefined>;
331
- tabSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
332
- tableLayout?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TableLayout | undefined>;
333
- textAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextAlign | undefined>;
334
- textAlignLast?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
335
- textCombineUpright?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
336
- textDecorationColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
337
- textDecorationLine?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
338
- textDecorationSkip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
339
- textDecorationSkipInk?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkipInk | undefined>;
340
- textDecorationStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
341
- textDecorationThickness?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationThickness<string | number> | undefined>;
342
- textEmphasisColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
343
- textEmphasisPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
344
- textEmphasisStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
345
- textIndent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextIndent<string | number> | undefined>;
346
- textJustify?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextJustify | undefined>;
347
- textOrientation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
348
- textOverflow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
349
- textRendering?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextRendering | undefined>;
350
- textShadow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextShadow | undefined>;
351
- textSizeAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
352
- textTransform?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextTransform | undefined>;
353
- textUnderlineOffset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>;
354
- textUnderlinePosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
355
- top?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | undefined>;
356
- touchAction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
357
- transform?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
358
- transformBox?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformBox | undefined>;
359
- transformOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
360
- transformStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
361
- transitionDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
362
- transitionDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
363
- transitionProperty?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
364
- transitionTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
365
- translate?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Translate<string | number> | undefined>;
366
- unicodeBidi?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | undefined>;
367
- userSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
368
- verticalAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | undefined>;
369
- viewTransitionName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ViewTransitionName | undefined>;
370
- visibility?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Visibility | undefined>;
371
- whiteSpace?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WhiteSpace | undefined>;
372
- widows?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Widows | undefined>;
373
- willChange?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WillChange | undefined>;
374
- wordBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
375
- wordSpacing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | undefined>;
376
- wordWrap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WordWrap | undefined>;
377
- writingMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
378
- zIndex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ZIndex | undefined>;
379
- zoom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Zoom | undefined>;
380
- all?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Globals | undefined>;
381
- animation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
382
- background?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | undefined>;
383
- backgroundPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | undefined>;
384
- borderBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | undefined>;
385
- borderBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | undefined>;
386
- borderBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | undefined>;
387
- borderBottom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | undefined>;
388
- borderColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderColor | undefined>;
389
- borderImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
390
- borderInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | undefined>;
391
- borderInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | undefined>;
392
- borderInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | undefined>;
393
- borderLeft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | undefined>;
394
- borderRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
395
- borderRight?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | undefined>;
396
- borderStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderStyle | undefined>;
397
- borderTop?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | undefined>;
398
- borderWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderWidth<string | number> | undefined>;
399
- caret?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Caret | undefined>;
400
- columnRule?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
401
- columns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
402
- containIntrinsicSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>;
403
- container?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Container | undefined>;
404
- flex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
405
- flexFlow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
406
- grid?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Grid | undefined>;
407
- gridArea?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridArea | undefined>;
408
- gridColumn?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridColumn | undefined>;
409
- gridRow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridRow | undefined>;
410
- gridTemplate?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplate | undefined>;
411
- inset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Inset<string | number> | undefined>;
412
- insetBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
413
- insetInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
414
- lineClamp?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineClamp | undefined>;
415
- listStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ListStyle | undefined>;
416
- marginBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | undefined>;
417
- marginInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | undefined>;
418
- mask?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Mask<string | number> | undefined>;
419
- maskBorder?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
420
- motion?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
421
- offset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
422
- overflow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Overflow | undefined>;
423
- overscrollBehavior?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverscrollBehavior | undefined>;
424
- paddingBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | undefined>;
425
- paddingInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | undefined>;
426
- placeSelf?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PlaceSelf | undefined>;
427
- scrollMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
428
- scrollMarginBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>;
429
- scrollMarginInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | undefined>;
430
- scrollPadding?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPadding<string | number> | undefined>;
431
- scrollPaddingBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>;
432
- scrollPaddingInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>;
433
- scrollSnapMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
434
- scrollTimeline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollTimeline | undefined>;
435
- textDecoration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | undefined>;
436
- textEmphasis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
437
- MozAnimationDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
438
- MozAnimationDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
439
- MozAnimationDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
440
- MozAnimationFillMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
441
- MozAnimationIterationCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
442
- MozAnimationName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
443
- MozAnimationPlayState?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
444
- MozAnimationTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
445
- MozAppearance?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozAppearance | undefined>;
446
- MozBackfaceVisibility?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
447
- MozBinding?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozBinding | undefined>;
448
- MozBorderBottomColors?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozBorderBottomColors | undefined>;
449
- MozBorderEndColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
450
- MozBorderEndStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
451
- MozBorderEndWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
452
- MozBorderLeftColors?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozBorderLeftColors | undefined>;
453
- MozBorderRightColors?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozBorderRightColors | undefined>;
454
- MozBorderStartColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
455
- MozBorderStartStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
456
- MozBorderTopColors?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozBorderTopColors | undefined>;
457
- MozBoxSizing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
458
- MozColumnCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
459
- MozColumnFill?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
460
- MozColumnRuleColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
461
- MozColumnRuleStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
462
- MozColumnRuleWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
463
- MozColumnWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
464
- MozContextProperties?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozContextProperties | undefined>;
465
- MozFontFeatureSettings?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
466
- MozFontLanguageOverride?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
467
- MozHyphens?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
468
- MozImageRegion?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozImageRegion | undefined>;
469
- MozMarginEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
470
- MozMarginStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
471
- MozOrient?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOrient | undefined>;
472
- MozOsxFontSmoothing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
473
- MozPaddingEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
474
- MozPaddingStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
475
- MozPerspective?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
476
- MozPerspectiveOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
477
- MozStackSizing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | undefined>;
478
- MozTabSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
479
- MozTextBlink?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | undefined>;
480
- MozTextSizeAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
481
- MozTransformOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
482
- MozTransformStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
483
- MozTransitionDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
484
- MozTransitionDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
485
- MozTransitionProperty?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
486
- MozTransitionTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
487
- MozUserFocus?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | undefined>;
488
- MozUserModify?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozUserModify | undefined>;
489
- MozUserSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
490
- MozWindowDragging?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | undefined>;
491
- MozWindowShadow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozWindowShadow | undefined>;
492
- msAccelerator?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsAccelerator | undefined>;
493
- msBlockProgression?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsBlockProgression | undefined>;
494
- msContentZoomChaining?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomChaining | undefined>;
495
- msContentZoomLimitMax?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMax | undefined>;
496
- msContentZoomLimitMin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMin | undefined>;
497
- msContentZoomSnapPoints?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapPoints | undefined>;
498
- msContentZoomSnapType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapType | undefined>;
499
- msContentZooming?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZooming | undefined>;
500
- msFilter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsFilter | undefined>;
501
- msFlexDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
502
- msFlexPositive?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
503
- msFlowFrom?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsFlowFrom | undefined>;
504
- msFlowInto?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsFlowInto | undefined>;
505
- msGridColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsGridColumns<string | number> | undefined>;
506
- msGridRows?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsGridRows<string | number> | undefined>;
507
- msHighContrastAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsHighContrastAdjust | undefined>;
508
- msHyphenateLimitChars?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitChars | undefined>;
509
- msHyphenateLimitLines?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitLines | undefined>;
510
- msHyphenateLimitZone?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>;
511
- msHyphens?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
512
- msImeAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsImeAlign | undefined>;
513
- msLineBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
514
- msOrder?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
515
- msOverflowStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsOverflowStyle | undefined>;
516
- msOverflowX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
517
- msOverflowY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
518
- msScrollChaining?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollChaining | undefined>;
519
- msScrollLimitXMax?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>;
520
- msScrollLimitXMin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>;
521
- msScrollLimitYMax?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>;
522
- msScrollLimitYMin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>;
523
- msScrollRails?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollRails | undefined>;
524
- msScrollSnapPointsX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsX | undefined>;
525
- msScrollSnapPointsY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsY | undefined>;
526
- msScrollSnapType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapType | undefined>;
527
- msScrollTranslation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollTranslation | undefined>;
528
- msScrollbar3dlightColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbar3dlightColor | undefined>;
529
- msScrollbarArrowColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarArrowColor | undefined>;
530
- msScrollbarBaseColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarBaseColor | undefined>;
531
- msScrollbarDarkshadowColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarDarkshadowColor | undefined>;
532
- msScrollbarFaceColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarFaceColor | undefined>;
533
- msScrollbarHighlightColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarHighlightColor | undefined>;
534
- msScrollbarShadowColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarShadowColor | undefined>;
535
- msScrollbarTrackColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollbarTrackColor | undefined>;
536
- msTextAutospace?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsTextAutospace | undefined>;
537
- msTextCombineHorizontal?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
538
- msTextOverflow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
539
- msTouchAction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
540
- msTouchSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsTouchSelect | undefined>;
541
- msTransform?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
542
- msTransformOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
543
- msTransitionDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
544
- msTransitionDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
545
- msTransitionProperty?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
546
- msTransitionTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
547
- msUserSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsUserSelect | undefined>;
548
- msWordBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
549
- msWrapFlow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsWrapFlow | undefined>;
550
- msWrapMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsWrapMargin<string | number> | undefined>;
551
- msWrapThrough?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsWrapThrough | undefined>;
552
- msWritingMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
553
- WebkitAlignContent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
554
- WebkitAlignItems?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
555
- WebkitAlignSelf?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
556
- WebkitAnimationDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
557
- WebkitAnimationDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
558
- WebkitAnimationDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
559
- WebkitAnimationFillMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
560
- WebkitAnimationIterationCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
561
- WebkitAnimationName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
562
- WebkitAnimationPlayState?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
563
- WebkitAnimationTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
564
- WebkitAppearance?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitAppearance | undefined>;
565
- WebkitBackdropFilter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
566
- WebkitBackfaceVisibility?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
567
- WebkitBackgroundClip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
568
- WebkitBackgroundOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
569
- WebkitBackgroundSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
570
- WebkitBorderBeforeColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeColor | undefined>;
571
- WebkitBorderBeforeStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeStyle | undefined>;
572
- WebkitBorderBeforeWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>;
573
- WebkitBorderBottomLeftRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
574
- WebkitBorderBottomRightRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
575
- WebkitBorderImageSlice?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
576
- WebkitBorderTopLeftRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
577
- WebkitBorderTopRightRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
578
- WebkitBoxDecorationBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
579
- WebkitBoxReflect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>;
580
- WebkitBoxShadow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
581
- WebkitBoxSizing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
582
- WebkitClipPath?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
583
- WebkitColumnCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
584
- WebkitColumnFill?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
585
- WebkitColumnRuleColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
586
- WebkitColumnRuleStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
587
- WebkitColumnRuleWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
588
- WebkitColumnSpan?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
589
- WebkitColumnWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
590
- WebkitFilter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
591
- WebkitFlexBasis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
592
- WebkitFlexDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
593
- WebkitFlexGrow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
594
- WebkitFlexShrink?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
595
- WebkitFlexWrap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
596
- WebkitFontFeatureSettings?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
597
- WebkitFontKerning?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
598
- WebkitFontSmoothing?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
599
- WebkitFontVariantLigatures?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
600
- WebkitHyphenateCharacter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
601
- WebkitHyphens?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
602
- WebkitInitialLetter?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
603
- WebkitJustifyContent?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
604
- WebkitLineBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
605
- WebkitLineClamp?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | undefined>;
606
- WebkitMarginEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
607
- WebkitMarginStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
608
- WebkitMaskAttachment?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskAttachment | undefined>;
609
- WebkitMaskBoxImageOutset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
610
- WebkitMaskBoxImageRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
611
- WebkitMaskBoxImageSlice?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
612
- WebkitMaskBoxImageSource?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
613
- WebkitMaskBoxImageWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
614
- WebkitMaskClip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskClip | undefined>;
615
- WebkitMaskComposite?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskComposite | undefined>;
616
- WebkitMaskImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskImage | undefined>;
617
- WebkitMaskOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskOrigin | undefined>;
618
- WebkitMaskPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>;
619
- WebkitMaskPositionX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>;
620
- WebkitMaskPositionY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>;
621
- WebkitMaskRepeat?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeat | undefined>;
622
- WebkitMaskRepeatX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatX | undefined>;
623
- WebkitMaskRepeatY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatY | undefined>;
624
- WebkitMaskSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMaskSize<string | number> | undefined>;
625
- WebkitMaxInlineSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
626
- WebkitOrder?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
627
- WebkitOverflowScrolling?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitOverflowScrolling | undefined>;
628
- WebkitPaddingEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
629
- WebkitPaddingStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
630
- WebkitPerspective?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
631
- WebkitPerspectiveOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
632
- WebkitPrintColorAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
633
- WebkitRubyPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
634
- WebkitScrollSnapType?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
635
- WebkitShapeMargin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
636
- WebkitTapHighlightColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTapHighlightColor | undefined>;
637
- WebkitTextCombine?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
638
- WebkitTextDecorationColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
639
- WebkitTextDecorationLine?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
640
- WebkitTextDecorationSkip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
641
- WebkitTextDecorationStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
642
- WebkitTextEmphasisColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
643
- WebkitTextEmphasisPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
644
- WebkitTextEmphasisStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
645
- WebkitTextFillColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTextFillColor | undefined>;
646
- WebkitTextOrientation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
647
- WebkitTextSizeAdjust?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
648
- WebkitTextStrokeColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeColor | undefined>;
649
- WebkitTextStrokeWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>;
650
- WebkitTextUnderlinePosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
651
- WebkitTouchCallout?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTouchCallout | undefined>;
652
- WebkitTransform?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
653
- WebkitTransformOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
654
- WebkitTransformStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
655
- WebkitTransitionDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
656
- WebkitTransitionDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
657
- WebkitTransitionProperty?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
658
- WebkitTransitionTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
659
- WebkitUserModify?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | undefined>;
660
- WebkitUserSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
661
- WebkitWritingMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
662
- MozAnimation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
663
- MozBorderImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
664
- MozColumnRule?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
665
- MozColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
666
- MozTransition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
667
- msContentZoomLimit?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimit | undefined>;
668
- msContentZoomSnap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnap | undefined>;
669
- msFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
670
- msScrollLimit?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollLimit | undefined>;
671
- msScrollSnapX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapX | undefined>;
672
- msScrollSnapY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapY | undefined>;
673
- msTransition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
674
- WebkitAnimation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
675
- WebkitBorderBefore?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>;
676
- WebkitBorderImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
677
- WebkitBorderRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
678
- WebkitColumnRule?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
679
- WebkitColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
680
- WebkitFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
681
- WebkitFlexFlow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
682
- WebkitMask?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitMask<string | number> | undefined>;
683
- WebkitMaskBoxImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
684
- WebkitTextEmphasis?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
685
- WebkitTextStroke?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | undefined>;
686
- WebkitTransition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
687
- azimuth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Azimuth | undefined>;
688
- boxAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
689
- boxDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
690
- boxFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
691
- boxFlexGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
692
- boxLines?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
693
- boxOrdinalGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
694
- boxOrient?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
695
- boxPack?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
696
- clip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Clip | undefined>;
697
- gridColumnGap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | undefined>;
698
- gridGap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | undefined>;
699
- gridRowGap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | undefined>;
700
- imeMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
701
- offsetBlock?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
702
- offsetBlockEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
703
- offsetBlockStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
704
- offsetInline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
705
- offsetInlineEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
706
- offsetInlineStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
707
- scrollSnapCoordinate?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>;
708
- scrollSnapDestination?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>;
709
- scrollSnapPointsX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
710
- scrollSnapPointsY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
711
- scrollSnapTypeX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeX | undefined>;
712
- scrollSnapTypeY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeY | undefined>;
713
- KhtmlBoxAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
714
- KhtmlBoxDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
715
- KhtmlBoxFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
716
- KhtmlBoxFlexGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
717
- KhtmlBoxLines?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
718
- KhtmlBoxOrdinalGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
719
- KhtmlBoxOrient?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
720
- KhtmlBoxPack?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
721
- KhtmlLineBreak?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
722
- KhtmlOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
723
- KhtmlUserSelect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
724
- MozBackgroundClip?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
725
- MozBackgroundInlinePolicy?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
726
- MozBackgroundOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
727
- MozBackgroundSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
728
- MozBorderRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
729
- MozBorderRadiusBottomleft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
730
- MozBorderRadiusBottomright?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
731
- MozBorderRadiusTopleft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
732
- MozBorderRadiusTopright?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
733
- MozBoxAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
734
- MozBoxDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
735
- MozBoxFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
736
- MozBoxOrdinalGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
737
- MozBoxOrient?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
738
- MozBoxPack?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
739
- MozBoxShadow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
740
- MozFloatEdge?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | undefined>;
741
- MozForceBrokenImageIcon?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | undefined>;
742
- MozOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
743
- MozOutline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | undefined>;
744
- MozOutlineColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
745
- MozOutlineRadius?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | undefined>;
746
- MozOutlineRadiusBottomleft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
747
- MozOutlineRadiusBottomright?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>;
748
- MozOutlineRadiusTopleft?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>;
749
- MozOutlineRadiusTopright?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>;
750
- MozOutlineStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
751
- MozOutlineWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
752
- MozTextAlignLast?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
753
- MozTextDecorationColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
754
- MozTextDecorationLine?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
755
- MozTextDecorationStyle?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
756
- MozUserInput?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MozUserInput | undefined>;
757
- msImeMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
758
- OAnimation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
759
- OAnimationDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
760
- OAnimationDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
761
- OAnimationDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
762
- OAnimationFillMode?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
763
- OAnimationIterationCount?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
764
- OAnimationName?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
765
- OAnimationPlayState?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
766
- OAnimationTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
767
- OBackgroundSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
768
- OBorderImage?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
769
- OObjectFit?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
770
- OObjectPosition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
771
- OTabSize?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
772
- OTextOverflow?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
773
- OTransform?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
774
- OTransformOrigin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
775
- OTransition?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
776
- OTransitionDelay?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
777
- OTransitionDuration?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
778
- OTransitionProperty?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
779
- OTransitionTimingFunction?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
780
- WebkitBoxAlign?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
781
- WebkitBoxDirection?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
782
- WebkitBoxFlex?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
783
- WebkitBoxFlexGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
784
- WebkitBoxLines?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
785
- WebkitBoxOrdinalGroup?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
786
- WebkitBoxOrient?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
787
- WebkitBoxPack?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
788
- WebkitScrollSnapPointsX?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
789
- WebkitScrollSnapPointsY?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
790
- alignmentBaseline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | undefined>;
791
- baselineShift?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | undefined>;
792
- clipRule?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ClipRule | undefined>;
793
- colorInterpolation?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | undefined>;
794
- colorRendering?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ColorRendering | undefined>;
795
- dominantBaseline?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | undefined>;
796
- fillOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FillOpacity | undefined>;
797
- fillRule?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FillRule | undefined>;
798
- floodColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FloodColor | undefined>;
799
- floodOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | undefined>;
800
- glyphOrientationVertical?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | undefined>;
801
- lightingColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.LightingColor | undefined>;
802
- marker?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Marker | undefined>;
803
- markerEnd?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarkerEnd | undefined>;
804
- markerMid?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarkerMid | undefined>;
805
- markerStart?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.MarkerStart | undefined>;
806
- shapeRendering?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | undefined>;
807
- stopColor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StopColor | undefined>;
808
- stopOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StopOpacity | undefined>;
809
- stroke?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.Stroke | undefined>;
810
- strokeDasharray?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | undefined>;
811
- strokeDashoffset?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | undefined>;
812
- strokeLinecap?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | undefined>;
813
- strokeLinejoin?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | undefined>;
814
- strokeMiterlimit?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | undefined>;
815
- strokeOpacity?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | undefined>;
816
- strokeWidth?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | undefined>;
817
- textAnchor?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.TextAnchor | undefined>;
818
- vectorEffect?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.VectorEffect | undefined>;
819
- fade?: import("../../../tasty/index").ResponsiveStyleValue<string | undefined>;
820
- reset?: import("../../../tasty/index").ResponsiveStyleValue<"input" | "button" | undefined>;
821
- styledScrollbar?: import("../../../tasty/index").ResponsiveStyleValue<boolean | undefined>;
822
- scrollbar?: import("../../../tasty/index").ResponsiveStyleValue<string | number | boolean | undefined>;
823
- boldFontWeight?: import("../../../tasty/index").ResponsiveStyleValue<number | undefined>;
824
- hide?: import("../../../tasty/index").ResponsiveStyleValue<boolean | undefined>;
825
- radius?: import("../../../tasty/index").ResponsiveStyleValue<string | true | undefined>;
826
- groupRadius?: import("../../../tasty/index").ResponsiveStyleValue<string | boolean | undefined>;
827
- flow?: import("../../../tasty/index").ResponsiveStyleValue<string | (string & {}) | undefined>;
828
- gridAreas?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
829
- gridColumns?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
830
- gridRows?: import("../../../tasty/index").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
831
- preset?: import("../../../tasty/index").ResponsiveStyleValue<string | undefined>;
832
- align?: import("../../../tasty/index").ResponsiveStyleValue<"stretch" | "initial" | (string & {}) | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | undefined>;
833
- justify?: import("../../../tasty/index").ResponsiveStyleValue<"stretch" | "initial" | (string & {}) | "left" | "right" | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | "legacy" | undefined>;
834
- place?: import("../../../tasty/index").ResponsiveStyleValue<string | (string & {}) | undefined>;
835
- } & BaseStyleProps & import("../../../tasty/tasty").WithVariant<import("../../../tasty/tasty").VariantMap> & Omit<Omit<React.AllHTMLAttributes<HTMLElement>, keyof React.ClassAttributes<HTMLUListElement> | keyof React.HTMLAttributes<HTMLUListElement>> & React.ClassAttributes<HTMLUListElement> & React.HTMLAttributes<HTMLUListElement>, "color" | "filter" | "fill" | "border" | "clear" | "shadow" | "font" | "outline" | "gap" | "padding" | "margin" | "width" | "height" | "transition" | "placeContent" | "placeItems" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimeline" | "animationTimingFunction" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clipPath" | "colorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "containerName" | "containerType" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontSmooth" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "motionDistance" | "motionPath" | "motionRotation" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "offsetRotation" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflowAnchor" | "overflowBlock" | "overflowClipBox" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "printColorAdjust" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollBehavior" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "scrollSnapMarginTop" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "top" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "viewTransitionName" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex" | "zoom" | "all" | "animation" | "background" | "backgroundPosition" | "borderBlock" | "borderBlockEnd" | "borderBlockStart" | "borderBottom" | "borderColor" | "borderImage" | "borderInline" | "borderInlineEnd" | "borderInlineStart" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "caret" | "columnRule" | "columns" | "containIntrinsicSize" | "container" | "flex" | "flexFlow" | "grid" | "gridArea" | "gridColumn" | "gridRow" | "gridTemplate" | "inset" | "insetBlock" | "insetInline" | "lineClamp" | "listStyle" | "marginBlock" | "marginInline" | "mask" | "maskBorder" | "motion" | "offset" | "overflow" | "overscrollBehavior" | "paddingBlock" | "paddingInline" | "placeSelf" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginInline" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingInline" | "scrollSnapMargin" | "scrollTimeline" | "textDecoration" | "textEmphasis" | "MozAnimationDelay" | "MozAnimationDirection" | "MozAnimationDuration" | "MozAnimationFillMode" | "MozAnimationIterationCount" | "MozAnimationName" | "MozAnimationPlayState" | "MozAnimationTimingFunction" | "MozAppearance" | "MozBackfaceVisibility" | "MozBinding" | "MozBorderBottomColors" | "MozBorderEndColor" | "MozBorderEndStyle" | "MozBorderEndWidth" | "MozBorderLeftColors" | "MozBorderRightColors" | "MozBorderStartColor" | "MozBorderStartStyle" | "MozBorderTopColors" | "MozBoxSizing" | "MozColumnCount" | "MozColumnFill" | "MozColumnRuleColor" | "MozColumnRuleStyle" | "MozColumnRuleWidth" | "MozColumnWidth" | "MozContextProperties" | "MozFontFeatureSettings" | "MozFontLanguageOverride" | "MozHyphens" | "MozImageRegion" | "MozMarginEnd" | "MozMarginStart" | "MozOrient" | "MozOsxFontSmoothing" | "MozPaddingEnd" | "MozPaddingStart" | "MozPerspective" | "MozPerspectiveOrigin" | "MozStackSizing" | "MozTabSize" | "MozTextBlink" | "MozTextSizeAdjust" | "MozTransformOrigin" | "MozTransformStyle" | "MozTransitionDelay" | "MozTransitionDuration" | "MozTransitionProperty" | "MozTransitionTimingFunction" | "MozUserFocus" | "MozUserModify" | "MozUserSelect" | "MozWindowDragging" | "MozWindowShadow" | "msAccelerator" | "msBlockProgression" | "msContentZoomChaining" | "msContentZoomLimitMax" | "msContentZoomLimitMin" | "msContentZoomSnapPoints" | "msContentZoomSnapType" | "msContentZooming" | "msFilter" | "msFlexDirection" | "msFlexPositive" | "msFlowFrom" | "msFlowInto" | "msGridColumns" | "msGridRows" | "msHighContrastAdjust" | "msHyphenateLimitChars" | "msHyphenateLimitLines" | "msHyphenateLimitZone" | "msHyphens" | "msImeAlign" | "msLineBreak" | "msOrder" | "msOverflowStyle" | "msOverflowX" | "msOverflowY" | "msScrollChaining" | "msScrollLimitXMax" | "msScrollLimitXMin" | "msScrollLimitYMax" | "msScrollLimitYMin" | "msScrollRails" | "msScrollSnapPointsX" | "msScrollSnapPointsY" | "msScrollSnapType" | "msScrollTranslation" | "msScrollbar3dlightColor" | "msScrollbarArrowColor" | "msScrollbarBaseColor" | "msScrollbarDarkshadowColor" | "msScrollbarFaceColor" | "msScrollbarHighlightColor" | "msScrollbarShadowColor" | "msScrollbarTrackColor" | "msTextAutospace" | "msTextCombineHorizontal" | "msTextOverflow" | "msTouchAction" | "msTouchSelect" | "msTransform" | "msTransformOrigin" | "msTransitionDelay" | "msTransitionDuration" | "msTransitionProperty" | "msTransitionTimingFunction" | "msUserSelect" | "msWordBreak" | "msWrapFlow" | "msWrapMargin" | "msWrapThrough" | "msWritingMode" | "WebkitAlignContent" | "WebkitAlignItems" | "WebkitAlignSelf" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "WebkitAppearance" | "WebkitBackdropFilter" | "WebkitBackfaceVisibility" | "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "WebkitBorderBeforeColor" | "WebkitBorderBeforeStyle" | "WebkitBorderBeforeWidth" | "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderImageSlice" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "WebkitBoxDecorationBreak" | "WebkitBoxReflect" | "WebkitBoxShadow" | "WebkitBoxSizing" | "WebkitClipPath" | "WebkitColumnCount" | "WebkitColumnFill" | "WebkitColumnRuleColor" | "WebkitColumnRuleStyle" | "WebkitColumnRuleWidth" | "WebkitColumnSpan" | "WebkitColumnWidth" | "WebkitFilter" | "WebkitFlexBasis" | "WebkitFlexDirection" | "WebkitFlexGrow" | "WebkitFlexShrink" | "WebkitFlexWrap" | "WebkitFontFeatureSettings" | "WebkitFontKerning" | "WebkitFontSmoothing" | "WebkitFontVariantLigatures" | "WebkitHyphenateCharacter" | "WebkitHyphens" | "WebkitInitialLetter" | "WebkitJustifyContent" | "WebkitLineBreak" | "WebkitLineClamp" | "WebkitMarginEnd" | "WebkitMarginStart" | "WebkitMaskAttachment" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskPositionX" | "WebkitMaskPositionY" | "WebkitMaskRepeat" | "WebkitMaskRepeatX" | "WebkitMaskRepeatY" | "WebkitMaskSize" | "WebkitMaxInlineSize" | "WebkitOrder" | "WebkitOverflowScrolling" | "WebkitPaddingEnd" | "WebkitPaddingStart" | "WebkitPerspective" | "WebkitPerspectiveOrigin" | "WebkitPrintColorAdjust" | "WebkitRubyPosition" | "WebkitScrollSnapType" | "WebkitShapeMargin" | "WebkitTapHighlightColor" | "WebkitTextCombine" | "WebkitTextDecorationColor" | "WebkitTextDecorationLine" | "WebkitTextDecorationSkip" | "WebkitTextDecorationStyle" | "WebkitTextEmphasisColor" | "WebkitTextEmphasisPosition" | "WebkitTextEmphasisStyle" | "WebkitTextFillColor" | "WebkitTextOrientation" | "WebkitTextSizeAdjust" | "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "WebkitTextUnderlinePosition" | "WebkitTouchCallout" | "WebkitTransform" | "WebkitTransformOrigin" | "WebkitTransformStyle" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "WebkitUserModify" | "WebkitUserSelect" | "WebkitWritingMode" | "MozAnimation" | "MozBorderImage" | "MozColumnRule" | "MozColumns" | "MozTransition" | "msContentZoomLimit" | "msContentZoomSnap" | "msFlex" | "msScrollLimit" | "msScrollSnapX" | "msScrollSnapY" | "msTransition" | "WebkitAnimation" | "WebkitBorderBefore" | "WebkitBorderImage" | "WebkitBorderRadius" | "WebkitColumnRule" | "WebkitColumns" | "WebkitFlex" | "WebkitFlexFlow" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitTextEmphasis" | "WebkitTextStroke" | "WebkitTransition" | "azimuth" | "boxAlign" | "boxDirection" | "boxFlex" | "boxFlexGroup" | "boxLines" | "boxOrdinalGroup" | "boxOrient" | "boxPack" | "clip" | "gridColumnGap" | "gridGap" | "gridRowGap" | "imeMode" | "offsetBlock" | "offsetBlockEnd" | "offsetBlockStart" | "offsetInline" | "offsetInlineEnd" | "offsetInlineStart" | "scrollSnapCoordinate" | "scrollSnapDestination" | "scrollSnapPointsX" | "scrollSnapPointsY" | "scrollSnapTypeX" | "scrollSnapTypeY" | "KhtmlBoxAlign" | "KhtmlBoxDirection" | "KhtmlBoxFlex" | "KhtmlBoxFlexGroup" | "KhtmlBoxLines" | "KhtmlBoxOrdinalGroup" | "KhtmlBoxOrient" | "KhtmlBoxPack" | "KhtmlLineBreak" | "KhtmlOpacity" | "KhtmlUserSelect" | "MozBackgroundClip" | "MozBackgroundInlinePolicy" | "MozBackgroundOrigin" | "MozBackgroundSize" | "MozBorderRadius" | "MozBorderRadiusBottomleft" | "MozBorderRadiusBottomright" | "MozBorderRadiusTopleft" | "MozBorderRadiusTopright" | "MozBoxAlign" | "MozBoxDirection" | "MozBoxFlex" | "MozBoxOrdinalGroup" | "MozBoxOrient" | "MozBoxPack" | "MozBoxShadow" | "MozFloatEdge" | "MozForceBrokenImageIcon" | "MozOpacity" | "MozOutline" | "MozOutlineColor" | "MozOutlineRadius" | "MozOutlineRadiusBottomleft" | "MozOutlineRadiusBottomright" | "MozOutlineRadiusTopleft" | "MozOutlineRadiusTopright" | "MozOutlineStyle" | "MozOutlineWidth" | "MozTextAlignLast" | "MozTextDecorationColor" | "MozTextDecorationLine" | "MozTextDecorationStyle" | "MozUserInput" | "msImeMode" | "OAnimation" | "OAnimationDelay" | "OAnimationDirection" | "OAnimationDuration" | "OAnimationFillMode" | "OAnimationIterationCount" | "OAnimationName" | "OAnimationPlayState" | "OAnimationTimingFunction" | "OBackgroundSize" | "OBorderImage" | "OObjectFit" | "OObjectPosition" | "OTabSize" | "OTextOverflow" | "OTransform" | "OTransformOrigin" | "OTransition" | "OTransitionDelay" | "OTransitionDuration" | "OTransitionProperty" | "OTransitionTimingFunction" | "WebkitBoxAlign" | "WebkitBoxDirection" | "WebkitBoxFlex" | "WebkitBoxFlexGroup" | "WebkitBoxLines" | "WebkitBoxOrdinalGroup" | "WebkitBoxOrient" | "WebkitBoxPack" | "WebkitScrollSnapPointsX" | "WebkitScrollSnapPointsY" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "marker" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "fade" | "reset" | "styledScrollbar" | "scrollbar" | "boldFontWeight" | "hide" | "radius" | "groupRadius" | "flow" | "gridAreas" | "gridColumns" | "gridRows" | "preset" | "align" | "justify" | "place" | "block" | "style" | "inline" | "element" | "styles" | "mods" | "css" | "ref" | "as" | "qa" | "qaVal" | "breakpoints" | "isHidden" | "isDisabled" | "theme" | "tokens"> & React.RefAttributes<unknown>>;
10
+ color?: import("../../../tasty/index").StyleValue<string | boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<string | boolean | undefined>;
11
+ filter?: import("../../../tasty/index").StyleValue<import("csstype").Property.Filter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Filter | undefined>;
12
+ fill?: import("../../../tasty/index").StyleValue<boolean | (string & {}) | "#border" | "#border.0" | "#border.1" | "#border.2" | "#border.3" | "#border.4" | "#border.5" | "#border.6" | "#border.7" | "#border.8" | "#border.9" | "#border.00" | "#border.01" | "#border.02" | "#border.03" | "#border.04" | "#border.05" | "#border.06" | "#border.07" | "#border.08" | "#border.09" | "#border.10" | "#border.11" | "#border.12" | "#border.13" | "#border.14" | "#border.15" | "#border.16" | "#border.17" | "#border.18" | "#border.19" | "#border.20" | "#border.21" | "#border.22" | "#border.23" | "#border.24" | "#border.25" | "#border.26" | "#border.27" | "#border.28" | "#border.29" | "#border.30" | "#border.31" | "#border.32" | "#border.33" | "#border.34" | "#border.35" | "#border.36" | "#border.37" | "#border.38" | "#border.39" | "#border.40" | "#border.41" | "#border.42" | "#border.43" | "#border.44" | "#border.45" | "#border.46" | "#border.47" | "#border.48" | "#border.49" | "#border.50" | "#border.51" | "#border.52" | "#border.53" | "#border.54" | "#border.55" | "#border.56" | "#border.57" | "#border.58" | "#border.59" | "#border.60" | "#border.61" | "#border.62" | "#border.63" | "#border.64" | "#border.65" | "#border.66" | "#border.67" | "#border.68" | "#border.69" | "#border.70" | "#border.71" | "#border.72" | "#border.73" | "#border.74" | "#border.75" | "#border.76" | "#border.77" | "#border.78" | "#border.79" | "#border.80" | "#border.81" | "#border.82" | "#border.83" | "#border.84" | "#border.85" | "#border.86" | "#border.87" | "#border.88" | "#border.89" | "#border.90" | "#border.91" | "#border.92" | "#border.93" | "#border.94" | "#border.95" | "#border.96" | "#border.97" | "#border.98" | "#border.99" | "#border.100" | "#clear" | "#clear.0" | "#clear.1" | "#clear.2" | "#clear.3" | "#clear.4" | "#clear.5" | "#clear.6" | "#clear.7" | "#clear.8" | "#clear.9" | "#clear.00" | "#clear.01" | "#clear.02" | "#clear.03" | "#clear.04" | "#clear.05" | "#clear.06" | "#clear.07" | "#clear.08" | "#clear.09" | "#clear.10" | "#clear.11" | "#clear.12" | "#clear.13" | "#clear.14" | "#clear.15" | "#clear.16" | "#clear.17" | "#clear.18" | "#clear.19" | "#clear.20" | "#clear.21" | "#clear.22" | "#clear.23" | "#clear.24" | "#clear.25" | "#clear.26" | "#clear.27" | "#clear.28" | "#clear.29" | "#clear.30" | "#clear.31" | "#clear.32" | "#clear.33" | "#clear.34" | "#clear.35" | "#clear.36" | "#clear.37" | "#clear.38" | "#clear.39" | "#clear.40" | "#clear.41" | "#clear.42" | "#clear.43" | "#clear.44" | "#clear.45" | "#clear.46" | "#clear.47" | "#clear.48" | "#clear.49" | "#clear.50" | "#clear.51" | "#clear.52" | "#clear.53" | "#clear.54" | "#clear.55" | "#clear.56" | "#clear.57" | "#clear.58" | "#clear.59" | "#clear.60" | "#clear.61" | "#clear.62" | "#clear.63" | "#clear.64" | "#clear.65" | "#clear.66" | "#clear.67" | "#clear.68" | "#clear.69" | "#clear.70" | "#clear.71" | "#clear.72" | "#clear.73" | "#clear.74" | "#clear.75" | "#clear.76" | "#clear.77" | "#clear.78" | "#clear.79" | "#clear.80" | "#clear.81" | "#clear.82" | "#clear.83" | "#clear.84" | "#clear.85" | "#clear.86" | "#clear.87" | "#clear.88" | "#clear.89" | "#clear.90" | "#clear.91" | "#clear.92" | "#clear.93" | "#clear.94" | "#clear.95" | "#clear.96" | "#clear.97" | "#clear.98" | "#clear.99" | "#clear.100" | "#shadow" | "#shadow.0" | "#shadow.1" | "#shadow.2" | "#shadow.3" | "#shadow.4" | "#shadow.5" | "#shadow.6" | "#shadow.7" | "#shadow.8" | "#shadow.9" | "#shadow.00" | "#shadow.01" | "#shadow.02" | "#shadow.03" | "#shadow.04" | "#shadow.05" | "#shadow.06" | "#shadow.07" | "#shadow.08" | "#shadow.09" | "#shadow.10" | "#shadow.11" | "#shadow.12" | "#shadow.13" | "#shadow.14" | "#shadow.15" | "#shadow.16" | "#shadow.17" | "#shadow.18" | "#shadow.19" | "#shadow.20" | "#shadow.21" | "#shadow.22" | "#shadow.23" | "#shadow.24" | "#shadow.25" | "#shadow.26" | "#shadow.27" | "#shadow.28" | "#shadow.29" | "#shadow.30" | "#shadow.31" | "#shadow.32" | "#shadow.33" | "#shadow.34" | "#shadow.35" | "#shadow.36" | "#shadow.37" | "#shadow.38" | "#shadow.39" | "#shadow.40" | "#shadow.41" | "#shadow.42" | "#shadow.43" | "#shadow.44" | "#shadow.45" | "#shadow.46" | "#shadow.47" | "#shadow.48" | "#shadow.49" | "#shadow.50" | "#shadow.51" | "#shadow.52" | "#shadow.53" | "#shadow.54" | "#shadow.55" | "#shadow.56" | "#shadow.57" | "#shadow.58" | "#shadow.59" | "#shadow.60" | "#shadow.61" | "#shadow.62" | "#shadow.63" | "#shadow.64" | "#shadow.65" | "#shadow.66" | "#shadow.67" | "#shadow.68" | "#shadow.69" | "#shadow.70" | "#shadow.71" | "#shadow.72" | "#shadow.73" | "#shadow.74" | "#shadow.75" | "#shadow.76" | "#shadow.77" | "#shadow.78" | "#shadow.79" | "#shadow.80" | "#shadow.81" | "#shadow.82" | "#shadow.83" | "#shadow.84" | "#shadow.85" | "#shadow.86" | "#shadow.87" | "#shadow.88" | "#shadow.89" | "#shadow.90" | "#shadow.91" | "#shadow.92" | "#shadow.93" | "#shadow.94" | "#shadow.95" | "#shadow.96" | "#shadow.97" | "#shadow.98" | "#shadow.99" | "#shadow.100" | "#purple" | "#purple.0" | "#purple.1" | "#purple.2" | "#purple.3" | "#purple.4" | "#purple.5" | "#purple.6" | "#purple.7" | "#purple.8" | "#purple.9" | "#purple.00" | "#purple.01" | "#purple.02" | "#purple.03" | "#purple.04" | "#purple.05" | "#purple.06" | "#purple.07" | "#purple.08" | "#purple.09" | "#purple.10" | "#purple.11" | "#purple.12" | "#purple.13" | "#purple.14" | "#purple.15" | "#purple.16" | "#purple.17" | "#purple.18" | "#purple.19" | "#purple.20" | "#purple.21" | "#purple.22" | "#purple.23" | "#purple.24" | "#purple.25" | "#purple.26" | "#purple.27" | "#purple.28" | "#purple.29" | "#purple.30" | "#purple.31" | "#purple.32" | "#purple.33" | "#purple.34" | "#purple.35" | "#purple.36" | "#purple.37" | "#purple.38" | "#purple.39" | "#purple.40" | "#purple.41" | "#purple.42" | "#purple.43" | "#purple.44" | "#purple.45" | "#purple.46" | "#purple.47" | "#purple.48" | "#purple.49" | "#purple.50" | "#purple.51" | "#purple.52" | "#purple.53" | "#purple.54" | "#purple.55" | "#purple.56" | "#purple.57" | "#purple.58" | "#purple.59" | "#purple.60" | "#purple.61" | "#purple.62" | "#purple.63" | "#purple.64" | "#purple.65" | "#purple.66" | "#purple.67" | "#purple.68" | "#purple.69" | "#purple.70" | "#purple.71" | "#purple.72" | "#purple.73" | "#purple.74" | "#purple.75" | "#purple.76" | "#purple.77" | "#purple.78" | "#purple.79" | "#purple.80" | "#purple.81" | "#purple.82" | "#purple.83" | "#purple.84" | "#purple.85" | "#purple.86" | "#purple.87" | "#purple.88" | "#purple.89" | "#purple.90" | "#purple.91" | "#purple.92" | "#purple.93" | "#purple.94" | "#purple.95" | "#purple.96" | "#purple.97" | "#purple.98" | "#purple.99" | "#purple.100" | "#purple-text" | "#purple-text.0" | "#purple-text.1" | "#purple-text.2" | "#purple-text.3" | "#purple-text.4" | "#purple-text.5" | "#purple-text.6" | "#purple-text.7" | "#purple-text.8" | "#purple-text.9" | "#purple-text.00" | "#purple-text.01" | "#purple-text.02" | "#purple-text.03" | "#purple-text.04" | "#purple-text.05" | "#purple-text.06" | "#purple-text.07" | "#purple-text.08" | "#purple-text.09" | "#purple-text.10" | "#purple-text.11" | "#purple-text.12" | "#purple-text.13" | "#purple-text.14" | "#purple-text.15" | "#purple-text.16" | "#purple-text.17" | "#purple-text.18" | "#purple-text.19" | "#purple-text.20" | "#purple-text.21" | "#purple-text.22" | "#purple-text.23" | "#purple-text.24" | "#purple-text.25" | "#purple-text.26" | "#purple-text.27" | "#purple-text.28" | "#purple-text.29" | "#purple-text.30" | "#purple-text.31" | "#purple-text.32" | "#purple-text.33" | "#purple-text.34" | "#purple-text.35" | "#purple-text.36" | "#purple-text.37" | "#purple-text.38" | "#purple-text.39" | "#purple-text.40" | "#purple-text.41" | "#purple-text.42" | "#purple-text.43" | "#purple-text.44" | "#purple-text.45" | "#purple-text.46" | "#purple-text.47" | "#purple-text.48" | "#purple-text.49" | "#purple-text.50" | "#purple-text.51" | "#purple-text.52" | "#purple-text.53" | "#purple-text.54" | "#purple-text.55" | "#purple-text.56" | "#purple-text.57" | "#purple-text.58" | "#purple-text.59" | "#purple-text.60" | "#purple-text.61" | "#purple-text.62" | "#purple-text.63" | "#purple-text.64" | "#purple-text.65" | "#purple-text.66" | "#purple-text.67" | "#purple-text.68" | "#purple-text.69" | "#purple-text.70" | "#purple-text.71" | "#purple-text.72" | "#purple-text.73" | "#purple-text.74" | "#purple-text.75" | "#purple-text.76" | "#purple-text.77" | "#purple-text.78" | "#purple-text.79" | "#purple-text.80" | "#purple-text.81" | "#purple-text.82" | "#purple-text.83" | "#purple-text.84" | "#purple-text.85" | "#purple-text.86" | "#purple-text.87" | "#purple-text.88" | "#purple-text.89" | "#purple-text.90" | "#purple-text.91" | "#purple-text.92" | "#purple-text.93" | "#purple-text.94" | "#purple-text.95" | "#purple-text.96" | "#purple-text.97" | "#purple-text.98" | "#purple-text.99" | "#purple-text.100" | "#purple-icon" | "#purple-icon.0" | "#purple-icon.1" | "#purple-icon.2" | "#purple-icon.3" | "#purple-icon.4" | "#purple-icon.5" | "#purple-icon.6" | "#purple-icon.7" | "#purple-icon.8" | "#purple-icon.9" | "#purple-icon.00" | "#purple-icon.01" | "#purple-icon.02" | "#purple-icon.03" | "#purple-icon.04" | "#purple-icon.05" | "#purple-icon.06" | "#purple-icon.07" | "#purple-icon.08" | "#purple-icon.09" | "#purple-icon.10" | "#purple-icon.11" | "#purple-icon.12" | "#purple-icon.13" | "#purple-icon.14" | "#purple-icon.15" | "#purple-icon.16" | "#purple-icon.17" | "#purple-icon.18" | "#purple-icon.19" | "#purple-icon.20" | "#purple-icon.21" | "#purple-icon.22" | "#purple-icon.23" | "#purple-icon.24" | "#purple-icon.25" | "#purple-icon.26" | "#purple-icon.27" | "#purple-icon.28" | "#purple-icon.29" | "#purple-icon.30" | "#purple-icon.31" | "#purple-icon.32" | "#purple-icon.33" | "#purple-icon.34" | "#purple-icon.35" | "#purple-icon.36" | "#purple-icon.37" | "#purple-icon.38" | "#purple-icon.39" | "#purple-icon.40" | "#purple-icon.41" | "#purple-icon.42" | "#purple-icon.43" | "#purple-icon.44" | "#purple-icon.45" | "#purple-icon.46" | "#purple-icon.47" | "#purple-icon.48" | "#purple-icon.49" | "#purple-icon.50" | "#purple-icon.51" | "#purple-icon.52" | "#purple-icon.53" | "#purple-icon.54" | "#purple-icon.55" | "#purple-icon.56" | "#purple-icon.57" | "#purple-icon.58" | "#purple-icon.59" | "#purple-icon.60" | "#purple-icon.61" | "#purple-icon.62" | "#purple-icon.63" | "#purple-icon.64" | "#purple-icon.65" | "#purple-icon.66" | "#purple-icon.67" | "#purple-icon.68" | "#purple-icon.69" | "#purple-icon.70" | "#purple-icon.71" | "#purple-icon.72" | "#purple-icon.73" | "#purple-icon.74" | "#purple-icon.75" | "#purple-icon.76" | "#purple-icon.77" | "#purple-icon.78" | "#purple-icon.79" | "#purple-icon.80" | "#purple-icon.81" | "#purple-icon.82" | "#purple-icon.83" | "#purple-icon.84" | "#purple-icon.85" | "#purple-icon.86" | "#purple-icon.87" | "#purple-icon.88" | "#purple-icon.89" | "#purple-icon.90" | "#purple-icon.91" | "#purple-icon.92" | "#purple-icon.93" | "#purple-icon.94" | "#purple-icon.95" | "#purple-icon.96" | "#purple-icon.97" | "#purple-icon.98" | "#purple-icon.99" | "#purple-icon.100" | "#purple-bg" | "#purple-bg.0" | "#purple-bg.1" | "#purple-bg.2" | "#purple-bg.3" | "#purple-bg.4" | "#purple-bg.5" | "#purple-bg.6" | "#purple-bg.7" | "#purple-bg.8" | "#purple-bg.9" | "#purple-bg.00" | "#purple-bg.01" | "#purple-bg.02" | "#purple-bg.03" | "#purple-bg.04" | "#purple-bg.05" | "#purple-bg.06" | "#purple-bg.07" | "#purple-bg.08" | "#purple-bg.09" | "#purple-bg.10" | "#purple-bg.11" | "#purple-bg.12" | "#purple-bg.13" | "#purple-bg.14" | "#purple-bg.15" | "#purple-bg.16" | "#purple-bg.17" | "#purple-bg.18" | "#purple-bg.19" | "#purple-bg.20" | "#purple-bg.21" | "#purple-bg.22" | "#purple-bg.23" | "#purple-bg.24" | "#purple-bg.25" | "#purple-bg.26" | "#purple-bg.27" | "#purple-bg.28" | "#purple-bg.29" | "#purple-bg.30" | "#purple-bg.31" | "#purple-bg.32" | "#purple-bg.33" | "#purple-bg.34" | "#purple-bg.35" | "#purple-bg.36" | "#purple-bg.37" | "#purple-bg.38" | "#purple-bg.39" | "#purple-bg.40" | "#purple-bg.41" | "#purple-bg.42" | "#purple-bg.43" | "#purple-bg.44" | "#purple-bg.45" | "#purple-bg.46" | "#purple-bg.47" | "#purple-bg.48" | "#purple-bg.49" | "#purple-bg.50" | "#purple-bg.51" | "#purple-bg.52" | "#purple-bg.53" | "#purple-bg.54" | "#purple-bg.55" | "#purple-bg.56" | "#purple-bg.57" | "#purple-bg.58" | "#purple-bg.59" | "#purple-bg.60" | "#purple-bg.61" | "#purple-bg.62" | "#purple-bg.63" | "#purple-bg.64" | "#purple-bg.65" | "#purple-bg.66" | "#purple-bg.67" | "#purple-bg.68" | "#purple-bg.69" | "#purple-bg.70" | "#purple-bg.71" | "#purple-bg.72" | "#purple-bg.73" | "#purple-bg.74" | "#purple-bg.75" | "#purple-bg.76" | "#purple-bg.77" | "#purple-bg.78" | "#purple-bg.79" | "#purple-bg.80" | "#purple-bg.81" | "#purple-bg.82" | "#purple-bg.83" | "#purple-bg.84" | "#purple-bg.85" | "#purple-bg.86" | "#purple-bg.87" | "#purple-bg.88" | "#purple-bg.89" | "#purple-bg.90" | "#purple-bg.91" | "#purple-bg.92" | "#purple-bg.93" | "#purple-bg.94" | "#purple-bg.95" | "#purple-bg.96" | "#purple-bg.97" | "#purple-bg.98" | "#purple-bg.99" | "#purple-bg.100" | "#purple-01" | "#purple-01.0" | "#purple-01.1" | "#purple-01.2" | "#purple-01.3" | "#purple-01.4" | "#purple-01.5" | "#purple-01.6" | "#purple-01.7" | "#purple-01.8" | "#purple-01.9" | "#purple-01.00" | "#purple-01.01" | "#purple-01.02" | "#purple-01.03" | "#purple-01.04" | "#purple-01.05" | "#purple-01.06" | "#purple-01.07" | "#purple-01.08" | "#purple-01.09" | "#purple-01.10" | "#purple-01.11" | "#purple-01.12" | "#purple-01.13" | "#purple-01.14" | "#purple-01.15" | "#purple-01.16" | "#purple-01.17" | "#purple-01.18" | "#purple-01.19" | "#purple-01.20" | "#purple-01.21" | "#purple-01.22" | "#purple-01.23" | "#purple-01.24" | "#purple-01.25" | "#purple-01.26" | "#purple-01.27" | "#purple-01.28" | "#purple-01.29" | "#purple-01.30" | "#purple-01.31" | "#purple-01.32" | "#purple-01.33" | "#purple-01.34" | "#purple-01.35" | "#purple-01.36" | "#purple-01.37" | "#purple-01.38" | "#purple-01.39" | "#purple-01.40" | "#purple-01.41" | "#purple-01.42" | "#purple-01.43" | "#purple-01.44" | "#purple-01.45" | "#purple-01.46" | "#purple-01.47" | "#purple-01.48" | "#purple-01.49" | "#purple-01.50" | "#purple-01.51" | "#purple-01.52" | "#purple-01.53" | "#purple-01.54" | "#purple-01.55" | "#purple-01.56" | "#purple-01.57" | "#purple-01.58" | "#purple-01.59" | "#purple-01.60" | "#purple-01.61" | "#purple-01.62" | "#purple-01.63" | "#purple-01.64" | "#purple-01.65" | "#purple-01.66" | "#purple-01.67" | "#purple-01.68" | "#purple-01.69" | "#purple-01.70" | "#purple-01.71" | "#purple-01.72" | "#purple-01.73" | "#purple-01.74" | "#purple-01.75" | "#purple-01.76" | "#purple-01.77" | "#purple-01.78" | "#purple-01.79" | "#purple-01.80" | "#purple-01.81" | "#purple-01.82" | "#purple-01.83" | "#purple-01.84" | "#purple-01.85" | "#purple-01.86" | "#purple-01.87" | "#purple-01.88" | "#purple-01.89" | "#purple-01.90" | "#purple-01.91" | "#purple-01.92" | "#purple-01.93" | "#purple-01.94" | "#purple-01.95" | "#purple-01.96" | "#purple-01.97" | "#purple-01.98" | "#purple-01.99" | "#purple-01.100" | "#purple-02" | "#purple-02.0" | "#purple-02.1" | "#purple-02.2" | "#purple-02.3" | "#purple-02.4" | "#purple-02.5" | "#purple-02.6" | "#purple-02.7" | "#purple-02.8" | "#purple-02.9" | "#purple-02.00" | "#purple-02.01" | "#purple-02.02" | "#purple-02.03" | "#purple-02.04" | "#purple-02.05" | "#purple-02.06" | "#purple-02.07" | "#purple-02.08" | "#purple-02.09" | "#purple-02.10" | "#purple-02.11" | "#purple-02.12" | "#purple-02.13" | "#purple-02.14" | "#purple-02.15" | "#purple-02.16" | "#purple-02.17" | "#purple-02.18" | "#purple-02.19" | "#purple-02.20" | "#purple-02.21" | "#purple-02.22" | "#purple-02.23" | "#purple-02.24" | "#purple-02.25" | "#purple-02.26" | "#purple-02.27" | "#purple-02.28" | "#purple-02.29" | "#purple-02.30" | "#purple-02.31" | "#purple-02.32" | "#purple-02.33" | "#purple-02.34" | "#purple-02.35" | "#purple-02.36" | "#purple-02.37" | "#purple-02.38" | "#purple-02.39" | "#purple-02.40" | "#purple-02.41" | "#purple-02.42" | "#purple-02.43" | "#purple-02.44" | "#purple-02.45" | "#purple-02.46" | "#purple-02.47" | "#purple-02.48" | "#purple-02.49" | "#purple-02.50" | "#purple-02.51" | "#purple-02.52" | "#purple-02.53" | "#purple-02.54" | "#purple-02.55" | "#purple-02.56" | "#purple-02.57" | "#purple-02.58" | "#purple-02.59" | "#purple-02.60" | "#purple-02.61" | "#purple-02.62" | "#purple-02.63" | "#purple-02.64" | "#purple-02.65" | "#purple-02.66" | "#purple-02.67" | "#purple-02.68" | "#purple-02.69" | "#purple-02.70" | "#purple-02.71" | "#purple-02.72" | "#purple-02.73" | "#purple-02.74" | "#purple-02.75" | "#purple-02.76" | "#purple-02.77" | "#purple-02.78" | "#purple-02.79" | "#purple-02.80" | "#purple-02.81" | "#purple-02.82" | "#purple-02.83" | "#purple-02.84" | "#purple-02.85" | "#purple-02.86" | "#purple-02.87" | "#purple-02.88" | "#purple-02.89" | "#purple-02.90" | "#purple-02.91" | "#purple-02.92" | "#purple-02.93" | "#purple-02.94" | "#purple-02.95" | "#purple-02.96" | "#purple-02.97" | "#purple-02.98" | "#purple-02.99" | "#purple-02.100" | "#purple-03" | "#purple-03.0" | "#purple-03.1" | "#purple-03.2" | "#purple-03.3" | "#purple-03.4" | "#purple-03.5" | "#purple-03.6" | "#purple-03.7" | "#purple-03.8" | "#purple-03.9" | "#purple-03.00" | "#purple-03.01" | "#purple-03.02" | "#purple-03.03" | "#purple-03.04" | "#purple-03.05" | "#purple-03.06" | "#purple-03.07" | "#purple-03.08" | "#purple-03.09" | "#purple-03.10" | "#purple-03.11" | "#purple-03.12" | "#purple-03.13" | "#purple-03.14" | "#purple-03.15" | "#purple-03.16" | "#purple-03.17" | "#purple-03.18" | "#purple-03.19" | "#purple-03.20" | "#purple-03.21" | "#purple-03.22" | "#purple-03.23" | "#purple-03.24" | "#purple-03.25" | "#purple-03.26" | "#purple-03.27" | "#purple-03.28" | "#purple-03.29" | "#purple-03.30" | "#purple-03.31" | "#purple-03.32" | "#purple-03.33" | "#purple-03.34" | "#purple-03.35" | "#purple-03.36" | "#purple-03.37" | "#purple-03.38" | "#purple-03.39" | "#purple-03.40" | "#purple-03.41" | "#purple-03.42" | "#purple-03.43" | "#purple-03.44" | "#purple-03.45" | "#purple-03.46" | "#purple-03.47" | "#purple-03.48" | "#purple-03.49" | "#purple-03.50" | "#purple-03.51" | "#purple-03.52" | "#purple-03.53" | "#purple-03.54" | "#purple-03.55" | "#purple-03.56" | "#purple-03.57" | "#purple-03.58" | "#purple-03.59" | "#purple-03.60" | "#purple-03.61" | "#purple-03.62" | "#purple-03.63" | "#purple-03.64" | "#purple-03.65" | "#purple-03.66" | "#purple-03.67" | "#purple-03.68" | "#purple-03.69" | "#purple-03.70" | "#purple-03.71" | "#purple-03.72" | "#purple-03.73" | "#purple-03.74" | "#purple-03.75" | "#purple-03.76" | "#purple-03.77" | "#purple-03.78" | "#purple-03.79" | "#purple-03.80" | "#purple-03.81" | "#purple-03.82" | "#purple-03.83" | "#purple-03.84" | "#purple-03.85" | "#purple-03.86" | "#purple-03.87" | "#purple-03.88" | "#purple-03.89" | "#purple-03.90" | "#purple-03.91" | "#purple-03.92" | "#purple-03.93" | "#purple-03.94" | "#purple-03.95" | "#purple-03.96" | "#purple-03.97" | "#purple-03.98" | "#purple-03.99" | "#purple-03.100" | "#purple-04" | "#purple-04.0" | "#purple-04.1" | "#purple-04.2" | "#purple-04.3" | "#purple-04.4" | "#purple-04.5" | "#purple-04.6" | "#purple-04.7" | "#purple-04.8" | "#purple-04.9" | "#purple-04.00" | "#purple-04.01" | "#purple-04.02" | "#purple-04.03" | "#purple-04.04" | "#purple-04.05" | "#purple-04.06" | "#purple-04.07" | "#purple-04.08" | "#purple-04.09" | "#purple-04.10" | "#purple-04.11" | "#purple-04.12" | "#purple-04.13" | "#purple-04.14" | "#purple-04.15" | "#purple-04.16" | "#purple-04.17" | "#purple-04.18" | "#purple-04.19" | "#purple-04.20" | "#purple-04.21" | "#purple-04.22" | "#purple-04.23" | "#purple-04.24" | "#purple-04.25" | "#purple-04.26" | "#purple-04.27" | "#purple-04.28" | "#purple-04.29" | "#purple-04.30" | "#purple-04.31" | "#purple-04.32" | "#purple-04.33" | "#purple-04.34" | "#purple-04.35" | "#purple-04.36" | "#purple-04.37" | "#purple-04.38" | "#purple-04.39" | "#purple-04.40" | "#purple-04.41" | "#purple-04.42" | "#purple-04.43" | "#purple-04.44" | "#purple-04.45" | "#purple-04.46" | "#purple-04.47" | "#purple-04.48" | "#purple-04.49" | "#purple-04.50" | "#purple-04.51" | "#purple-04.52" | "#purple-04.53" | "#purple-04.54" | "#purple-04.55" | "#purple-04.56" | "#purple-04.57" | "#purple-04.58" | "#purple-04.59" | "#purple-04.60" | "#purple-04.61" | "#purple-04.62" | "#purple-04.63" | "#purple-04.64" | "#purple-04.65" | "#purple-04.66" | "#purple-04.67" | "#purple-04.68" | "#purple-04.69" | "#purple-04.70" | "#purple-04.71" | "#purple-04.72" | "#purple-04.73" | "#purple-04.74" | "#purple-04.75" | "#purple-04.76" | "#purple-04.77" | "#purple-04.78" | "#purple-04.79" | "#purple-04.80" | "#purple-04.81" | "#purple-04.82" | "#purple-04.83" | "#purple-04.84" | "#purple-04.85" | "#purple-04.86" | "#purple-04.87" | "#purple-04.88" | "#purple-04.89" | "#purple-04.90" | "#purple-04.91" | "#purple-04.92" | "#purple-04.93" | "#purple-04.94" | "#purple-04.95" | "#purple-04.96" | "#purple-04.97" | "#purple-04.98" | "#purple-04.99" | "#purple-04.100" | "#dark" | "#dark.0" | "#dark.1" | "#dark.2" | "#dark.3" | "#dark.4" | "#dark.5" | "#dark.6" | "#dark.7" | "#dark.8" | "#dark.9" | "#dark.00" | "#dark.01" | "#dark.02" | "#dark.03" | "#dark.04" | "#dark.05" | "#dark.06" | "#dark.07" | "#dark.08" | "#dark.09" | "#dark.10" | "#dark.11" | "#dark.12" | "#dark.13" | "#dark.14" | "#dark.15" | "#dark.16" | "#dark.17" | "#dark.18" | "#dark.19" | "#dark.20" | "#dark.21" | "#dark.22" | "#dark.23" | "#dark.24" | "#dark.25" | "#dark.26" | "#dark.27" | "#dark.28" | "#dark.29" | "#dark.30" | "#dark.31" | "#dark.32" | "#dark.33" | "#dark.34" | "#dark.35" | "#dark.36" | "#dark.37" | "#dark.38" | "#dark.39" | "#dark.40" | "#dark.41" | "#dark.42" | "#dark.43" | "#dark.44" | "#dark.45" | "#dark.46" | "#dark.47" | "#dark.48" | "#dark.49" | "#dark.50" | "#dark.51" | "#dark.52" | "#dark.53" | "#dark.54" | "#dark.55" | "#dark.56" | "#dark.57" | "#dark.58" | "#dark.59" | "#dark.60" | "#dark.61" | "#dark.62" | "#dark.63" | "#dark.64" | "#dark.65" | "#dark.66" | "#dark.67" | "#dark.68" | "#dark.69" | "#dark.70" | "#dark.71" | "#dark.72" | "#dark.73" | "#dark.74" | "#dark.75" | "#dark.76" | "#dark.77" | "#dark.78" | "#dark.79" | "#dark.80" | "#dark.81" | "#dark.82" | "#dark.83" | "#dark.84" | "#dark.85" | "#dark.86" | "#dark.87" | "#dark.88" | "#dark.89" | "#dark.90" | "#dark.91" | "#dark.92" | "#dark.93" | "#dark.94" | "#dark.95" | "#dark.96" | "#dark.97" | "#dark.98" | "#dark.99" | "#dark.100" | "#dark-01" | "#dark-01.0" | "#dark-01.1" | "#dark-01.2" | "#dark-01.3" | "#dark-01.4" | "#dark-01.5" | "#dark-01.6" | "#dark-01.7" | "#dark-01.8" | "#dark-01.9" | "#dark-01.00" | "#dark-01.01" | "#dark-01.02" | "#dark-01.03" | "#dark-01.04" | "#dark-01.05" | "#dark-01.06" | "#dark-01.07" | "#dark-01.08" | "#dark-01.09" | "#dark-01.10" | "#dark-01.11" | "#dark-01.12" | "#dark-01.13" | "#dark-01.14" | "#dark-01.15" | "#dark-01.16" | "#dark-01.17" | "#dark-01.18" | "#dark-01.19" | "#dark-01.20" | "#dark-01.21" | "#dark-01.22" | "#dark-01.23" | "#dark-01.24" | "#dark-01.25" | "#dark-01.26" | "#dark-01.27" | "#dark-01.28" | "#dark-01.29" | "#dark-01.30" | "#dark-01.31" | "#dark-01.32" | "#dark-01.33" | "#dark-01.34" | "#dark-01.35" | "#dark-01.36" | "#dark-01.37" | "#dark-01.38" | "#dark-01.39" | "#dark-01.40" | "#dark-01.41" | "#dark-01.42" | "#dark-01.43" | "#dark-01.44" | "#dark-01.45" | "#dark-01.46" | "#dark-01.47" | "#dark-01.48" | "#dark-01.49" | "#dark-01.50" | "#dark-01.51" | "#dark-01.52" | "#dark-01.53" | "#dark-01.54" | "#dark-01.55" | "#dark-01.56" | "#dark-01.57" | "#dark-01.58" | "#dark-01.59" | "#dark-01.60" | "#dark-01.61" | "#dark-01.62" | "#dark-01.63" | "#dark-01.64" | "#dark-01.65" | "#dark-01.66" | "#dark-01.67" | "#dark-01.68" | "#dark-01.69" | "#dark-01.70" | "#dark-01.71" | "#dark-01.72" | "#dark-01.73" | "#dark-01.74" | "#dark-01.75" | "#dark-01.76" | "#dark-01.77" | "#dark-01.78" | "#dark-01.79" | "#dark-01.80" | "#dark-01.81" | "#dark-01.82" | "#dark-01.83" | "#dark-01.84" | "#dark-01.85" | "#dark-01.86" | "#dark-01.87" | "#dark-01.88" | "#dark-01.89" | "#dark-01.90" | "#dark-01.91" | "#dark-01.92" | "#dark-01.93" | "#dark-01.94" | "#dark-01.95" | "#dark-01.96" | "#dark-01.97" | "#dark-01.98" | "#dark-01.99" | "#dark-01.100" | "#dark-02" | "#dark-02.0" | "#dark-02.1" | "#dark-02.2" | "#dark-02.3" | "#dark-02.4" | "#dark-02.5" | "#dark-02.6" | "#dark-02.7" | "#dark-02.8" | "#dark-02.9" | "#dark-02.00" | "#dark-02.01" | "#dark-02.02" | "#dark-02.03" | "#dark-02.04" | "#dark-02.05" | "#dark-02.06" | "#dark-02.07" | "#dark-02.08" | "#dark-02.09" | "#dark-02.10" | "#dark-02.11" | "#dark-02.12" | "#dark-02.13" | "#dark-02.14" | "#dark-02.15" | "#dark-02.16" | "#dark-02.17" | "#dark-02.18" | "#dark-02.19" | "#dark-02.20" | "#dark-02.21" | "#dark-02.22" | "#dark-02.23" | "#dark-02.24" | "#dark-02.25" | "#dark-02.26" | "#dark-02.27" | "#dark-02.28" | "#dark-02.29" | "#dark-02.30" | "#dark-02.31" | "#dark-02.32" | "#dark-02.33" | "#dark-02.34" | "#dark-02.35" | "#dark-02.36" | "#dark-02.37" | "#dark-02.38" | "#dark-02.39" | "#dark-02.40" | "#dark-02.41" | "#dark-02.42" | "#dark-02.43" | "#dark-02.44" | "#dark-02.45" | "#dark-02.46" | "#dark-02.47" | "#dark-02.48" | "#dark-02.49" | "#dark-02.50" | "#dark-02.51" | "#dark-02.52" | "#dark-02.53" | "#dark-02.54" | "#dark-02.55" | "#dark-02.56" | "#dark-02.57" | "#dark-02.58" | "#dark-02.59" | "#dark-02.60" | "#dark-02.61" | "#dark-02.62" | "#dark-02.63" | "#dark-02.64" | "#dark-02.65" | "#dark-02.66" | "#dark-02.67" | "#dark-02.68" | "#dark-02.69" | "#dark-02.70" | "#dark-02.71" | "#dark-02.72" | "#dark-02.73" | "#dark-02.74" | "#dark-02.75" | "#dark-02.76" | "#dark-02.77" | "#dark-02.78" | "#dark-02.79" | "#dark-02.80" | "#dark-02.81" | "#dark-02.82" | "#dark-02.83" | "#dark-02.84" | "#dark-02.85" | "#dark-02.86" | "#dark-02.87" | "#dark-02.88" | "#dark-02.89" | "#dark-02.90" | "#dark-02.91" | "#dark-02.92" | "#dark-02.93" | "#dark-02.94" | "#dark-02.95" | "#dark-02.96" | "#dark-02.97" | "#dark-02.98" | "#dark-02.99" | "#dark-02.100" | "#dark-03" | "#dark-03.0" | "#dark-03.1" | "#dark-03.2" | "#dark-03.3" | "#dark-03.4" | "#dark-03.5" | "#dark-03.6" | "#dark-03.7" | "#dark-03.8" | "#dark-03.9" | "#dark-03.00" | "#dark-03.01" | "#dark-03.02" | "#dark-03.03" | "#dark-03.04" | "#dark-03.05" | "#dark-03.06" | "#dark-03.07" | "#dark-03.08" | "#dark-03.09" | "#dark-03.10" | "#dark-03.11" | "#dark-03.12" | "#dark-03.13" | "#dark-03.14" | "#dark-03.15" | "#dark-03.16" | "#dark-03.17" | "#dark-03.18" | "#dark-03.19" | "#dark-03.20" | "#dark-03.21" | "#dark-03.22" | "#dark-03.23" | "#dark-03.24" | "#dark-03.25" | "#dark-03.26" | "#dark-03.27" | "#dark-03.28" | "#dark-03.29" | "#dark-03.30" | "#dark-03.31" | "#dark-03.32" | "#dark-03.33" | "#dark-03.34" | "#dark-03.35" | "#dark-03.36" | "#dark-03.37" | "#dark-03.38" | "#dark-03.39" | "#dark-03.40" | "#dark-03.41" | "#dark-03.42" | "#dark-03.43" | "#dark-03.44" | "#dark-03.45" | "#dark-03.46" | "#dark-03.47" | "#dark-03.48" | "#dark-03.49" | "#dark-03.50" | "#dark-03.51" | "#dark-03.52" | "#dark-03.53" | "#dark-03.54" | "#dark-03.55" | "#dark-03.56" | "#dark-03.57" | "#dark-03.58" | "#dark-03.59" | "#dark-03.60" | "#dark-03.61" | "#dark-03.62" | "#dark-03.63" | "#dark-03.64" | "#dark-03.65" | "#dark-03.66" | "#dark-03.67" | "#dark-03.68" | "#dark-03.69" | "#dark-03.70" | "#dark-03.71" | "#dark-03.72" | "#dark-03.73" | "#dark-03.74" | "#dark-03.75" | "#dark-03.76" | "#dark-03.77" | "#dark-03.78" | "#dark-03.79" | "#dark-03.80" | "#dark-03.81" | "#dark-03.82" | "#dark-03.83" | "#dark-03.84" | "#dark-03.85" | "#dark-03.86" | "#dark-03.87" | "#dark-03.88" | "#dark-03.89" | "#dark-03.90" | "#dark-03.91" | "#dark-03.92" | "#dark-03.93" | "#dark-03.94" | "#dark-03.95" | "#dark-03.96" | "#dark-03.97" | "#dark-03.98" | "#dark-03.99" | "#dark-03.100" | "#dark-04" | "#dark-04.0" | "#dark-04.1" | "#dark-04.2" | "#dark-04.3" | "#dark-04.4" | "#dark-04.5" | "#dark-04.6" | "#dark-04.7" | "#dark-04.8" | "#dark-04.9" | "#dark-04.00" | "#dark-04.01" | "#dark-04.02" | "#dark-04.03" | "#dark-04.04" | "#dark-04.05" | "#dark-04.06" | "#dark-04.07" | "#dark-04.08" | "#dark-04.09" | "#dark-04.10" | "#dark-04.11" | "#dark-04.12" | "#dark-04.13" | "#dark-04.14" | "#dark-04.15" | "#dark-04.16" | "#dark-04.17" | "#dark-04.18" | "#dark-04.19" | "#dark-04.20" | "#dark-04.21" | "#dark-04.22" | "#dark-04.23" | "#dark-04.24" | "#dark-04.25" | "#dark-04.26" | "#dark-04.27" | "#dark-04.28" | "#dark-04.29" | "#dark-04.30" | "#dark-04.31" | "#dark-04.32" | "#dark-04.33" | "#dark-04.34" | "#dark-04.35" | "#dark-04.36" | "#dark-04.37" | "#dark-04.38" | "#dark-04.39" | "#dark-04.40" | "#dark-04.41" | "#dark-04.42" | "#dark-04.43" | "#dark-04.44" | "#dark-04.45" | "#dark-04.46" | "#dark-04.47" | "#dark-04.48" | "#dark-04.49" | "#dark-04.50" | "#dark-04.51" | "#dark-04.52" | "#dark-04.53" | "#dark-04.54" | "#dark-04.55" | "#dark-04.56" | "#dark-04.57" | "#dark-04.58" | "#dark-04.59" | "#dark-04.60" | "#dark-04.61" | "#dark-04.62" | "#dark-04.63" | "#dark-04.64" | "#dark-04.65" | "#dark-04.66" | "#dark-04.67" | "#dark-04.68" | "#dark-04.69" | "#dark-04.70" | "#dark-04.71" | "#dark-04.72" | "#dark-04.73" | "#dark-04.74" | "#dark-04.75" | "#dark-04.76" | "#dark-04.77" | "#dark-04.78" | "#dark-04.79" | "#dark-04.80" | "#dark-04.81" | "#dark-04.82" | "#dark-04.83" | "#dark-04.84" | "#dark-04.85" | "#dark-04.86" | "#dark-04.87" | "#dark-04.88" | "#dark-04.89" | "#dark-04.90" | "#dark-04.91" | "#dark-04.92" | "#dark-04.93" | "#dark-04.94" | "#dark-04.95" | "#dark-04.96" | "#dark-04.97" | "#dark-04.98" | "#dark-04.99" | "#dark-04.100" | "#dark-05" | "#dark-05.0" | "#dark-05.1" | "#dark-05.2" | "#dark-05.3" | "#dark-05.4" | "#dark-05.5" | "#dark-05.6" | "#dark-05.7" | "#dark-05.8" | "#dark-05.9" | "#dark-05.00" | "#dark-05.01" | "#dark-05.02" | "#dark-05.03" | "#dark-05.04" | "#dark-05.05" | "#dark-05.06" | "#dark-05.07" | "#dark-05.08" | "#dark-05.09" | "#dark-05.10" | "#dark-05.11" | "#dark-05.12" | "#dark-05.13" | "#dark-05.14" | "#dark-05.15" | "#dark-05.16" | "#dark-05.17" | "#dark-05.18" | "#dark-05.19" | "#dark-05.20" | "#dark-05.21" | "#dark-05.22" | "#dark-05.23" | "#dark-05.24" | "#dark-05.25" | "#dark-05.26" | "#dark-05.27" | "#dark-05.28" | "#dark-05.29" | "#dark-05.30" | "#dark-05.31" | "#dark-05.32" | "#dark-05.33" | "#dark-05.34" | "#dark-05.35" | "#dark-05.36" | "#dark-05.37" | "#dark-05.38" | "#dark-05.39" | "#dark-05.40" | "#dark-05.41" | "#dark-05.42" | "#dark-05.43" | "#dark-05.44" | "#dark-05.45" | "#dark-05.46" | "#dark-05.47" | "#dark-05.48" | "#dark-05.49" | "#dark-05.50" | "#dark-05.51" | "#dark-05.52" | "#dark-05.53" | "#dark-05.54" | "#dark-05.55" | "#dark-05.56" | "#dark-05.57" | "#dark-05.58" | "#dark-05.59" | "#dark-05.60" | "#dark-05.61" | "#dark-05.62" | "#dark-05.63" | "#dark-05.64" | "#dark-05.65" | "#dark-05.66" | "#dark-05.67" | "#dark-05.68" | "#dark-05.69" | "#dark-05.70" | "#dark-05.71" | "#dark-05.72" | "#dark-05.73" | "#dark-05.74" | "#dark-05.75" | "#dark-05.76" | "#dark-05.77" | "#dark-05.78" | "#dark-05.79" | "#dark-05.80" | "#dark-05.81" | "#dark-05.82" | "#dark-05.83" | "#dark-05.84" | "#dark-05.85" | "#dark-05.86" | "#dark-05.87" | "#dark-05.88" | "#dark-05.89" | "#dark-05.90" | "#dark-05.91" | "#dark-05.92" | "#dark-05.93" | "#dark-05.94" | "#dark-05.95" | "#dark-05.96" | "#dark-05.97" | "#dark-05.98" | "#dark-05.99" | "#dark-05.100" | "#dark-bg" | "#dark-bg.0" | "#dark-bg.1" | "#dark-bg.2" | "#dark-bg.3" | "#dark-bg.4" | "#dark-bg.5" | "#dark-bg.6" | "#dark-bg.7" | "#dark-bg.8" | "#dark-bg.9" | "#dark-bg.00" | "#dark-bg.01" | "#dark-bg.02" | "#dark-bg.03" | "#dark-bg.04" | "#dark-bg.05" | "#dark-bg.06" | "#dark-bg.07" | "#dark-bg.08" | "#dark-bg.09" | "#dark-bg.10" | "#dark-bg.11" | "#dark-bg.12" | "#dark-bg.13" | "#dark-bg.14" | "#dark-bg.15" | "#dark-bg.16" | "#dark-bg.17" | "#dark-bg.18" | "#dark-bg.19" | "#dark-bg.20" | "#dark-bg.21" | "#dark-bg.22" | "#dark-bg.23" | "#dark-bg.24" | "#dark-bg.25" | "#dark-bg.26" | "#dark-bg.27" | "#dark-bg.28" | "#dark-bg.29" | "#dark-bg.30" | "#dark-bg.31" | "#dark-bg.32" | "#dark-bg.33" | "#dark-bg.34" | "#dark-bg.35" | "#dark-bg.36" | "#dark-bg.37" | "#dark-bg.38" | "#dark-bg.39" | "#dark-bg.40" | "#dark-bg.41" | "#dark-bg.42" | "#dark-bg.43" | "#dark-bg.44" | "#dark-bg.45" | "#dark-bg.46" | "#dark-bg.47" | "#dark-bg.48" | "#dark-bg.49" | "#dark-bg.50" | "#dark-bg.51" | "#dark-bg.52" | "#dark-bg.53" | "#dark-bg.54" | "#dark-bg.55" | "#dark-bg.56" | "#dark-bg.57" | "#dark-bg.58" | "#dark-bg.59" | "#dark-bg.60" | "#dark-bg.61" | "#dark-bg.62" | "#dark-bg.63" | "#dark-bg.64" | "#dark-bg.65" | "#dark-bg.66" | "#dark-bg.67" | "#dark-bg.68" | "#dark-bg.69" | "#dark-bg.70" | "#dark-bg.71" | "#dark-bg.72" | "#dark-bg.73" | "#dark-bg.74" | "#dark-bg.75" | "#dark-bg.76" | "#dark-bg.77" | "#dark-bg.78" | "#dark-bg.79" | "#dark-bg.80" | "#dark-bg.81" | "#dark-bg.82" | "#dark-bg.83" | "#dark-bg.84" | "#dark-bg.85" | "#dark-bg.86" | "#dark-bg.87" | "#dark-bg.88" | "#dark-bg.89" | "#dark-bg.90" | "#dark-bg.91" | "#dark-bg.92" | "#dark-bg.93" | "#dark-bg.94" | "#dark-bg.95" | "#dark-bg.96" | "#dark-bg.97" | "#dark-bg.98" | "#dark-bg.99" | "#dark-bg.100" | "#text" | "#text.0" | "#text.1" | "#text.2" | "#text.3" | "#text.4" | "#text.5" | "#text.6" | "#text.7" | "#text.8" | "#text.9" | "#text.00" | "#text.01" | "#text.02" | "#text.03" | "#text.04" | "#text.05" | "#text.06" | "#text.07" | "#text.08" | "#text.09" | "#text.10" | "#text.11" | "#text.12" | "#text.13" | "#text.14" | "#text.15" | "#text.16" | "#text.17" | "#text.18" | "#text.19" | "#text.20" | "#text.21" | "#text.22" | "#text.23" | "#text.24" | "#text.25" | "#text.26" | "#text.27" | "#text.28" | "#text.29" | "#text.30" | "#text.31" | "#text.32" | "#text.33" | "#text.34" | "#text.35" | "#text.36" | "#text.37" | "#text.38" | "#text.39" | "#text.40" | "#text.41" | "#text.42" | "#text.43" | "#text.44" | "#text.45" | "#text.46" | "#text.47" | "#text.48" | "#text.49" | "#text.50" | "#text.51" | "#text.52" | "#text.53" | "#text.54" | "#text.55" | "#text.56" | "#text.57" | "#text.58" | "#text.59" | "#text.60" | "#text.61" | "#text.62" | "#text.63" | "#text.64" | "#text.65" | "#text.66" | "#text.67" | "#text.68" | "#text.69" | "#text.70" | "#text.71" | "#text.72" | "#text.73" | "#text.74" | "#text.75" | "#text.76" | "#text.77" | "#text.78" | "#text.79" | "#text.80" | "#text.81" | "#text.82" | "#text.83" | "#text.84" | "#text.85" | "#text.86" | "#text.87" | "#text.88" | "#text.89" | "#text.90" | "#text.91" | "#text.92" | "#text.93" | "#text.94" | "#text.95" | "#text.96" | "#text.97" | "#text.98" | "#text.99" | "#text.100" | "#primary" | "#primary.0" | "#primary.1" | "#primary.2" | "#primary.3" | "#primary.4" | "#primary.5" | "#primary.6" | "#primary.7" | "#primary.8" | "#primary.9" | "#primary.00" | "#primary.01" | "#primary.02" | "#primary.03" | "#primary.04" | "#primary.05" | "#primary.06" | "#primary.07" | "#primary.08" | "#primary.09" | "#primary.10" | "#primary.11" | "#primary.12" | "#primary.13" | "#primary.14" | "#primary.15" | "#primary.16" | "#primary.17" | "#primary.18" | "#primary.19" | "#primary.20" | "#primary.21" | "#primary.22" | "#primary.23" | "#primary.24" | "#primary.25" | "#primary.26" | "#primary.27" | "#primary.28" | "#primary.29" | "#primary.30" | "#primary.31" | "#primary.32" | "#primary.33" | "#primary.34" | "#primary.35" | "#primary.36" | "#primary.37" | "#primary.38" | "#primary.39" | "#primary.40" | "#primary.41" | "#primary.42" | "#primary.43" | "#primary.44" | "#primary.45" | "#primary.46" | "#primary.47" | "#primary.48" | "#primary.49" | "#primary.50" | "#primary.51" | "#primary.52" | "#primary.53" | "#primary.54" | "#primary.55" | "#primary.56" | "#primary.57" | "#primary.58" | "#primary.59" | "#primary.60" | "#primary.61" | "#primary.62" | "#primary.63" | "#primary.64" | "#primary.65" | "#primary.66" | "#primary.67" | "#primary.68" | "#primary.69" | "#primary.70" | "#primary.71" | "#primary.72" | "#primary.73" | "#primary.74" | "#primary.75" | "#primary.76" | "#primary.77" | "#primary.78" | "#primary.79" | "#primary.80" | "#primary.81" | "#primary.82" | "#primary.83" | "#primary.84" | "#primary.85" | "#primary.86" | "#primary.87" | "#primary.88" | "#primary.89" | "#primary.90" | "#primary.91" | "#primary.92" | "#primary.93" | "#primary.94" | "#primary.95" | "#primary.96" | "#primary.97" | "#primary.98" | "#primary.99" | "#primary.100" | "#disabled" | "#disabled.0" | "#disabled.1" | "#disabled.2" | "#disabled.3" | "#disabled.4" | "#disabled.5" | "#disabled.6" | "#disabled.7" | "#disabled.8" | "#disabled.9" | "#disabled.00" | "#disabled.01" | "#disabled.02" | "#disabled.03" | "#disabled.04" | "#disabled.05" | "#disabled.06" | "#disabled.07" | "#disabled.08" | "#disabled.09" | "#disabled.10" | "#disabled.11" | "#disabled.12" | "#disabled.13" | "#disabled.14" | "#disabled.15" | "#disabled.16" | "#disabled.17" | "#disabled.18" | "#disabled.19" | "#disabled.20" | "#disabled.21" | "#disabled.22" | "#disabled.23" | "#disabled.24" | "#disabled.25" | "#disabled.26" | "#disabled.27" | "#disabled.28" | "#disabled.29" | "#disabled.30" | "#disabled.31" | "#disabled.32" | "#disabled.33" | "#disabled.34" | "#disabled.35" | "#disabled.36" | "#disabled.37" | "#disabled.38" | "#disabled.39" | "#disabled.40" | "#disabled.41" | "#disabled.42" | "#disabled.43" | "#disabled.44" | "#disabled.45" | "#disabled.46" | "#disabled.47" | "#disabled.48" | "#disabled.49" | "#disabled.50" | "#disabled.51" | "#disabled.52" | "#disabled.53" | "#disabled.54" | "#disabled.55" | "#disabled.56" | "#disabled.57" | "#disabled.58" | "#disabled.59" | "#disabled.60" | "#disabled.61" | "#disabled.62" | "#disabled.63" | "#disabled.64" | "#disabled.65" | "#disabled.66" | "#disabled.67" | "#disabled.68" | "#disabled.69" | "#disabled.70" | "#disabled.71" | "#disabled.72" | "#disabled.73" | "#disabled.74" | "#disabled.75" | "#disabled.76" | "#disabled.77" | "#disabled.78" | "#disabled.79" | "#disabled.80" | "#disabled.81" | "#disabled.82" | "#disabled.83" | "#disabled.84" | "#disabled.85" | "#disabled.86" | "#disabled.87" | "#disabled.88" | "#disabled.89" | "#disabled.90" | "#disabled.91" | "#disabled.92" | "#disabled.93" | "#disabled.94" | "#disabled.95" | "#disabled.96" | "#disabled.97" | "#disabled.98" | "#disabled.99" | "#disabled.100" | "#disabled-bg" | "#disabled-bg.0" | "#disabled-bg.1" | "#disabled-bg.2" | "#disabled-bg.3" | "#disabled-bg.4" | "#disabled-bg.5" | "#disabled-bg.6" | "#disabled-bg.7" | "#disabled-bg.8" | "#disabled-bg.9" | "#disabled-bg.00" | "#disabled-bg.01" | "#disabled-bg.02" | "#disabled-bg.03" | "#disabled-bg.04" | "#disabled-bg.05" | "#disabled-bg.06" | "#disabled-bg.07" | "#disabled-bg.08" | "#disabled-bg.09" | "#disabled-bg.10" | "#disabled-bg.11" | "#disabled-bg.12" | "#disabled-bg.13" | "#disabled-bg.14" | "#disabled-bg.15" | "#disabled-bg.16" | "#disabled-bg.17" | "#disabled-bg.18" | "#disabled-bg.19" | "#disabled-bg.20" | "#disabled-bg.21" | "#disabled-bg.22" | "#disabled-bg.23" | "#disabled-bg.24" | "#disabled-bg.25" | "#disabled-bg.26" | "#disabled-bg.27" | "#disabled-bg.28" | "#disabled-bg.29" | "#disabled-bg.30" | "#disabled-bg.31" | "#disabled-bg.32" | "#disabled-bg.33" | "#disabled-bg.34" | "#disabled-bg.35" | "#disabled-bg.36" | "#disabled-bg.37" | "#disabled-bg.38" | "#disabled-bg.39" | "#disabled-bg.40" | "#disabled-bg.41" | "#disabled-bg.42" | "#disabled-bg.43" | "#disabled-bg.44" | "#disabled-bg.45" | "#disabled-bg.46" | "#disabled-bg.47" | "#disabled-bg.48" | "#disabled-bg.49" | "#disabled-bg.50" | "#disabled-bg.51" | "#disabled-bg.52" | "#disabled-bg.53" | "#disabled-bg.54" | "#disabled-bg.55" | "#disabled-bg.56" | "#disabled-bg.57" | "#disabled-bg.58" | "#disabled-bg.59" | "#disabled-bg.60" | "#disabled-bg.61" | "#disabled-bg.62" | "#disabled-bg.63" | "#disabled-bg.64" | "#disabled-bg.65" | "#disabled-bg.66" | "#disabled-bg.67" | "#disabled-bg.68" | "#disabled-bg.69" | "#disabled-bg.70" | "#disabled-bg.71" | "#disabled-bg.72" | "#disabled-bg.73" | "#disabled-bg.74" | "#disabled-bg.75" | "#disabled-bg.76" | "#disabled-bg.77" | "#disabled-bg.78" | "#disabled-bg.79" | "#disabled-bg.80" | "#disabled-bg.81" | "#disabled-bg.82" | "#disabled-bg.83" | "#disabled-bg.84" | "#disabled-bg.85" | "#disabled-bg.86" | "#disabled-bg.87" | "#disabled-bg.88" | "#disabled-bg.89" | "#disabled-bg.90" | "#disabled-bg.91" | "#disabled-bg.92" | "#disabled-bg.93" | "#disabled-bg.94" | "#disabled-bg.95" | "#disabled-bg.96" | "#disabled-bg.97" | "#disabled-bg.98" | "#disabled-bg.99" | "#disabled-bg.100" | "#disabled-text" | "#disabled-text.0" | "#disabled-text.1" | "#disabled-text.2" | "#disabled-text.3" | "#disabled-text.4" | "#disabled-text.5" | "#disabled-text.6" | "#disabled-text.7" | "#disabled-text.8" | "#disabled-text.9" | "#disabled-text.00" | "#disabled-text.01" | "#disabled-text.02" | "#disabled-text.03" | "#disabled-text.04" | "#disabled-text.05" | "#disabled-text.06" | "#disabled-text.07" | "#disabled-text.08" | "#disabled-text.09" | "#disabled-text.10" | "#disabled-text.11" | "#disabled-text.12" | "#disabled-text.13" | "#disabled-text.14" | "#disabled-text.15" | "#disabled-text.16" | "#disabled-text.17" | "#disabled-text.18" | "#disabled-text.19" | "#disabled-text.20" | "#disabled-text.21" | "#disabled-text.22" | "#disabled-text.23" | "#disabled-text.24" | "#disabled-text.25" | "#disabled-text.26" | "#disabled-text.27" | "#disabled-text.28" | "#disabled-text.29" | "#disabled-text.30" | "#disabled-text.31" | "#disabled-text.32" | "#disabled-text.33" | "#disabled-text.34" | "#disabled-text.35" | "#disabled-text.36" | "#disabled-text.37" | "#disabled-text.38" | "#disabled-text.39" | "#disabled-text.40" | "#disabled-text.41" | "#disabled-text.42" | "#disabled-text.43" | "#disabled-text.44" | "#disabled-text.45" | "#disabled-text.46" | "#disabled-text.47" | "#disabled-text.48" | "#disabled-text.49" | "#disabled-text.50" | "#disabled-text.51" | "#disabled-text.52" | "#disabled-text.53" | "#disabled-text.54" | "#disabled-text.55" | "#disabled-text.56" | "#disabled-text.57" | "#disabled-text.58" | "#disabled-text.59" | "#disabled-text.60" | "#disabled-text.61" | "#disabled-text.62" | "#disabled-text.63" | "#disabled-text.64" | "#disabled-text.65" | "#disabled-text.66" | "#disabled-text.67" | "#disabled-text.68" | "#disabled-text.69" | "#disabled-text.70" | "#disabled-text.71" | "#disabled-text.72" | "#disabled-text.73" | "#disabled-text.74" | "#disabled-text.75" | "#disabled-text.76" | "#disabled-text.77" | "#disabled-text.78" | "#disabled-text.79" | "#disabled-text.80" | "#disabled-text.81" | "#disabled-text.82" | "#disabled-text.83" | "#disabled-text.84" | "#disabled-text.85" | "#disabled-text.86" | "#disabled-text.87" | "#disabled-text.88" | "#disabled-text.89" | "#disabled-text.90" | "#disabled-text.91" | "#disabled-text.92" | "#disabled-text.93" | "#disabled-text.94" | "#disabled-text.95" | "#disabled-text.96" | "#disabled-text.97" | "#disabled-text.98" | "#disabled-text.99" | "#disabled-text.100" | "#danger" | "#danger.0" | "#danger.1" | "#danger.2" | "#danger.3" | "#danger.4" | "#danger.5" | "#danger.6" | "#danger.7" | "#danger.8" | "#danger.9" | "#danger.00" | "#danger.01" | "#danger.02" | "#danger.03" | "#danger.04" | "#danger.05" | "#danger.06" | "#danger.07" | "#danger.08" | "#danger.09" | "#danger.10" | "#danger.11" | "#danger.12" | "#danger.13" | "#danger.14" | "#danger.15" | "#danger.16" | "#danger.17" | "#danger.18" | "#danger.19" | "#danger.20" | "#danger.21" | "#danger.22" | "#danger.23" | "#danger.24" | "#danger.25" | "#danger.26" | "#danger.27" | "#danger.28" | "#danger.29" | "#danger.30" | "#danger.31" | "#danger.32" | "#danger.33" | "#danger.34" | "#danger.35" | "#danger.36" | "#danger.37" | "#danger.38" | "#danger.39" | "#danger.40" | "#danger.41" | "#danger.42" | "#danger.43" | "#danger.44" | "#danger.45" | "#danger.46" | "#danger.47" | "#danger.48" | "#danger.49" | "#danger.50" | "#danger.51" | "#danger.52" | "#danger.53" | "#danger.54" | "#danger.55" | "#danger.56" | "#danger.57" | "#danger.58" | "#danger.59" | "#danger.60" | "#danger.61" | "#danger.62" | "#danger.63" | "#danger.64" | "#danger.65" | "#danger.66" | "#danger.67" | "#danger.68" | "#danger.69" | "#danger.70" | "#danger.71" | "#danger.72" | "#danger.73" | "#danger.74" | "#danger.75" | "#danger.76" | "#danger.77" | "#danger.78" | "#danger.79" | "#danger.80" | "#danger.81" | "#danger.82" | "#danger.83" | "#danger.84" | "#danger.85" | "#danger.86" | "#danger.87" | "#danger.88" | "#danger.89" | "#danger.90" | "#danger.91" | "#danger.92" | "#danger.93" | "#danger.94" | "#danger.95" | "#danger.96" | "#danger.97" | "#danger.98" | "#danger.99" | "#danger.100" | "#danger-bg" | "#danger-bg.0" | "#danger-bg.1" | "#danger-bg.2" | "#danger-bg.3" | "#danger-bg.4" | "#danger-bg.5" | "#danger-bg.6" | "#danger-bg.7" | "#danger-bg.8" | "#danger-bg.9" | "#danger-bg.00" | "#danger-bg.01" | "#danger-bg.02" | "#danger-bg.03" | "#danger-bg.04" | "#danger-bg.05" | "#danger-bg.06" | "#danger-bg.07" | "#danger-bg.08" | "#danger-bg.09" | "#danger-bg.10" | "#danger-bg.11" | "#danger-bg.12" | "#danger-bg.13" | "#danger-bg.14" | "#danger-bg.15" | "#danger-bg.16" | "#danger-bg.17" | "#danger-bg.18" | "#danger-bg.19" | "#danger-bg.20" | "#danger-bg.21" | "#danger-bg.22" | "#danger-bg.23" | "#danger-bg.24" | "#danger-bg.25" | "#danger-bg.26" | "#danger-bg.27" | "#danger-bg.28" | "#danger-bg.29" | "#danger-bg.30" | "#danger-bg.31" | "#danger-bg.32" | "#danger-bg.33" | "#danger-bg.34" | "#danger-bg.35" | "#danger-bg.36" | "#danger-bg.37" | "#danger-bg.38" | "#danger-bg.39" | "#danger-bg.40" | "#danger-bg.41" | "#danger-bg.42" | "#danger-bg.43" | "#danger-bg.44" | "#danger-bg.45" | "#danger-bg.46" | "#danger-bg.47" | "#danger-bg.48" | "#danger-bg.49" | "#danger-bg.50" | "#danger-bg.51" | "#danger-bg.52" | "#danger-bg.53" | "#danger-bg.54" | "#danger-bg.55" | "#danger-bg.56" | "#danger-bg.57" | "#danger-bg.58" | "#danger-bg.59" | "#danger-bg.60" | "#danger-bg.61" | "#danger-bg.62" | "#danger-bg.63" | "#danger-bg.64" | "#danger-bg.65" | "#danger-bg.66" | "#danger-bg.67" | "#danger-bg.68" | "#danger-bg.69" | "#danger-bg.70" | "#danger-bg.71" | "#danger-bg.72" | "#danger-bg.73" | "#danger-bg.74" | "#danger-bg.75" | "#danger-bg.76" | "#danger-bg.77" | "#danger-bg.78" | "#danger-bg.79" | "#danger-bg.80" | "#danger-bg.81" | "#danger-bg.82" | "#danger-bg.83" | "#danger-bg.84" | "#danger-bg.85" | "#danger-bg.86" | "#danger-bg.87" | "#danger-bg.88" | "#danger-bg.89" | "#danger-bg.90" | "#danger-bg.91" | "#danger-bg.92" | "#danger-bg.93" | "#danger-bg.94" | "#danger-bg.95" | "#danger-bg.96" | "#danger-bg.97" | "#danger-bg.98" | "#danger-bg.99" | "#danger-bg.100" | "#danger-text" | "#danger-text.0" | "#danger-text.1" | "#danger-text.2" | "#danger-text.3" | "#danger-text.4" | "#danger-text.5" | "#danger-text.6" | "#danger-text.7" | "#danger-text.8" | "#danger-text.9" | "#danger-text.00" | "#danger-text.01" | "#danger-text.02" | "#danger-text.03" | "#danger-text.04" | "#danger-text.05" | "#danger-text.06" | "#danger-text.07" | "#danger-text.08" | "#danger-text.09" | "#danger-text.10" | "#danger-text.11" | "#danger-text.12" | "#danger-text.13" | "#danger-text.14" | "#danger-text.15" | "#danger-text.16" | "#danger-text.17" | "#danger-text.18" | "#danger-text.19" | "#danger-text.20" | "#danger-text.21" | "#danger-text.22" | "#danger-text.23" | "#danger-text.24" | "#danger-text.25" | "#danger-text.26" | "#danger-text.27" | "#danger-text.28" | "#danger-text.29" | "#danger-text.30" | "#danger-text.31" | "#danger-text.32" | "#danger-text.33" | "#danger-text.34" | "#danger-text.35" | "#danger-text.36" | "#danger-text.37" | "#danger-text.38" | "#danger-text.39" | "#danger-text.40" | "#danger-text.41" | "#danger-text.42" | "#danger-text.43" | "#danger-text.44" | "#danger-text.45" | "#danger-text.46" | "#danger-text.47" | "#danger-text.48" | "#danger-text.49" | "#danger-text.50" | "#danger-text.51" | "#danger-text.52" | "#danger-text.53" | "#danger-text.54" | "#danger-text.55" | "#danger-text.56" | "#danger-text.57" | "#danger-text.58" | "#danger-text.59" | "#danger-text.60" | "#danger-text.61" | "#danger-text.62" | "#danger-text.63" | "#danger-text.64" | "#danger-text.65" | "#danger-text.66" | "#danger-text.67" | "#danger-text.68" | "#danger-text.69" | "#danger-text.70" | "#danger-text.71" | "#danger-text.72" | "#danger-text.73" | "#danger-text.74" | "#danger-text.75" | "#danger-text.76" | "#danger-text.77" | "#danger-text.78" | "#danger-text.79" | "#danger-text.80" | "#danger-text.81" | "#danger-text.82" | "#danger-text.83" | "#danger-text.84" | "#danger-text.85" | "#danger-text.86" | "#danger-text.87" | "#danger-text.88" | "#danger-text.89" | "#danger-text.90" | "#danger-text.91" | "#danger-text.92" | "#danger-text.93" | "#danger-text.94" | "#danger-text.95" | "#danger-text.96" | "#danger-text.97" | "#danger-text.98" | "#danger-text.99" | "#danger-text.100" | "#danger-icon" | "#danger-icon.0" | "#danger-icon.1" | "#danger-icon.2" | "#danger-icon.3" | "#danger-icon.4" | "#danger-icon.5" | "#danger-icon.6" | "#danger-icon.7" | "#danger-icon.8" | "#danger-icon.9" | "#danger-icon.00" | "#danger-icon.01" | "#danger-icon.02" | "#danger-icon.03" | "#danger-icon.04" | "#danger-icon.05" | "#danger-icon.06" | "#danger-icon.07" | "#danger-icon.08" | "#danger-icon.09" | "#danger-icon.10" | "#danger-icon.11" | "#danger-icon.12" | "#danger-icon.13" | "#danger-icon.14" | "#danger-icon.15" | "#danger-icon.16" | "#danger-icon.17" | "#danger-icon.18" | "#danger-icon.19" | "#danger-icon.20" | "#danger-icon.21" | "#danger-icon.22" | "#danger-icon.23" | "#danger-icon.24" | "#danger-icon.25" | "#danger-icon.26" | "#danger-icon.27" | "#danger-icon.28" | "#danger-icon.29" | "#danger-icon.30" | "#danger-icon.31" | "#danger-icon.32" | "#danger-icon.33" | "#danger-icon.34" | "#danger-icon.35" | "#danger-icon.36" | "#danger-icon.37" | "#danger-icon.38" | "#danger-icon.39" | "#danger-icon.40" | "#danger-icon.41" | "#danger-icon.42" | "#danger-icon.43" | "#danger-icon.44" | "#danger-icon.45" | "#danger-icon.46" | "#danger-icon.47" | "#danger-icon.48" | "#danger-icon.49" | "#danger-icon.50" | "#danger-icon.51" | "#danger-icon.52" | "#danger-icon.53" | "#danger-icon.54" | "#danger-icon.55" | "#danger-icon.56" | "#danger-icon.57" | "#danger-icon.58" | "#danger-icon.59" | "#danger-icon.60" | "#danger-icon.61" | "#danger-icon.62" | "#danger-icon.63" | "#danger-icon.64" | "#danger-icon.65" | "#danger-icon.66" | "#danger-icon.67" | "#danger-icon.68" | "#danger-icon.69" | "#danger-icon.70" | "#danger-icon.71" | "#danger-icon.72" | "#danger-icon.73" | "#danger-icon.74" | "#danger-icon.75" | "#danger-icon.76" | "#danger-icon.77" | "#danger-icon.78" | "#danger-icon.79" | "#danger-icon.80" | "#danger-icon.81" | "#danger-icon.82" | "#danger-icon.83" | "#danger-icon.84" | "#danger-icon.85" | "#danger-icon.86" | "#danger-icon.87" | "#danger-icon.88" | "#danger-icon.89" | "#danger-icon.90" | "#danger-icon.91" | "#danger-icon.92" | "#danger-icon.93" | "#danger-icon.94" | "#danger-icon.95" | "#danger-icon.96" | "#danger-icon.97" | "#danger-icon.98" | "#danger-icon.99" | "#danger-icon.100" | "#success" | "#success.0" | "#success.1" | "#success.2" | "#success.3" | "#success.4" | "#success.5" | "#success.6" | "#success.7" | "#success.8" | "#success.9" | "#success.00" | "#success.01" | "#success.02" | "#success.03" | "#success.04" | "#success.05" | "#success.06" | "#success.07" | "#success.08" | "#success.09" | "#success.10" | "#success.11" | "#success.12" | "#success.13" | "#success.14" | "#success.15" | "#success.16" | "#success.17" | "#success.18" | "#success.19" | "#success.20" | "#success.21" | "#success.22" | "#success.23" | "#success.24" | "#success.25" | "#success.26" | "#success.27" | "#success.28" | "#success.29" | "#success.30" | "#success.31" | "#success.32" | "#success.33" | "#success.34" | "#success.35" | "#success.36" | "#success.37" | "#success.38" | "#success.39" | "#success.40" | "#success.41" | "#success.42" | "#success.43" | "#success.44" | "#success.45" | "#success.46" | "#success.47" | "#success.48" | "#success.49" | "#success.50" | "#success.51" | "#success.52" | "#success.53" | "#success.54" | "#success.55" | "#success.56" | "#success.57" | "#success.58" | "#success.59" | "#success.60" | "#success.61" | "#success.62" | "#success.63" | "#success.64" | "#success.65" | "#success.66" | "#success.67" | "#success.68" | "#success.69" | "#success.70" | "#success.71" | "#success.72" | "#success.73" | "#success.74" | "#success.75" | "#success.76" | "#success.77" | "#success.78" | "#success.79" | "#success.80" | "#success.81" | "#success.82" | "#success.83" | "#success.84" | "#success.85" | "#success.86" | "#success.87" | "#success.88" | "#success.89" | "#success.90" | "#success.91" | "#success.92" | "#success.93" | "#success.94" | "#success.95" | "#success.96" | "#success.97" | "#success.98" | "#success.99" | "#success.100" | "#success-bg" | "#success-bg.0" | "#success-bg.1" | "#success-bg.2" | "#success-bg.3" | "#success-bg.4" | "#success-bg.5" | "#success-bg.6" | "#success-bg.7" | "#success-bg.8" | "#success-bg.9" | "#success-bg.00" | "#success-bg.01" | "#success-bg.02" | "#success-bg.03" | "#success-bg.04" | "#success-bg.05" | "#success-bg.06" | "#success-bg.07" | "#success-bg.08" | "#success-bg.09" | "#success-bg.10" | "#success-bg.11" | "#success-bg.12" | "#success-bg.13" | "#success-bg.14" | "#success-bg.15" | "#success-bg.16" | "#success-bg.17" | "#success-bg.18" | "#success-bg.19" | "#success-bg.20" | "#success-bg.21" | "#success-bg.22" | "#success-bg.23" | "#success-bg.24" | "#success-bg.25" | "#success-bg.26" | "#success-bg.27" | "#success-bg.28" | "#success-bg.29" | "#success-bg.30" | "#success-bg.31" | "#success-bg.32" | "#success-bg.33" | "#success-bg.34" | "#success-bg.35" | "#success-bg.36" | "#success-bg.37" | "#success-bg.38" | "#success-bg.39" | "#success-bg.40" | "#success-bg.41" | "#success-bg.42" | "#success-bg.43" | "#success-bg.44" | "#success-bg.45" | "#success-bg.46" | "#success-bg.47" | "#success-bg.48" | "#success-bg.49" | "#success-bg.50" | "#success-bg.51" | "#success-bg.52" | "#success-bg.53" | "#success-bg.54" | "#success-bg.55" | "#success-bg.56" | "#success-bg.57" | "#success-bg.58" | "#success-bg.59" | "#success-bg.60" | "#success-bg.61" | "#success-bg.62" | "#success-bg.63" | "#success-bg.64" | "#success-bg.65" | "#success-bg.66" | "#success-bg.67" | "#success-bg.68" | "#success-bg.69" | "#success-bg.70" | "#success-bg.71" | "#success-bg.72" | "#success-bg.73" | "#success-bg.74" | "#success-bg.75" | "#success-bg.76" | "#success-bg.77" | "#success-bg.78" | "#success-bg.79" | "#success-bg.80" | "#success-bg.81" | "#success-bg.82" | "#success-bg.83" | "#success-bg.84" | "#success-bg.85" | "#success-bg.86" | "#success-bg.87" | "#success-bg.88" | "#success-bg.89" | "#success-bg.90" | "#success-bg.91" | "#success-bg.92" | "#success-bg.93" | "#success-bg.94" | "#success-bg.95" | "#success-bg.96" | "#success-bg.97" | "#success-bg.98" | "#success-bg.99" | "#success-bg.100" | "#success-text" | "#success-text.0" | "#success-text.1" | "#success-text.2" | "#success-text.3" | "#success-text.4" | "#success-text.5" | "#success-text.6" | "#success-text.7" | "#success-text.8" | "#success-text.9" | "#success-text.00" | "#success-text.01" | "#success-text.02" | "#success-text.03" | "#success-text.04" | "#success-text.05" | "#success-text.06" | "#success-text.07" | "#success-text.08" | "#success-text.09" | "#success-text.10" | "#success-text.11" | "#success-text.12" | "#success-text.13" | "#success-text.14" | "#success-text.15" | "#success-text.16" | "#success-text.17" | "#success-text.18" | "#success-text.19" | "#success-text.20" | "#success-text.21" | "#success-text.22" | "#success-text.23" | "#success-text.24" | "#success-text.25" | "#success-text.26" | "#success-text.27" | "#success-text.28" | "#success-text.29" | "#success-text.30" | "#success-text.31" | "#success-text.32" | "#success-text.33" | "#success-text.34" | "#success-text.35" | "#success-text.36" | "#success-text.37" | "#success-text.38" | "#success-text.39" | "#success-text.40" | "#success-text.41" | "#success-text.42" | "#success-text.43" | "#success-text.44" | "#success-text.45" | "#success-text.46" | "#success-text.47" | "#success-text.48" | "#success-text.49" | "#success-text.50" | "#success-text.51" | "#success-text.52" | "#success-text.53" | "#success-text.54" | "#success-text.55" | "#success-text.56" | "#success-text.57" | "#success-text.58" | "#success-text.59" | "#success-text.60" | "#success-text.61" | "#success-text.62" | "#success-text.63" | "#success-text.64" | "#success-text.65" | "#success-text.66" | "#success-text.67" | "#success-text.68" | "#success-text.69" | "#success-text.70" | "#success-text.71" | "#success-text.72" | "#success-text.73" | "#success-text.74" | "#success-text.75" | "#success-text.76" | "#success-text.77" | "#success-text.78" | "#success-text.79" | "#success-text.80" | "#success-text.81" | "#success-text.82" | "#success-text.83" | "#success-text.84" | "#success-text.85" | "#success-text.86" | "#success-text.87" | "#success-text.88" | "#success-text.89" | "#success-text.90" | "#success-text.91" | "#success-text.92" | "#success-text.93" | "#success-text.94" | "#success-text.95" | "#success-text.96" | "#success-text.97" | "#success-text.98" | "#success-text.99" | "#success-text.100" | "#success-icon" | "#success-icon.0" | "#success-icon.1" | "#success-icon.2" | "#success-icon.3" | "#success-icon.4" | "#success-icon.5" | "#success-icon.6" | "#success-icon.7" | "#success-icon.8" | "#success-icon.9" | "#success-icon.00" | "#success-icon.01" | "#success-icon.02" | "#success-icon.03" | "#success-icon.04" | "#success-icon.05" | "#success-icon.06" | "#success-icon.07" | "#success-icon.08" | "#success-icon.09" | "#success-icon.10" | "#success-icon.11" | "#success-icon.12" | "#success-icon.13" | "#success-icon.14" | "#success-icon.15" | "#success-icon.16" | "#success-icon.17" | "#success-icon.18" | "#success-icon.19" | "#success-icon.20" | "#success-icon.21" | "#success-icon.22" | "#success-icon.23" | "#success-icon.24" | "#success-icon.25" | "#success-icon.26" | "#success-icon.27" | "#success-icon.28" | "#success-icon.29" | "#success-icon.30" | "#success-icon.31" | "#success-icon.32" | "#success-icon.33" | "#success-icon.34" | "#success-icon.35" | "#success-icon.36" | "#success-icon.37" | "#success-icon.38" | "#success-icon.39" | "#success-icon.40" | "#success-icon.41" | "#success-icon.42" | "#success-icon.43" | "#success-icon.44" | "#success-icon.45" | "#success-icon.46" | "#success-icon.47" | "#success-icon.48" | "#success-icon.49" | "#success-icon.50" | "#success-icon.51" | "#success-icon.52" | "#success-icon.53" | "#success-icon.54" | "#success-icon.55" | "#success-icon.56" | "#success-icon.57" | "#success-icon.58" | "#success-icon.59" | "#success-icon.60" | "#success-icon.61" | "#success-icon.62" | "#success-icon.63" | "#success-icon.64" | "#success-icon.65" | "#success-icon.66" | "#success-icon.67" | "#success-icon.68" | "#success-icon.69" | "#success-icon.70" | "#success-icon.71" | "#success-icon.72" | "#success-icon.73" | "#success-icon.74" | "#success-icon.75" | "#success-icon.76" | "#success-icon.77" | "#success-icon.78" | "#success-icon.79" | "#success-icon.80" | "#success-icon.81" | "#success-icon.82" | "#success-icon.83" | "#success-icon.84" | "#success-icon.85" | "#success-icon.86" | "#success-icon.87" | "#success-icon.88" | "#success-icon.89" | "#success-icon.90" | "#success-icon.91" | "#success-icon.92" | "#success-icon.93" | "#success-icon.94" | "#success-icon.95" | "#success-icon.96" | "#success-icon.97" | "#success-icon.98" | "#success-icon.99" | "#success-icon.100" | "#note" | "#note.0" | "#note.1" | "#note.2" | "#note.3" | "#note.4" | "#note.5" | "#note.6" | "#note.7" | "#note.8" | "#note.9" | "#note.00" | "#note.01" | "#note.02" | "#note.03" | "#note.04" | "#note.05" | "#note.06" | "#note.07" | "#note.08" | "#note.09" | "#note.10" | "#note.11" | "#note.12" | "#note.13" | "#note.14" | "#note.15" | "#note.16" | "#note.17" | "#note.18" | "#note.19" | "#note.20" | "#note.21" | "#note.22" | "#note.23" | "#note.24" | "#note.25" | "#note.26" | "#note.27" | "#note.28" | "#note.29" | "#note.30" | "#note.31" | "#note.32" | "#note.33" | "#note.34" | "#note.35" | "#note.36" | "#note.37" | "#note.38" | "#note.39" | "#note.40" | "#note.41" | "#note.42" | "#note.43" | "#note.44" | "#note.45" | "#note.46" | "#note.47" | "#note.48" | "#note.49" | "#note.50" | "#note.51" | "#note.52" | "#note.53" | "#note.54" | "#note.55" | "#note.56" | "#note.57" | "#note.58" | "#note.59" | "#note.60" | "#note.61" | "#note.62" | "#note.63" | "#note.64" | "#note.65" | "#note.66" | "#note.67" | "#note.68" | "#note.69" | "#note.70" | "#note.71" | "#note.72" | "#note.73" | "#note.74" | "#note.75" | "#note.76" | "#note.77" | "#note.78" | "#note.79" | "#note.80" | "#note.81" | "#note.82" | "#note.83" | "#note.84" | "#note.85" | "#note.86" | "#note.87" | "#note.88" | "#note.89" | "#note.90" | "#note.91" | "#note.92" | "#note.93" | "#note.94" | "#note.95" | "#note.96" | "#note.97" | "#note.98" | "#note.99" | "#note.100" | "#note-bg" | "#note-bg.0" | "#note-bg.1" | "#note-bg.2" | "#note-bg.3" | "#note-bg.4" | "#note-bg.5" | "#note-bg.6" | "#note-bg.7" | "#note-bg.8" | "#note-bg.9" | "#note-bg.00" | "#note-bg.01" | "#note-bg.02" | "#note-bg.03" | "#note-bg.04" | "#note-bg.05" | "#note-bg.06" | "#note-bg.07" | "#note-bg.08" | "#note-bg.09" | "#note-bg.10" | "#note-bg.11" | "#note-bg.12" | "#note-bg.13" | "#note-bg.14" | "#note-bg.15" | "#note-bg.16" | "#note-bg.17" | "#note-bg.18" | "#note-bg.19" | "#note-bg.20" | "#note-bg.21" | "#note-bg.22" | "#note-bg.23" | "#note-bg.24" | "#note-bg.25" | "#note-bg.26" | "#note-bg.27" | "#note-bg.28" | "#note-bg.29" | "#note-bg.30" | "#note-bg.31" | "#note-bg.32" | "#note-bg.33" | "#note-bg.34" | "#note-bg.35" | "#note-bg.36" | "#note-bg.37" | "#note-bg.38" | "#note-bg.39" | "#note-bg.40" | "#note-bg.41" | "#note-bg.42" | "#note-bg.43" | "#note-bg.44" | "#note-bg.45" | "#note-bg.46" | "#note-bg.47" | "#note-bg.48" | "#note-bg.49" | "#note-bg.50" | "#note-bg.51" | "#note-bg.52" | "#note-bg.53" | "#note-bg.54" | "#note-bg.55" | "#note-bg.56" | "#note-bg.57" | "#note-bg.58" | "#note-bg.59" | "#note-bg.60" | "#note-bg.61" | "#note-bg.62" | "#note-bg.63" | "#note-bg.64" | "#note-bg.65" | "#note-bg.66" | "#note-bg.67" | "#note-bg.68" | "#note-bg.69" | "#note-bg.70" | "#note-bg.71" | "#note-bg.72" | "#note-bg.73" | "#note-bg.74" | "#note-bg.75" | "#note-bg.76" | "#note-bg.77" | "#note-bg.78" | "#note-bg.79" | "#note-bg.80" | "#note-bg.81" | "#note-bg.82" | "#note-bg.83" | "#note-bg.84" | "#note-bg.85" | "#note-bg.86" | "#note-bg.87" | "#note-bg.88" | "#note-bg.89" | "#note-bg.90" | "#note-bg.91" | "#note-bg.92" | "#note-bg.93" | "#note-bg.94" | "#note-bg.95" | "#note-bg.96" | "#note-bg.97" | "#note-bg.98" | "#note-bg.99" | "#note-bg.100" | "#note-text" | "#note-text.0" | "#note-text.1" | "#note-text.2" | "#note-text.3" | "#note-text.4" | "#note-text.5" | "#note-text.6" | "#note-text.7" | "#note-text.8" | "#note-text.9" | "#note-text.00" | "#note-text.01" | "#note-text.02" | "#note-text.03" | "#note-text.04" | "#note-text.05" | "#note-text.06" | "#note-text.07" | "#note-text.08" | "#note-text.09" | "#note-text.10" | "#note-text.11" | "#note-text.12" | "#note-text.13" | "#note-text.14" | "#note-text.15" | "#note-text.16" | "#note-text.17" | "#note-text.18" | "#note-text.19" | "#note-text.20" | "#note-text.21" | "#note-text.22" | "#note-text.23" | "#note-text.24" | "#note-text.25" | "#note-text.26" | "#note-text.27" | "#note-text.28" | "#note-text.29" | "#note-text.30" | "#note-text.31" | "#note-text.32" | "#note-text.33" | "#note-text.34" | "#note-text.35" | "#note-text.36" | "#note-text.37" | "#note-text.38" | "#note-text.39" | "#note-text.40" | "#note-text.41" | "#note-text.42" | "#note-text.43" | "#note-text.44" | "#note-text.45" | "#note-text.46" | "#note-text.47" | "#note-text.48" | "#note-text.49" | "#note-text.50" | "#note-text.51" | "#note-text.52" | "#note-text.53" | "#note-text.54" | "#note-text.55" | "#note-text.56" | "#note-text.57" | "#note-text.58" | "#note-text.59" | "#note-text.60" | "#note-text.61" | "#note-text.62" | "#note-text.63" | "#note-text.64" | "#note-text.65" | "#note-text.66" | "#note-text.67" | "#note-text.68" | "#note-text.69" | "#note-text.70" | "#note-text.71" | "#note-text.72" | "#note-text.73" | "#note-text.74" | "#note-text.75" | "#note-text.76" | "#note-text.77" | "#note-text.78" | "#note-text.79" | "#note-text.80" | "#note-text.81" | "#note-text.82" | "#note-text.83" | "#note-text.84" | "#note-text.85" | "#note-text.86" | "#note-text.87" | "#note-text.88" | "#note-text.89" | "#note-text.90" | "#note-text.91" | "#note-text.92" | "#note-text.93" | "#note-text.94" | "#note-text.95" | "#note-text.96" | "#note-text.97" | "#note-text.98" | "#note-text.99" | "#note-text.100" | "#note-icon" | "#note-icon.0" | "#note-icon.1" | "#note-icon.2" | "#note-icon.3" | "#note-icon.4" | "#note-icon.5" | "#note-icon.6" | "#note-icon.7" | "#note-icon.8" | "#note-icon.9" | "#note-icon.00" | "#note-icon.01" | "#note-icon.02" | "#note-icon.03" | "#note-icon.04" | "#note-icon.05" | "#note-icon.06" | "#note-icon.07" | "#note-icon.08" | "#note-icon.09" | "#note-icon.10" | "#note-icon.11" | "#note-icon.12" | "#note-icon.13" | "#note-icon.14" | "#note-icon.15" | "#note-icon.16" | "#note-icon.17" | "#note-icon.18" | "#note-icon.19" | "#note-icon.20" | "#note-icon.21" | "#note-icon.22" | "#note-icon.23" | "#note-icon.24" | "#note-icon.25" | "#note-icon.26" | "#note-icon.27" | "#note-icon.28" | "#note-icon.29" | "#note-icon.30" | "#note-icon.31" | "#note-icon.32" | "#note-icon.33" | "#note-icon.34" | "#note-icon.35" | "#note-icon.36" | "#note-icon.37" | "#note-icon.38" | "#note-icon.39" | "#note-icon.40" | "#note-icon.41" | "#note-icon.42" | "#note-icon.43" | "#note-icon.44" | "#note-icon.45" | "#note-icon.46" | "#note-icon.47" | "#note-icon.48" | "#note-icon.49" | "#note-icon.50" | "#note-icon.51" | "#note-icon.52" | "#note-icon.53" | "#note-icon.54" | "#note-icon.55" | "#note-icon.56" | "#note-icon.57" | "#note-icon.58" | "#note-icon.59" | "#note-icon.60" | "#note-icon.61" | "#note-icon.62" | "#note-icon.63" | "#note-icon.64" | "#note-icon.65" | "#note-icon.66" | "#note-icon.67" | "#note-icon.68" | "#note-icon.69" | "#note-icon.70" | "#note-icon.71" | "#note-icon.72" | "#note-icon.73" | "#note-icon.74" | "#note-icon.75" | "#note-icon.76" | "#note-icon.77" | "#note-icon.78" | "#note-icon.79" | "#note-icon.80" | "#note-icon.81" | "#note-icon.82" | "#note-icon.83" | "#note-icon.84" | "#note-icon.85" | "#note-icon.86" | "#note-icon.87" | "#note-icon.88" | "#note-icon.89" | "#note-icon.90" | "#note-icon.91" | "#note-icon.92" | "#note-icon.93" | "#note-icon.94" | "#note-icon.95" | "#note-icon.96" | "#note-icon.97" | "#note-icon.98" | "#note-icon.99" | "#note-icon.100" | "#white" | "#white.0" | "#white.1" | "#white.2" | "#white.3" | "#white.4" | "#white.5" | "#white.6" | "#white.7" | "#white.8" | "#white.9" | "#white.00" | "#white.01" | "#white.02" | "#white.03" | "#white.04" | "#white.05" | "#white.06" | "#white.07" | "#white.08" | "#white.09" | "#white.10" | "#white.11" | "#white.12" | "#white.13" | "#white.14" | "#white.15" | "#white.16" | "#white.17" | "#white.18" | "#white.19" | "#white.20" | "#white.21" | "#white.22" | "#white.23" | "#white.24" | "#white.25" | "#white.26" | "#white.27" | "#white.28" | "#white.29" | "#white.30" | "#white.31" | "#white.32" | "#white.33" | "#white.34" | "#white.35" | "#white.36" | "#white.37" | "#white.38" | "#white.39" | "#white.40" | "#white.41" | "#white.42" | "#white.43" | "#white.44" | "#white.45" | "#white.46" | "#white.47" | "#white.48" | "#white.49" | "#white.50" | "#white.51" | "#white.52" | "#white.53" | "#white.54" | "#white.55" | "#white.56" | "#white.57" | "#white.58" | "#white.59" | "#white.60" | "#white.61" | "#white.62" | "#white.63" | "#white.64" | "#white.65" | "#white.66" | "#white.67" | "#white.68" | "#white.69" | "#white.70" | "#white.71" | "#white.72" | "#white.73" | "#white.74" | "#white.75" | "#white.76" | "#white.77" | "#white.78" | "#white.79" | "#white.80" | "#white.81" | "#white.82" | "#white.83" | "#white.84" | "#white.85" | "#white.86" | "#white.87" | "#white.88" | "#white.89" | "#white.90" | "#white.91" | "#white.92" | "#white.93" | "#white.94" | "#white.95" | "#white.96" | "#white.97" | "#white.98" | "#white.99" | "#white.100" | "#light" | "#light.0" | "#light.1" | "#light.2" | "#light.3" | "#light.4" | "#light.5" | "#light.6" | "#light.7" | "#light.8" | "#light.9" | "#light.00" | "#light.01" | "#light.02" | "#light.03" | "#light.04" | "#light.05" | "#light.06" | "#light.07" | "#light.08" | "#light.09" | "#light.10" | "#light.11" | "#light.12" | "#light.13" | "#light.14" | "#light.15" | "#light.16" | "#light.17" | "#light.18" | "#light.19" | "#light.20" | "#light.21" | "#light.22" | "#light.23" | "#light.24" | "#light.25" | "#light.26" | "#light.27" | "#light.28" | "#light.29" | "#light.30" | "#light.31" | "#light.32" | "#light.33" | "#light.34" | "#light.35" | "#light.36" | "#light.37" | "#light.38" | "#light.39" | "#light.40" | "#light.41" | "#light.42" | "#light.43" | "#light.44" | "#light.45" | "#light.46" | "#light.47" | "#light.48" | "#light.49" | "#light.50" | "#light.51" | "#light.52" | "#light.53" | "#light.54" | "#light.55" | "#light.56" | "#light.57" | "#light.58" | "#light.59" | "#light.60" | "#light.61" | "#light.62" | "#light.63" | "#light.64" | "#light.65" | "#light.66" | "#light.67" | "#light.68" | "#light.69" | "#light.70" | "#light.71" | "#light.72" | "#light.73" | "#light.74" | "#light.75" | "#light.76" | "#light.77" | "#light.78" | "#light.79" | "#light.80" | "#light.81" | "#light.82" | "#light.83" | "#light.84" | "#light.85" | "#light.86" | "#light.87" | "#light.88" | "#light.89" | "#light.90" | "#light.91" | "#light.92" | "#light.93" | "#light.94" | "#light.95" | "#light.96" | "#light.97" | "#light.98" | "#light.99" | "#light.100" | "#light-grey" | "#light-grey.0" | "#light-grey.1" | "#light-grey.2" | "#light-grey.3" | "#light-grey.4" | "#light-grey.5" | "#light-grey.6" | "#light-grey.7" | "#light-grey.8" | "#light-grey.9" | "#light-grey.00" | "#light-grey.01" | "#light-grey.02" | "#light-grey.03" | "#light-grey.04" | "#light-grey.05" | "#light-grey.06" | "#light-grey.07" | "#light-grey.08" | "#light-grey.09" | "#light-grey.10" | "#light-grey.11" | "#light-grey.12" | "#light-grey.13" | "#light-grey.14" | "#light-grey.15" | "#light-grey.16" | "#light-grey.17" | "#light-grey.18" | "#light-grey.19" | "#light-grey.20" | "#light-grey.21" | "#light-grey.22" | "#light-grey.23" | "#light-grey.24" | "#light-grey.25" | "#light-grey.26" | "#light-grey.27" | "#light-grey.28" | "#light-grey.29" | "#light-grey.30" | "#light-grey.31" | "#light-grey.32" | "#light-grey.33" | "#light-grey.34" | "#light-grey.35" | "#light-grey.36" | "#light-grey.37" | "#light-grey.38" | "#light-grey.39" | "#light-grey.40" | "#light-grey.41" | "#light-grey.42" | "#light-grey.43" | "#light-grey.44" | "#light-grey.45" | "#light-grey.46" | "#light-grey.47" | "#light-grey.48" | "#light-grey.49" | "#light-grey.50" | "#light-grey.51" | "#light-grey.52" | "#light-grey.53" | "#light-grey.54" | "#light-grey.55" | "#light-grey.56" | "#light-grey.57" | "#light-grey.58" | "#light-grey.59" | "#light-grey.60" | "#light-grey.61" | "#light-grey.62" | "#light-grey.63" | "#light-grey.64" | "#light-grey.65" | "#light-grey.66" | "#light-grey.67" | "#light-grey.68" | "#light-grey.69" | "#light-grey.70" | "#light-grey.71" | "#light-grey.72" | "#light-grey.73" | "#light-grey.74" | "#light-grey.75" | "#light-grey.76" | "#light-grey.77" | "#light-grey.78" | "#light-grey.79" | "#light-grey.80" | "#light-grey.81" | "#light-grey.82" | "#light-grey.83" | "#light-grey.84" | "#light-grey.85" | "#light-grey.86" | "#light-grey.87" | "#light-grey.88" | "#light-grey.89" | "#light-grey.90" | "#light-grey.91" | "#light-grey.92" | "#light-grey.93" | "#light-grey.94" | "#light-grey.95" | "#light-grey.96" | "#light-grey.97" | "#light-grey.98" | "#light-grey.99" | "#light-grey.100" | "#black" | "#black.0" | "#black.1" | "#black.2" | "#black.3" | "#black.4" | "#black.5" | "#black.6" | "#black.7" | "#black.8" | "#black.9" | "#black.00" | "#black.01" | "#black.02" | "#black.03" | "#black.04" | "#black.05" | "#black.06" | "#black.07" | "#black.08" | "#black.09" | "#black.10" | "#black.11" | "#black.12" | "#black.13" | "#black.14" | "#black.15" | "#black.16" | "#black.17" | "#black.18" | "#black.19" | "#black.20" | "#black.21" | "#black.22" | "#black.23" | "#black.24" | "#black.25" | "#black.26" | "#black.27" | "#black.28" | "#black.29" | "#black.30" | "#black.31" | "#black.32" | "#black.33" | "#black.34" | "#black.35" | "#black.36" | "#black.37" | "#black.38" | "#black.39" | "#black.40" | "#black.41" | "#black.42" | "#black.43" | "#black.44" | "#black.45" | "#black.46" | "#black.47" | "#black.48" | "#black.49" | "#black.50" | "#black.51" | "#black.52" | "#black.53" | "#black.54" | "#black.55" | "#black.56" | "#black.57" | "#black.58" | "#black.59" | "#black.60" | "#black.61" | "#black.62" | "#black.63" | "#black.64" | "#black.65" | "#black.66" | "#black.67" | "#black.68" | "#black.69" | "#black.70" | "#black.71" | "#black.72" | "#black.73" | "#black.74" | "#black.75" | "#black.76" | "#black.77" | "#black.78" | "#black.79" | "#black.80" | "#black.81" | "#black.82" | "#black.83" | "#black.84" | "#black.85" | "#black.86" | "#black.87" | "#black.88" | "#black.89" | "#black.90" | "#black.91" | "#black.92" | "#black.93" | "#black.94" | "#black.95" | "#black.96" | "#black.97" | "#black.98" | "#black.99" | "#black.100" | "#pink" | "#pink.0" | "#pink.1" | "#pink.2" | "#pink.3" | "#pink.4" | "#pink.5" | "#pink.6" | "#pink.7" | "#pink.8" | "#pink.9" | "#pink.00" | "#pink.01" | "#pink.02" | "#pink.03" | "#pink.04" | "#pink.05" | "#pink.06" | "#pink.07" | "#pink.08" | "#pink.09" | "#pink.10" | "#pink.11" | "#pink.12" | "#pink.13" | "#pink.14" | "#pink.15" | "#pink.16" | "#pink.17" | "#pink.18" | "#pink.19" | "#pink.20" | "#pink.21" | "#pink.22" | "#pink.23" | "#pink.24" | "#pink.25" | "#pink.26" | "#pink.27" | "#pink.28" | "#pink.29" | "#pink.30" | "#pink.31" | "#pink.32" | "#pink.33" | "#pink.34" | "#pink.35" | "#pink.36" | "#pink.37" | "#pink.38" | "#pink.39" | "#pink.40" | "#pink.41" | "#pink.42" | "#pink.43" | "#pink.44" | "#pink.45" | "#pink.46" | "#pink.47" | "#pink.48" | "#pink.49" | "#pink.50" | "#pink.51" | "#pink.52" | "#pink.53" | "#pink.54" | "#pink.55" | "#pink.56" | "#pink.57" | "#pink.58" | "#pink.59" | "#pink.60" | "#pink.61" | "#pink.62" | "#pink.63" | "#pink.64" | "#pink.65" | "#pink.66" | "#pink.67" | "#pink.68" | "#pink.69" | "#pink.70" | "#pink.71" | "#pink.72" | "#pink.73" | "#pink.74" | "#pink.75" | "#pink.76" | "#pink.77" | "#pink.78" | "#pink.79" | "#pink.80" | "#pink.81" | "#pink.82" | "#pink.83" | "#pink.84" | "#pink.85" | "#pink.86" | "#pink.87" | "#pink.88" | "#pink.89" | "#pink.90" | "#pink.91" | "#pink.92" | "#pink.93" | "#pink.94" | "#pink.95" | "#pink.96" | "#pink.97" | "#pink.98" | "#pink.99" | "#pink.100" | "#pink-01" | "#pink-01.0" | "#pink-01.1" | "#pink-01.2" | "#pink-01.3" | "#pink-01.4" | "#pink-01.5" | "#pink-01.6" | "#pink-01.7" | "#pink-01.8" | "#pink-01.9" | "#pink-01.00" | "#pink-01.01" | "#pink-01.02" | "#pink-01.03" | "#pink-01.04" | "#pink-01.05" | "#pink-01.06" | "#pink-01.07" | "#pink-01.08" | "#pink-01.09" | "#pink-01.10" | "#pink-01.11" | "#pink-01.12" | "#pink-01.13" | "#pink-01.14" | "#pink-01.15" | "#pink-01.16" | "#pink-01.17" | "#pink-01.18" | "#pink-01.19" | "#pink-01.20" | "#pink-01.21" | "#pink-01.22" | "#pink-01.23" | "#pink-01.24" | "#pink-01.25" | "#pink-01.26" | "#pink-01.27" | "#pink-01.28" | "#pink-01.29" | "#pink-01.30" | "#pink-01.31" | "#pink-01.32" | "#pink-01.33" | "#pink-01.34" | "#pink-01.35" | "#pink-01.36" | "#pink-01.37" | "#pink-01.38" | "#pink-01.39" | "#pink-01.40" | "#pink-01.41" | "#pink-01.42" | "#pink-01.43" | "#pink-01.44" | "#pink-01.45" | "#pink-01.46" | "#pink-01.47" | "#pink-01.48" | "#pink-01.49" | "#pink-01.50" | "#pink-01.51" | "#pink-01.52" | "#pink-01.53" | "#pink-01.54" | "#pink-01.55" | "#pink-01.56" | "#pink-01.57" | "#pink-01.58" | "#pink-01.59" | "#pink-01.60" | "#pink-01.61" | "#pink-01.62" | "#pink-01.63" | "#pink-01.64" | "#pink-01.65" | "#pink-01.66" | "#pink-01.67" | "#pink-01.68" | "#pink-01.69" | "#pink-01.70" | "#pink-01.71" | "#pink-01.72" | "#pink-01.73" | "#pink-01.74" | "#pink-01.75" | "#pink-01.76" | "#pink-01.77" | "#pink-01.78" | "#pink-01.79" | "#pink-01.80" | "#pink-01.81" | "#pink-01.82" | "#pink-01.83" | "#pink-01.84" | "#pink-01.85" | "#pink-01.86" | "#pink-01.87" | "#pink-01.88" | "#pink-01.89" | "#pink-01.90" | "#pink-01.91" | "#pink-01.92" | "#pink-01.93" | "#pink-01.94" | "#pink-01.95" | "#pink-01.96" | "#pink-01.97" | "#pink-01.98" | "#pink-01.99" | "#pink-01.100" | "#pink-02" | "#pink-02.0" | "#pink-02.1" | "#pink-02.2" | "#pink-02.3" | "#pink-02.4" | "#pink-02.5" | "#pink-02.6" | "#pink-02.7" | "#pink-02.8" | "#pink-02.9" | "#pink-02.00" | "#pink-02.01" | "#pink-02.02" | "#pink-02.03" | "#pink-02.04" | "#pink-02.05" | "#pink-02.06" | "#pink-02.07" | "#pink-02.08" | "#pink-02.09" | "#pink-02.10" | "#pink-02.11" | "#pink-02.12" | "#pink-02.13" | "#pink-02.14" | "#pink-02.15" | "#pink-02.16" | "#pink-02.17" | "#pink-02.18" | "#pink-02.19" | "#pink-02.20" | "#pink-02.21" | "#pink-02.22" | "#pink-02.23" | "#pink-02.24" | "#pink-02.25" | "#pink-02.26" | "#pink-02.27" | "#pink-02.28" | "#pink-02.29" | "#pink-02.30" | "#pink-02.31" | "#pink-02.32" | "#pink-02.33" | "#pink-02.34" | "#pink-02.35" | "#pink-02.36" | "#pink-02.37" | "#pink-02.38" | "#pink-02.39" | "#pink-02.40" | "#pink-02.41" | "#pink-02.42" | "#pink-02.43" | "#pink-02.44" | "#pink-02.45" | "#pink-02.46" | "#pink-02.47" | "#pink-02.48" | "#pink-02.49" | "#pink-02.50" | "#pink-02.51" | "#pink-02.52" | "#pink-02.53" | "#pink-02.54" | "#pink-02.55" | "#pink-02.56" | "#pink-02.57" | "#pink-02.58" | "#pink-02.59" | "#pink-02.60" | "#pink-02.61" | "#pink-02.62" | "#pink-02.63" | "#pink-02.64" | "#pink-02.65" | "#pink-02.66" | "#pink-02.67" | "#pink-02.68" | "#pink-02.69" | "#pink-02.70" | "#pink-02.71" | "#pink-02.72" | "#pink-02.73" | "#pink-02.74" | "#pink-02.75" | "#pink-02.76" | "#pink-02.77" | "#pink-02.78" | "#pink-02.79" | "#pink-02.80" | "#pink-02.81" | "#pink-02.82" | "#pink-02.83" | "#pink-02.84" | "#pink-02.85" | "#pink-02.86" | "#pink-02.87" | "#pink-02.88" | "#pink-02.89" | "#pink-02.90" | "#pink-02.91" | "#pink-02.92" | "#pink-02.93" | "#pink-02.94" | "#pink-02.95" | "#pink-02.96" | "#pink-02.97" | "#pink-02.98" | "#pink-02.99" | "#pink-02.100" | "#draft" | "#draft.0" | "#draft.1" | "#draft.2" | "#draft.3" | "#draft.4" | "#draft.5" | "#draft.6" | "#draft.7" | "#draft.8" | "#draft.9" | "#draft.00" | "#draft.01" | "#draft.02" | "#draft.03" | "#draft.04" | "#draft.05" | "#draft.06" | "#draft.07" | "#draft.08" | "#draft.09" | "#draft.10" | "#draft.11" | "#draft.12" | "#draft.13" | "#draft.14" | "#draft.15" | "#draft.16" | "#draft.17" | "#draft.18" | "#draft.19" | "#draft.20" | "#draft.21" | "#draft.22" | "#draft.23" | "#draft.24" | "#draft.25" | "#draft.26" | "#draft.27" | "#draft.28" | "#draft.29" | "#draft.30" | "#draft.31" | "#draft.32" | "#draft.33" | "#draft.34" | "#draft.35" | "#draft.36" | "#draft.37" | "#draft.38" | "#draft.39" | "#draft.40" | "#draft.41" | "#draft.42" | "#draft.43" | "#draft.44" | "#draft.45" | "#draft.46" | "#draft.47" | "#draft.48" | "#draft.49" | "#draft.50" | "#draft.51" | "#draft.52" | "#draft.53" | "#draft.54" | "#draft.55" | "#draft.56" | "#draft.57" | "#draft.58" | "#draft.59" | "#draft.60" | "#draft.61" | "#draft.62" | "#draft.63" | "#draft.64" | "#draft.65" | "#draft.66" | "#draft.67" | "#draft.68" | "#draft.69" | "#draft.70" | "#draft.71" | "#draft.72" | "#draft.73" | "#draft.74" | "#draft.75" | "#draft.76" | "#draft.77" | "#draft.78" | "#draft.79" | "#draft.80" | "#draft.81" | "#draft.82" | "#draft.83" | "#draft.84" | "#draft.85" | "#draft.86" | "#draft.87" | "#draft.88" | "#draft.89" | "#draft.90" | "#draft.91" | "#draft.92" | "#draft.93" | "#draft.94" | "#draft.95" | "#draft.96" | "#draft.97" | "#draft.98" | "#draft.99" | "#draft.100" | "#minor" | "#minor.0" | "#minor.1" | "#minor.2" | "#minor.3" | "#minor.4" | "#minor.5" | "#minor.6" | "#minor.7" | "#minor.8" | "#minor.9" | "#minor.00" | "#minor.01" | "#minor.02" | "#minor.03" | "#minor.04" | "#minor.05" | "#minor.06" | "#minor.07" | "#minor.08" | "#minor.09" | "#minor.10" | "#minor.11" | "#minor.12" | "#minor.13" | "#minor.14" | "#minor.15" | "#minor.16" | "#minor.17" | "#minor.18" | "#minor.19" | "#minor.20" | "#minor.21" | "#minor.22" | "#minor.23" | "#minor.24" | "#minor.25" | "#minor.26" | "#minor.27" | "#minor.28" | "#minor.29" | "#minor.30" | "#minor.31" | "#minor.32" | "#minor.33" | "#minor.34" | "#minor.35" | "#minor.36" | "#minor.37" | "#minor.38" | "#minor.39" | "#minor.40" | "#minor.41" | "#minor.42" | "#minor.43" | "#minor.44" | "#minor.45" | "#minor.46" | "#minor.47" | "#minor.48" | "#minor.49" | "#minor.50" | "#minor.51" | "#minor.52" | "#minor.53" | "#minor.54" | "#minor.55" | "#minor.56" | "#minor.57" | "#minor.58" | "#minor.59" | "#minor.60" | "#minor.61" | "#minor.62" | "#minor.63" | "#minor.64" | "#minor.65" | "#minor.66" | "#minor.67" | "#minor.68" | "#minor.69" | "#minor.70" | "#minor.71" | "#minor.72" | "#minor.73" | "#minor.74" | "#minor.75" | "#minor.76" | "#minor.77" | "#minor.78" | "#minor.79" | "#minor.80" | "#minor.81" | "#minor.82" | "#minor.83" | "#minor.84" | "#minor.85" | "#minor.86" | "#minor.87" | "#minor.88" | "#minor.89" | "#minor.90" | "#minor.91" | "#minor.92" | "#minor.93" | "#minor.94" | "#minor.95" | "#minor.96" | "#minor.97" | "#minor.98" | "#minor.99" | "#minor.100" | `rgb(${string})` | `rgba(${string})` | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | (string & {}) | "#border" | "#border.0" | "#border.1" | "#border.2" | "#border.3" | "#border.4" | "#border.5" | "#border.6" | "#border.7" | "#border.8" | "#border.9" | "#border.00" | "#border.01" | "#border.02" | "#border.03" | "#border.04" | "#border.05" | "#border.06" | "#border.07" | "#border.08" | "#border.09" | "#border.10" | "#border.11" | "#border.12" | "#border.13" | "#border.14" | "#border.15" | "#border.16" | "#border.17" | "#border.18" | "#border.19" | "#border.20" | "#border.21" | "#border.22" | "#border.23" | "#border.24" | "#border.25" | "#border.26" | "#border.27" | "#border.28" | "#border.29" | "#border.30" | "#border.31" | "#border.32" | "#border.33" | "#border.34" | "#border.35" | "#border.36" | "#border.37" | "#border.38" | "#border.39" | "#border.40" | "#border.41" | "#border.42" | "#border.43" | "#border.44" | "#border.45" | "#border.46" | "#border.47" | "#border.48" | "#border.49" | "#border.50" | "#border.51" | "#border.52" | "#border.53" | "#border.54" | "#border.55" | "#border.56" | "#border.57" | "#border.58" | "#border.59" | "#border.60" | "#border.61" | "#border.62" | "#border.63" | "#border.64" | "#border.65" | "#border.66" | "#border.67" | "#border.68" | "#border.69" | "#border.70" | "#border.71" | "#border.72" | "#border.73" | "#border.74" | "#border.75" | "#border.76" | "#border.77" | "#border.78" | "#border.79" | "#border.80" | "#border.81" | "#border.82" | "#border.83" | "#border.84" | "#border.85" | "#border.86" | "#border.87" | "#border.88" | "#border.89" | "#border.90" | "#border.91" | "#border.92" | "#border.93" | "#border.94" | "#border.95" | "#border.96" | "#border.97" | "#border.98" | "#border.99" | "#border.100" | "#clear" | "#clear.0" | "#clear.1" | "#clear.2" | "#clear.3" | "#clear.4" | "#clear.5" | "#clear.6" | "#clear.7" | "#clear.8" | "#clear.9" | "#clear.00" | "#clear.01" | "#clear.02" | "#clear.03" | "#clear.04" | "#clear.05" | "#clear.06" | "#clear.07" | "#clear.08" | "#clear.09" | "#clear.10" | "#clear.11" | "#clear.12" | "#clear.13" | "#clear.14" | "#clear.15" | "#clear.16" | "#clear.17" | "#clear.18" | "#clear.19" | "#clear.20" | "#clear.21" | "#clear.22" | "#clear.23" | "#clear.24" | "#clear.25" | "#clear.26" | "#clear.27" | "#clear.28" | "#clear.29" | "#clear.30" | "#clear.31" | "#clear.32" | "#clear.33" | "#clear.34" | "#clear.35" | "#clear.36" | "#clear.37" | "#clear.38" | "#clear.39" | "#clear.40" | "#clear.41" | "#clear.42" | "#clear.43" | "#clear.44" | "#clear.45" | "#clear.46" | "#clear.47" | "#clear.48" | "#clear.49" | "#clear.50" | "#clear.51" | "#clear.52" | "#clear.53" | "#clear.54" | "#clear.55" | "#clear.56" | "#clear.57" | "#clear.58" | "#clear.59" | "#clear.60" | "#clear.61" | "#clear.62" | "#clear.63" | "#clear.64" | "#clear.65" | "#clear.66" | "#clear.67" | "#clear.68" | "#clear.69" | "#clear.70" | "#clear.71" | "#clear.72" | "#clear.73" | "#clear.74" | "#clear.75" | "#clear.76" | "#clear.77" | "#clear.78" | "#clear.79" | "#clear.80" | "#clear.81" | "#clear.82" | "#clear.83" | "#clear.84" | "#clear.85" | "#clear.86" | "#clear.87" | "#clear.88" | "#clear.89" | "#clear.90" | "#clear.91" | "#clear.92" | "#clear.93" | "#clear.94" | "#clear.95" | "#clear.96" | "#clear.97" | "#clear.98" | "#clear.99" | "#clear.100" | "#shadow" | "#shadow.0" | "#shadow.1" | "#shadow.2" | "#shadow.3" | "#shadow.4" | "#shadow.5" | "#shadow.6" | "#shadow.7" | "#shadow.8" | "#shadow.9" | "#shadow.00" | "#shadow.01" | "#shadow.02" | "#shadow.03" | "#shadow.04" | "#shadow.05" | "#shadow.06" | "#shadow.07" | "#shadow.08" | "#shadow.09" | "#shadow.10" | "#shadow.11" | "#shadow.12" | "#shadow.13" | "#shadow.14" | "#shadow.15" | "#shadow.16" | "#shadow.17" | "#shadow.18" | "#shadow.19" | "#shadow.20" | "#shadow.21" | "#shadow.22" | "#shadow.23" | "#shadow.24" | "#shadow.25" | "#shadow.26" | "#shadow.27" | "#shadow.28" | "#shadow.29" | "#shadow.30" | "#shadow.31" | "#shadow.32" | "#shadow.33" | "#shadow.34" | "#shadow.35" | "#shadow.36" | "#shadow.37" | "#shadow.38" | "#shadow.39" | "#shadow.40" | "#shadow.41" | "#shadow.42" | "#shadow.43" | "#shadow.44" | "#shadow.45" | "#shadow.46" | "#shadow.47" | "#shadow.48" | "#shadow.49" | "#shadow.50" | "#shadow.51" | "#shadow.52" | "#shadow.53" | "#shadow.54" | "#shadow.55" | "#shadow.56" | "#shadow.57" | "#shadow.58" | "#shadow.59" | "#shadow.60" | "#shadow.61" | "#shadow.62" | "#shadow.63" | "#shadow.64" | "#shadow.65" | "#shadow.66" | "#shadow.67" | "#shadow.68" | "#shadow.69" | "#shadow.70" | "#shadow.71" | "#shadow.72" | "#shadow.73" | "#shadow.74" | "#shadow.75" | "#shadow.76" | "#shadow.77" | "#shadow.78" | "#shadow.79" | "#shadow.80" | "#shadow.81" | "#shadow.82" | "#shadow.83" | "#shadow.84" | "#shadow.85" | "#shadow.86" | "#shadow.87" | "#shadow.88" | "#shadow.89" | "#shadow.90" | "#shadow.91" | "#shadow.92" | "#shadow.93" | "#shadow.94" | "#shadow.95" | "#shadow.96" | "#shadow.97" | "#shadow.98" | "#shadow.99" | "#shadow.100" | "#purple" | "#purple.0" | "#purple.1" | "#purple.2" | "#purple.3" | "#purple.4" | "#purple.5" | "#purple.6" | "#purple.7" | "#purple.8" | "#purple.9" | "#purple.00" | "#purple.01" | "#purple.02" | "#purple.03" | "#purple.04" | "#purple.05" | "#purple.06" | "#purple.07" | "#purple.08" | "#purple.09" | "#purple.10" | "#purple.11" | "#purple.12" | "#purple.13" | "#purple.14" | "#purple.15" | "#purple.16" | "#purple.17" | "#purple.18" | "#purple.19" | "#purple.20" | "#purple.21" | "#purple.22" | "#purple.23" | "#purple.24" | "#purple.25" | "#purple.26" | "#purple.27" | "#purple.28" | "#purple.29" | "#purple.30" | "#purple.31" | "#purple.32" | "#purple.33" | "#purple.34" | "#purple.35" | "#purple.36" | "#purple.37" | "#purple.38" | "#purple.39" | "#purple.40" | "#purple.41" | "#purple.42" | "#purple.43" | "#purple.44" | "#purple.45" | "#purple.46" | "#purple.47" | "#purple.48" | "#purple.49" | "#purple.50" | "#purple.51" | "#purple.52" | "#purple.53" | "#purple.54" | "#purple.55" | "#purple.56" | "#purple.57" | "#purple.58" | "#purple.59" | "#purple.60" | "#purple.61" | "#purple.62" | "#purple.63" | "#purple.64" | "#purple.65" | "#purple.66" | "#purple.67" | "#purple.68" | "#purple.69" | "#purple.70" | "#purple.71" | "#purple.72" | "#purple.73" | "#purple.74" | "#purple.75" | "#purple.76" | "#purple.77" | "#purple.78" | "#purple.79" | "#purple.80" | "#purple.81" | "#purple.82" | "#purple.83" | "#purple.84" | "#purple.85" | "#purple.86" | "#purple.87" | "#purple.88" | "#purple.89" | "#purple.90" | "#purple.91" | "#purple.92" | "#purple.93" | "#purple.94" | "#purple.95" | "#purple.96" | "#purple.97" | "#purple.98" | "#purple.99" | "#purple.100" | "#purple-text" | "#purple-text.0" | "#purple-text.1" | "#purple-text.2" | "#purple-text.3" | "#purple-text.4" | "#purple-text.5" | "#purple-text.6" | "#purple-text.7" | "#purple-text.8" | "#purple-text.9" | "#purple-text.00" | "#purple-text.01" | "#purple-text.02" | "#purple-text.03" | "#purple-text.04" | "#purple-text.05" | "#purple-text.06" | "#purple-text.07" | "#purple-text.08" | "#purple-text.09" | "#purple-text.10" | "#purple-text.11" | "#purple-text.12" | "#purple-text.13" | "#purple-text.14" | "#purple-text.15" | "#purple-text.16" | "#purple-text.17" | "#purple-text.18" | "#purple-text.19" | "#purple-text.20" | "#purple-text.21" | "#purple-text.22" | "#purple-text.23" | "#purple-text.24" | "#purple-text.25" | "#purple-text.26" | "#purple-text.27" | "#purple-text.28" | "#purple-text.29" | "#purple-text.30" | "#purple-text.31" | "#purple-text.32" | "#purple-text.33" | "#purple-text.34" | "#purple-text.35" | "#purple-text.36" | "#purple-text.37" | "#purple-text.38" | "#purple-text.39" | "#purple-text.40" | "#purple-text.41" | "#purple-text.42" | "#purple-text.43" | "#purple-text.44" | "#purple-text.45" | "#purple-text.46" | "#purple-text.47" | "#purple-text.48" | "#purple-text.49" | "#purple-text.50" | "#purple-text.51" | "#purple-text.52" | "#purple-text.53" | "#purple-text.54" | "#purple-text.55" | "#purple-text.56" | "#purple-text.57" | "#purple-text.58" | "#purple-text.59" | "#purple-text.60" | "#purple-text.61" | "#purple-text.62" | "#purple-text.63" | "#purple-text.64" | "#purple-text.65" | "#purple-text.66" | "#purple-text.67" | "#purple-text.68" | "#purple-text.69" | "#purple-text.70" | "#purple-text.71" | "#purple-text.72" | "#purple-text.73" | "#purple-text.74" | "#purple-text.75" | "#purple-text.76" | "#purple-text.77" | "#purple-text.78" | "#purple-text.79" | "#purple-text.80" | "#purple-text.81" | "#purple-text.82" | "#purple-text.83" | "#purple-text.84" | "#purple-text.85" | "#purple-text.86" | "#purple-text.87" | "#purple-text.88" | "#purple-text.89" | "#purple-text.90" | "#purple-text.91" | "#purple-text.92" | "#purple-text.93" | "#purple-text.94" | "#purple-text.95" | "#purple-text.96" | "#purple-text.97" | "#purple-text.98" | "#purple-text.99" | "#purple-text.100" | "#purple-icon" | "#purple-icon.0" | "#purple-icon.1" | "#purple-icon.2" | "#purple-icon.3" | "#purple-icon.4" | "#purple-icon.5" | "#purple-icon.6" | "#purple-icon.7" | "#purple-icon.8" | "#purple-icon.9" | "#purple-icon.00" | "#purple-icon.01" | "#purple-icon.02" | "#purple-icon.03" | "#purple-icon.04" | "#purple-icon.05" | "#purple-icon.06" | "#purple-icon.07" | "#purple-icon.08" | "#purple-icon.09" | "#purple-icon.10" | "#purple-icon.11" | "#purple-icon.12" | "#purple-icon.13" | "#purple-icon.14" | "#purple-icon.15" | "#purple-icon.16" | "#purple-icon.17" | "#purple-icon.18" | "#purple-icon.19" | "#purple-icon.20" | "#purple-icon.21" | "#purple-icon.22" | "#purple-icon.23" | "#purple-icon.24" | "#purple-icon.25" | "#purple-icon.26" | "#purple-icon.27" | "#purple-icon.28" | "#purple-icon.29" | "#purple-icon.30" | "#purple-icon.31" | "#purple-icon.32" | "#purple-icon.33" | "#purple-icon.34" | "#purple-icon.35" | "#purple-icon.36" | "#purple-icon.37" | "#purple-icon.38" | "#purple-icon.39" | "#purple-icon.40" | "#purple-icon.41" | "#purple-icon.42" | "#purple-icon.43" | "#purple-icon.44" | "#purple-icon.45" | "#purple-icon.46" | "#purple-icon.47" | "#purple-icon.48" | "#purple-icon.49" | "#purple-icon.50" | "#purple-icon.51" | "#purple-icon.52" | "#purple-icon.53" | "#purple-icon.54" | "#purple-icon.55" | "#purple-icon.56" | "#purple-icon.57" | "#purple-icon.58" | "#purple-icon.59" | "#purple-icon.60" | "#purple-icon.61" | "#purple-icon.62" | "#purple-icon.63" | "#purple-icon.64" | "#purple-icon.65" | "#purple-icon.66" | "#purple-icon.67" | "#purple-icon.68" | "#purple-icon.69" | "#purple-icon.70" | "#purple-icon.71" | "#purple-icon.72" | "#purple-icon.73" | "#purple-icon.74" | "#purple-icon.75" | "#purple-icon.76" | "#purple-icon.77" | "#purple-icon.78" | "#purple-icon.79" | "#purple-icon.80" | "#purple-icon.81" | "#purple-icon.82" | "#purple-icon.83" | "#purple-icon.84" | "#purple-icon.85" | "#purple-icon.86" | "#purple-icon.87" | "#purple-icon.88" | "#purple-icon.89" | "#purple-icon.90" | "#purple-icon.91" | "#purple-icon.92" | "#purple-icon.93" | "#purple-icon.94" | "#purple-icon.95" | "#purple-icon.96" | "#purple-icon.97" | "#purple-icon.98" | "#purple-icon.99" | "#purple-icon.100" | "#purple-bg" | "#purple-bg.0" | "#purple-bg.1" | "#purple-bg.2" | "#purple-bg.3" | "#purple-bg.4" | "#purple-bg.5" | "#purple-bg.6" | "#purple-bg.7" | "#purple-bg.8" | "#purple-bg.9" | "#purple-bg.00" | "#purple-bg.01" | "#purple-bg.02" | "#purple-bg.03" | "#purple-bg.04" | "#purple-bg.05" | "#purple-bg.06" | "#purple-bg.07" | "#purple-bg.08" | "#purple-bg.09" | "#purple-bg.10" | "#purple-bg.11" | "#purple-bg.12" | "#purple-bg.13" | "#purple-bg.14" | "#purple-bg.15" | "#purple-bg.16" | "#purple-bg.17" | "#purple-bg.18" | "#purple-bg.19" | "#purple-bg.20" | "#purple-bg.21" | "#purple-bg.22" | "#purple-bg.23" | "#purple-bg.24" | "#purple-bg.25" | "#purple-bg.26" | "#purple-bg.27" | "#purple-bg.28" | "#purple-bg.29" | "#purple-bg.30" | "#purple-bg.31" | "#purple-bg.32" | "#purple-bg.33" | "#purple-bg.34" | "#purple-bg.35" | "#purple-bg.36" | "#purple-bg.37" | "#purple-bg.38" | "#purple-bg.39" | "#purple-bg.40" | "#purple-bg.41" | "#purple-bg.42" | "#purple-bg.43" | "#purple-bg.44" | "#purple-bg.45" | "#purple-bg.46" | "#purple-bg.47" | "#purple-bg.48" | "#purple-bg.49" | "#purple-bg.50" | "#purple-bg.51" | "#purple-bg.52" | "#purple-bg.53" | "#purple-bg.54" | "#purple-bg.55" | "#purple-bg.56" | "#purple-bg.57" | "#purple-bg.58" | "#purple-bg.59" | "#purple-bg.60" | "#purple-bg.61" | "#purple-bg.62" | "#purple-bg.63" | "#purple-bg.64" | "#purple-bg.65" | "#purple-bg.66" | "#purple-bg.67" | "#purple-bg.68" | "#purple-bg.69" | "#purple-bg.70" | "#purple-bg.71" | "#purple-bg.72" | "#purple-bg.73" | "#purple-bg.74" | "#purple-bg.75" | "#purple-bg.76" | "#purple-bg.77" | "#purple-bg.78" | "#purple-bg.79" | "#purple-bg.80" | "#purple-bg.81" | "#purple-bg.82" | "#purple-bg.83" | "#purple-bg.84" | "#purple-bg.85" | "#purple-bg.86" | "#purple-bg.87" | "#purple-bg.88" | "#purple-bg.89" | "#purple-bg.90" | "#purple-bg.91" | "#purple-bg.92" | "#purple-bg.93" | "#purple-bg.94" | "#purple-bg.95" | "#purple-bg.96" | "#purple-bg.97" | "#purple-bg.98" | "#purple-bg.99" | "#purple-bg.100" | "#purple-01" | "#purple-01.0" | "#purple-01.1" | "#purple-01.2" | "#purple-01.3" | "#purple-01.4" | "#purple-01.5" | "#purple-01.6" | "#purple-01.7" | "#purple-01.8" | "#purple-01.9" | "#purple-01.00" | "#purple-01.01" | "#purple-01.02" | "#purple-01.03" | "#purple-01.04" | "#purple-01.05" | "#purple-01.06" | "#purple-01.07" | "#purple-01.08" | "#purple-01.09" | "#purple-01.10" | "#purple-01.11" | "#purple-01.12" | "#purple-01.13" | "#purple-01.14" | "#purple-01.15" | "#purple-01.16" | "#purple-01.17" | "#purple-01.18" | "#purple-01.19" | "#purple-01.20" | "#purple-01.21" | "#purple-01.22" | "#purple-01.23" | "#purple-01.24" | "#purple-01.25" | "#purple-01.26" | "#purple-01.27" | "#purple-01.28" | "#purple-01.29" | "#purple-01.30" | "#purple-01.31" | "#purple-01.32" | "#purple-01.33" | "#purple-01.34" | "#purple-01.35" | "#purple-01.36" | "#purple-01.37" | "#purple-01.38" | "#purple-01.39" | "#purple-01.40" | "#purple-01.41" | "#purple-01.42" | "#purple-01.43" | "#purple-01.44" | "#purple-01.45" | "#purple-01.46" | "#purple-01.47" | "#purple-01.48" | "#purple-01.49" | "#purple-01.50" | "#purple-01.51" | "#purple-01.52" | "#purple-01.53" | "#purple-01.54" | "#purple-01.55" | "#purple-01.56" | "#purple-01.57" | "#purple-01.58" | "#purple-01.59" | "#purple-01.60" | "#purple-01.61" | "#purple-01.62" | "#purple-01.63" | "#purple-01.64" | "#purple-01.65" | "#purple-01.66" | "#purple-01.67" | "#purple-01.68" | "#purple-01.69" | "#purple-01.70" | "#purple-01.71" | "#purple-01.72" | "#purple-01.73" | "#purple-01.74" | "#purple-01.75" | "#purple-01.76" | "#purple-01.77" | "#purple-01.78" | "#purple-01.79" | "#purple-01.80" | "#purple-01.81" | "#purple-01.82" | "#purple-01.83" | "#purple-01.84" | "#purple-01.85" | "#purple-01.86" | "#purple-01.87" | "#purple-01.88" | "#purple-01.89" | "#purple-01.90" | "#purple-01.91" | "#purple-01.92" | "#purple-01.93" | "#purple-01.94" | "#purple-01.95" | "#purple-01.96" | "#purple-01.97" | "#purple-01.98" | "#purple-01.99" | "#purple-01.100" | "#purple-02" | "#purple-02.0" | "#purple-02.1" | "#purple-02.2" | "#purple-02.3" | "#purple-02.4" | "#purple-02.5" | "#purple-02.6" | "#purple-02.7" | "#purple-02.8" | "#purple-02.9" | "#purple-02.00" | "#purple-02.01" | "#purple-02.02" | "#purple-02.03" | "#purple-02.04" | "#purple-02.05" | "#purple-02.06" | "#purple-02.07" | "#purple-02.08" | "#purple-02.09" | "#purple-02.10" | "#purple-02.11" | "#purple-02.12" | "#purple-02.13" | "#purple-02.14" | "#purple-02.15" | "#purple-02.16" | "#purple-02.17" | "#purple-02.18" | "#purple-02.19" | "#purple-02.20" | "#purple-02.21" | "#purple-02.22" | "#purple-02.23" | "#purple-02.24" | "#purple-02.25" | "#purple-02.26" | "#purple-02.27" | "#purple-02.28" | "#purple-02.29" | "#purple-02.30" | "#purple-02.31" | "#purple-02.32" | "#purple-02.33" | "#purple-02.34" | "#purple-02.35" | "#purple-02.36" | "#purple-02.37" | "#purple-02.38" | "#purple-02.39" | "#purple-02.40" | "#purple-02.41" | "#purple-02.42" | "#purple-02.43" | "#purple-02.44" | "#purple-02.45" | "#purple-02.46" | "#purple-02.47" | "#purple-02.48" | "#purple-02.49" | "#purple-02.50" | "#purple-02.51" | "#purple-02.52" | "#purple-02.53" | "#purple-02.54" | "#purple-02.55" | "#purple-02.56" | "#purple-02.57" | "#purple-02.58" | "#purple-02.59" | "#purple-02.60" | "#purple-02.61" | "#purple-02.62" | "#purple-02.63" | "#purple-02.64" | "#purple-02.65" | "#purple-02.66" | "#purple-02.67" | "#purple-02.68" | "#purple-02.69" | "#purple-02.70" | "#purple-02.71" | "#purple-02.72" | "#purple-02.73" | "#purple-02.74" | "#purple-02.75" | "#purple-02.76" | "#purple-02.77" | "#purple-02.78" | "#purple-02.79" | "#purple-02.80" | "#purple-02.81" | "#purple-02.82" | "#purple-02.83" | "#purple-02.84" | "#purple-02.85" | "#purple-02.86" | "#purple-02.87" | "#purple-02.88" | "#purple-02.89" | "#purple-02.90" | "#purple-02.91" | "#purple-02.92" | "#purple-02.93" | "#purple-02.94" | "#purple-02.95" | "#purple-02.96" | "#purple-02.97" | "#purple-02.98" | "#purple-02.99" | "#purple-02.100" | "#purple-03" | "#purple-03.0" | "#purple-03.1" | "#purple-03.2" | "#purple-03.3" | "#purple-03.4" | "#purple-03.5" | "#purple-03.6" | "#purple-03.7" | "#purple-03.8" | "#purple-03.9" | "#purple-03.00" | "#purple-03.01" | "#purple-03.02" | "#purple-03.03" | "#purple-03.04" | "#purple-03.05" | "#purple-03.06" | "#purple-03.07" | "#purple-03.08" | "#purple-03.09" | "#purple-03.10" | "#purple-03.11" | "#purple-03.12" | "#purple-03.13" | "#purple-03.14" | "#purple-03.15" | "#purple-03.16" | "#purple-03.17" | "#purple-03.18" | "#purple-03.19" | "#purple-03.20" | "#purple-03.21" | "#purple-03.22" | "#purple-03.23" | "#purple-03.24" | "#purple-03.25" | "#purple-03.26" | "#purple-03.27" | "#purple-03.28" | "#purple-03.29" | "#purple-03.30" | "#purple-03.31" | "#purple-03.32" | "#purple-03.33" | "#purple-03.34" | "#purple-03.35" | "#purple-03.36" | "#purple-03.37" | "#purple-03.38" | "#purple-03.39" | "#purple-03.40" | "#purple-03.41" | "#purple-03.42" | "#purple-03.43" | "#purple-03.44" | "#purple-03.45" | "#purple-03.46" | "#purple-03.47" | "#purple-03.48" | "#purple-03.49" | "#purple-03.50" | "#purple-03.51" | "#purple-03.52" | "#purple-03.53" | "#purple-03.54" | "#purple-03.55" | "#purple-03.56" | "#purple-03.57" | "#purple-03.58" | "#purple-03.59" | "#purple-03.60" | "#purple-03.61" | "#purple-03.62" | "#purple-03.63" | "#purple-03.64" | "#purple-03.65" | "#purple-03.66" | "#purple-03.67" | "#purple-03.68" | "#purple-03.69" | "#purple-03.70" | "#purple-03.71" | "#purple-03.72" | "#purple-03.73" | "#purple-03.74" | "#purple-03.75" | "#purple-03.76" | "#purple-03.77" | "#purple-03.78" | "#purple-03.79" | "#purple-03.80" | "#purple-03.81" | "#purple-03.82" | "#purple-03.83" | "#purple-03.84" | "#purple-03.85" | "#purple-03.86" | "#purple-03.87" | "#purple-03.88" | "#purple-03.89" | "#purple-03.90" | "#purple-03.91" | "#purple-03.92" | "#purple-03.93" | "#purple-03.94" | "#purple-03.95" | "#purple-03.96" | "#purple-03.97" | "#purple-03.98" | "#purple-03.99" | "#purple-03.100" | "#purple-04" | "#purple-04.0" | "#purple-04.1" | "#purple-04.2" | "#purple-04.3" | "#purple-04.4" | "#purple-04.5" | "#purple-04.6" | "#purple-04.7" | "#purple-04.8" | "#purple-04.9" | "#purple-04.00" | "#purple-04.01" | "#purple-04.02" | "#purple-04.03" | "#purple-04.04" | "#purple-04.05" | "#purple-04.06" | "#purple-04.07" | "#purple-04.08" | "#purple-04.09" | "#purple-04.10" | "#purple-04.11" | "#purple-04.12" | "#purple-04.13" | "#purple-04.14" | "#purple-04.15" | "#purple-04.16" | "#purple-04.17" | "#purple-04.18" | "#purple-04.19" | "#purple-04.20" | "#purple-04.21" | "#purple-04.22" | "#purple-04.23" | "#purple-04.24" | "#purple-04.25" | "#purple-04.26" | "#purple-04.27" | "#purple-04.28" | "#purple-04.29" | "#purple-04.30" | "#purple-04.31" | "#purple-04.32" | "#purple-04.33" | "#purple-04.34" | "#purple-04.35" | "#purple-04.36" | "#purple-04.37" | "#purple-04.38" | "#purple-04.39" | "#purple-04.40" | "#purple-04.41" | "#purple-04.42" | "#purple-04.43" | "#purple-04.44" | "#purple-04.45" | "#purple-04.46" | "#purple-04.47" | "#purple-04.48" | "#purple-04.49" | "#purple-04.50" | "#purple-04.51" | "#purple-04.52" | "#purple-04.53" | "#purple-04.54" | "#purple-04.55" | "#purple-04.56" | "#purple-04.57" | "#purple-04.58" | "#purple-04.59" | "#purple-04.60" | "#purple-04.61" | "#purple-04.62" | "#purple-04.63" | "#purple-04.64" | "#purple-04.65" | "#purple-04.66" | "#purple-04.67" | "#purple-04.68" | "#purple-04.69" | "#purple-04.70" | "#purple-04.71" | "#purple-04.72" | "#purple-04.73" | "#purple-04.74" | "#purple-04.75" | "#purple-04.76" | "#purple-04.77" | "#purple-04.78" | "#purple-04.79" | "#purple-04.80" | "#purple-04.81" | "#purple-04.82" | "#purple-04.83" | "#purple-04.84" | "#purple-04.85" | "#purple-04.86" | "#purple-04.87" | "#purple-04.88" | "#purple-04.89" | "#purple-04.90" | "#purple-04.91" | "#purple-04.92" | "#purple-04.93" | "#purple-04.94" | "#purple-04.95" | "#purple-04.96" | "#purple-04.97" | "#purple-04.98" | "#purple-04.99" | "#purple-04.100" | "#dark" | "#dark.0" | "#dark.1" | "#dark.2" | "#dark.3" | "#dark.4" | "#dark.5" | "#dark.6" | "#dark.7" | "#dark.8" | "#dark.9" | "#dark.00" | "#dark.01" | "#dark.02" | "#dark.03" | "#dark.04" | "#dark.05" | "#dark.06" | "#dark.07" | "#dark.08" | "#dark.09" | "#dark.10" | "#dark.11" | "#dark.12" | "#dark.13" | "#dark.14" | "#dark.15" | "#dark.16" | "#dark.17" | "#dark.18" | "#dark.19" | "#dark.20" | "#dark.21" | "#dark.22" | "#dark.23" | "#dark.24" | "#dark.25" | "#dark.26" | "#dark.27" | "#dark.28" | "#dark.29" | "#dark.30" | "#dark.31" | "#dark.32" | "#dark.33" | "#dark.34" | "#dark.35" | "#dark.36" | "#dark.37" | "#dark.38" | "#dark.39" | "#dark.40" | "#dark.41" | "#dark.42" | "#dark.43" | "#dark.44" | "#dark.45" | "#dark.46" | "#dark.47" | "#dark.48" | "#dark.49" | "#dark.50" | "#dark.51" | "#dark.52" | "#dark.53" | "#dark.54" | "#dark.55" | "#dark.56" | "#dark.57" | "#dark.58" | "#dark.59" | "#dark.60" | "#dark.61" | "#dark.62" | "#dark.63" | "#dark.64" | "#dark.65" | "#dark.66" | "#dark.67" | "#dark.68" | "#dark.69" | "#dark.70" | "#dark.71" | "#dark.72" | "#dark.73" | "#dark.74" | "#dark.75" | "#dark.76" | "#dark.77" | "#dark.78" | "#dark.79" | "#dark.80" | "#dark.81" | "#dark.82" | "#dark.83" | "#dark.84" | "#dark.85" | "#dark.86" | "#dark.87" | "#dark.88" | "#dark.89" | "#dark.90" | "#dark.91" | "#dark.92" | "#dark.93" | "#dark.94" | "#dark.95" | "#dark.96" | "#dark.97" | "#dark.98" | "#dark.99" | "#dark.100" | "#dark-01" | "#dark-01.0" | "#dark-01.1" | "#dark-01.2" | "#dark-01.3" | "#dark-01.4" | "#dark-01.5" | "#dark-01.6" | "#dark-01.7" | "#dark-01.8" | "#dark-01.9" | "#dark-01.00" | "#dark-01.01" | "#dark-01.02" | "#dark-01.03" | "#dark-01.04" | "#dark-01.05" | "#dark-01.06" | "#dark-01.07" | "#dark-01.08" | "#dark-01.09" | "#dark-01.10" | "#dark-01.11" | "#dark-01.12" | "#dark-01.13" | "#dark-01.14" | "#dark-01.15" | "#dark-01.16" | "#dark-01.17" | "#dark-01.18" | "#dark-01.19" | "#dark-01.20" | "#dark-01.21" | "#dark-01.22" | "#dark-01.23" | "#dark-01.24" | "#dark-01.25" | "#dark-01.26" | "#dark-01.27" | "#dark-01.28" | "#dark-01.29" | "#dark-01.30" | "#dark-01.31" | "#dark-01.32" | "#dark-01.33" | "#dark-01.34" | "#dark-01.35" | "#dark-01.36" | "#dark-01.37" | "#dark-01.38" | "#dark-01.39" | "#dark-01.40" | "#dark-01.41" | "#dark-01.42" | "#dark-01.43" | "#dark-01.44" | "#dark-01.45" | "#dark-01.46" | "#dark-01.47" | "#dark-01.48" | "#dark-01.49" | "#dark-01.50" | "#dark-01.51" | "#dark-01.52" | "#dark-01.53" | "#dark-01.54" | "#dark-01.55" | "#dark-01.56" | "#dark-01.57" | "#dark-01.58" | "#dark-01.59" | "#dark-01.60" | "#dark-01.61" | "#dark-01.62" | "#dark-01.63" | "#dark-01.64" | "#dark-01.65" | "#dark-01.66" | "#dark-01.67" | "#dark-01.68" | "#dark-01.69" | "#dark-01.70" | "#dark-01.71" | "#dark-01.72" | "#dark-01.73" | "#dark-01.74" | "#dark-01.75" | "#dark-01.76" | "#dark-01.77" | "#dark-01.78" | "#dark-01.79" | "#dark-01.80" | "#dark-01.81" | "#dark-01.82" | "#dark-01.83" | "#dark-01.84" | "#dark-01.85" | "#dark-01.86" | "#dark-01.87" | "#dark-01.88" | "#dark-01.89" | "#dark-01.90" | "#dark-01.91" | "#dark-01.92" | "#dark-01.93" | "#dark-01.94" | "#dark-01.95" | "#dark-01.96" | "#dark-01.97" | "#dark-01.98" | "#dark-01.99" | "#dark-01.100" | "#dark-02" | "#dark-02.0" | "#dark-02.1" | "#dark-02.2" | "#dark-02.3" | "#dark-02.4" | "#dark-02.5" | "#dark-02.6" | "#dark-02.7" | "#dark-02.8" | "#dark-02.9" | "#dark-02.00" | "#dark-02.01" | "#dark-02.02" | "#dark-02.03" | "#dark-02.04" | "#dark-02.05" | "#dark-02.06" | "#dark-02.07" | "#dark-02.08" | "#dark-02.09" | "#dark-02.10" | "#dark-02.11" | "#dark-02.12" | "#dark-02.13" | "#dark-02.14" | "#dark-02.15" | "#dark-02.16" | "#dark-02.17" | "#dark-02.18" | "#dark-02.19" | "#dark-02.20" | "#dark-02.21" | "#dark-02.22" | "#dark-02.23" | "#dark-02.24" | "#dark-02.25" | "#dark-02.26" | "#dark-02.27" | "#dark-02.28" | "#dark-02.29" | "#dark-02.30" | "#dark-02.31" | "#dark-02.32" | "#dark-02.33" | "#dark-02.34" | "#dark-02.35" | "#dark-02.36" | "#dark-02.37" | "#dark-02.38" | "#dark-02.39" | "#dark-02.40" | "#dark-02.41" | "#dark-02.42" | "#dark-02.43" | "#dark-02.44" | "#dark-02.45" | "#dark-02.46" | "#dark-02.47" | "#dark-02.48" | "#dark-02.49" | "#dark-02.50" | "#dark-02.51" | "#dark-02.52" | "#dark-02.53" | "#dark-02.54" | "#dark-02.55" | "#dark-02.56" | "#dark-02.57" | "#dark-02.58" | "#dark-02.59" | "#dark-02.60" | "#dark-02.61" | "#dark-02.62" | "#dark-02.63" | "#dark-02.64" | "#dark-02.65" | "#dark-02.66" | "#dark-02.67" | "#dark-02.68" | "#dark-02.69" | "#dark-02.70" | "#dark-02.71" | "#dark-02.72" | "#dark-02.73" | "#dark-02.74" | "#dark-02.75" | "#dark-02.76" | "#dark-02.77" | "#dark-02.78" | "#dark-02.79" | "#dark-02.80" | "#dark-02.81" | "#dark-02.82" | "#dark-02.83" | "#dark-02.84" | "#dark-02.85" | "#dark-02.86" | "#dark-02.87" | "#dark-02.88" | "#dark-02.89" | "#dark-02.90" | "#dark-02.91" | "#dark-02.92" | "#dark-02.93" | "#dark-02.94" | "#dark-02.95" | "#dark-02.96" | "#dark-02.97" | "#dark-02.98" | "#dark-02.99" | "#dark-02.100" | "#dark-03" | "#dark-03.0" | "#dark-03.1" | "#dark-03.2" | "#dark-03.3" | "#dark-03.4" | "#dark-03.5" | "#dark-03.6" | "#dark-03.7" | "#dark-03.8" | "#dark-03.9" | "#dark-03.00" | "#dark-03.01" | "#dark-03.02" | "#dark-03.03" | "#dark-03.04" | "#dark-03.05" | "#dark-03.06" | "#dark-03.07" | "#dark-03.08" | "#dark-03.09" | "#dark-03.10" | "#dark-03.11" | "#dark-03.12" | "#dark-03.13" | "#dark-03.14" | "#dark-03.15" | "#dark-03.16" | "#dark-03.17" | "#dark-03.18" | "#dark-03.19" | "#dark-03.20" | "#dark-03.21" | "#dark-03.22" | "#dark-03.23" | "#dark-03.24" | "#dark-03.25" | "#dark-03.26" | "#dark-03.27" | "#dark-03.28" | "#dark-03.29" | "#dark-03.30" | "#dark-03.31" | "#dark-03.32" | "#dark-03.33" | "#dark-03.34" | "#dark-03.35" | "#dark-03.36" | "#dark-03.37" | "#dark-03.38" | "#dark-03.39" | "#dark-03.40" | "#dark-03.41" | "#dark-03.42" | "#dark-03.43" | "#dark-03.44" | "#dark-03.45" | "#dark-03.46" | "#dark-03.47" | "#dark-03.48" | "#dark-03.49" | "#dark-03.50" | "#dark-03.51" | "#dark-03.52" | "#dark-03.53" | "#dark-03.54" | "#dark-03.55" | "#dark-03.56" | "#dark-03.57" | "#dark-03.58" | "#dark-03.59" | "#dark-03.60" | "#dark-03.61" | "#dark-03.62" | "#dark-03.63" | "#dark-03.64" | "#dark-03.65" | "#dark-03.66" | "#dark-03.67" | "#dark-03.68" | "#dark-03.69" | "#dark-03.70" | "#dark-03.71" | "#dark-03.72" | "#dark-03.73" | "#dark-03.74" | "#dark-03.75" | "#dark-03.76" | "#dark-03.77" | "#dark-03.78" | "#dark-03.79" | "#dark-03.80" | "#dark-03.81" | "#dark-03.82" | "#dark-03.83" | "#dark-03.84" | "#dark-03.85" | "#dark-03.86" | "#dark-03.87" | "#dark-03.88" | "#dark-03.89" | "#dark-03.90" | "#dark-03.91" | "#dark-03.92" | "#dark-03.93" | "#dark-03.94" | "#dark-03.95" | "#dark-03.96" | "#dark-03.97" | "#dark-03.98" | "#dark-03.99" | "#dark-03.100" | "#dark-04" | "#dark-04.0" | "#dark-04.1" | "#dark-04.2" | "#dark-04.3" | "#dark-04.4" | "#dark-04.5" | "#dark-04.6" | "#dark-04.7" | "#dark-04.8" | "#dark-04.9" | "#dark-04.00" | "#dark-04.01" | "#dark-04.02" | "#dark-04.03" | "#dark-04.04" | "#dark-04.05" | "#dark-04.06" | "#dark-04.07" | "#dark-04.08" | "#dark-04.09" | "#dark-04.10" | "#dark-04.11" | "#dark-04.12" | "#dark-04.13" | "#dark-04.14" | "#dark-04.15" | "#dark-04.16" | "#dark-04.17" | "#dark-04.18" | "#dark-04.19" | "#dark-04.20" | "#dark-04.21" | "#dark-04.22" | "#dark-04.23" | "#dark-04.24" | "#dark-04.25" | "#dark-04.26" | "#dark-04.27" | "#dark-04.28" | "#dark-04.29" | "#dark-04.30" | "#dark-04.31" | "#dark-04.32" | "#dark-04.33" | "#dark-04.34" | "#dark-04.35" | "#dark-04.36" | "#dark-04.37" | "#dark-04.38" | "#dark-04.39" | "#dark-04.40" | "#dark-04.41" | "#dark-04.42" | "#dark-04.43" | "#dark-04.44" | "#dark-04.45" | "#dark-04.46" | "#dark-04.47" | "#dark-04.48" | "#dark-04.49" | "#dark-04.50" | "#dark-04.51" | "#dark-04.52" | "#dark-04.53" | "#dark-04.54" | "#dark-04.55" | "#dark-04.56" | "#dark-04.57" | "#dark-04.58" | "#dark-04.59" | "#dark-04.60" | "#dark-04.61" | "#dark-04.62" | "#dark-04.63" | "#dark-04.64" | "#dark-04.65" | "#dark-04.66" | "#dark-04.67" | "#dark-04.68" | "#dark-04.69" | "#dark-04.70" | "#dark-04.71" | "#dark-04.72" | "#dark-04.73" | "#dark-04.74" | "#dark-04.75" | "#dark-04.76" | "#dark-04.77" | "#dark-04.78" | "#dark-04.79" | "#dark-04.80" | "#dark-04.81" | "#dark-04.82" | "#dark-04.83" | "#dark-04.84" | "#dark-04.85" | "#dark-04.86" | "#dark-04.87" | "#dark-04.88" | "#dark-04.89" | "#dark-04.90" | "#dark-04.91" | "#dark-04.92" | "#dark-04.93" | "#dark-04.94" | "#dark-04.95" | "#dark-04.96" | "#dark-04.97" | "#dark-04.98" | "#dark-04.99" | "#dark-04.100" | "#dark-05" | "#dark-05.0" | "#dark-05.1" | "#dark-05.2" | "#dark-05.3" | "#dark-05.4" | "#dark-05.5" | "#dark-05.6" | "#dark-05.7" | "#dark-05.8" | "#dark-05.9" | "#dark-05.00" | "#dark-05.01" | "#dark-05.02" | "#dark-05.03" | "#dark-05.04" | "#dark-05.05" | "#dark-05.06" | "#dark-05.07" | "#dark-05.08" | "#dark-05.09" | "#dark-05.10" | "#dark-05.11" | "#dark-05.12" | "#dark-05.13" | "#dark-05.14" | "#dark-05.15" | "#dark-05.16" | "#dark-05.17" | "#dark-05.18" | "#dark-05.19" | "#dark-05.20" | "#dark-05.21" | "#dark-05.22" | "#dark-05.23" | "#dark-05.24" | "#dark-05.25" | "#dark-05.26" | "#dark-05.27" | "#dark-05.28" | "#dark-05.29" | "#dark-05.30" | "#dark-05.31" | "#dark-05.32" | "#dark-05.33" | "#dark-05.34" | "#dark-05.35" | "#dark-05.36" | "#dark-05.37" | "#dark-05.38" | "#dark-05.39" | "#dark-05.40" | "#dark-05.41" | "#dark-05.42" | "#dark-05.43" | "#dark-05.44" | "#dark-05.45" | "#dark-05.46" | "#dark-05.47" | "#dark-05.48" | "#dark-05.49" | "#dark-05.50" | "#dark-05.51" | "#dark-05.52" | "#dark-05.53" | "#dark-05.54" | "#dark-05.55" | "#dark-05.56" | "#dark-05.57" | "#dark-05.58" | "#dark-05.59" | "#dark-05.60" | "#dark-05.61" | "#dark-05.62" | "#dark-05.63" | "#dark-05.64" | "#dark-05.65" | "#dark-05.66" | "#dark-05.67" | "#dark-05.68" | "#dark-05.69" | "#dark-05.70" | "#dark-05.71" | "#dark-05.72" | "#dark-05.73" | "#dark-05.74" | "#dark-05.75" | "#dark-05.76" | "#dark-05.77" | "#dark-05.78" | "#dark-05.79" | "#dark-05.80" | "#dark-05.81" | "#dark-05.82" | "#dark-05.83" | "#dark-05.84" | "#dark-05.85" | "#dark-05.86" | "#dark-05.87" | "#dark-05.88" | "#dark-05.89" | "#dark-05.90" | "#dark-05.91" | "#dark-05.92" | "#dark-05.93" | "#dark-05.94" | "#dark-05.95" | "#dark-05.96" | "#dark-05.97" | "#dark-05.98" | "#dark-05.99" | "#dark-05.100" | "#dark-bg" | "#dark-bg.0" | "#dark-bg.1" | "#dark-bg.2" | "#dark-bg.3" | "#dark-bg.4" | "#dark-bg.5" | "#dark-bg.6" | "#dark-bg.7" | "#dark-bg.8" | "#dark-bg.9" | "#dark-bg.00" | "#dark-bg.01" | "#dark-bg.02" | "#dark-bg.03" | "#dark-bg.04" | "#dark-bg.05" | "#dark-bg.06" | "#dark-bg.07" | "#dark-bg.08" | "#dark-bg.09" | "#dark-bg.10" | "#dark-bg.11" | "#dark-bg.12" | "#dark-bg.13" | "#dark-bg.14" | "#dark-bg.15" | "#dark-bg.16" | "#dark-bg.17" | "#dark-bg.18" | "#dark-bg.19" | "#dark-bg.20" | "#dark-bg.21" | "#dark-bg.22" | "#dark-bg.23" | "#dark-bg.24" | "#dark-bg.25" | "#dark-bg.26" | "#dark-bg.27" | "#dark-bg.28" | "#dark-bg.29" | "#dark-bg.30" | "#dark-bg.31" | "#dark-bg.32" | "#dark-bg.33" | "#dark-bg.34" | "#dark-bg.35" | "#dark-bg.36" | "#dark-bg.37" | "#dark-bg.38" | "#dark-bg.39" | "#dark-bg.40" | "#dark-bg.41" | "#dark-bg.42" | "#dark-bg.43" | "#dark-bg.44" | "#dark-bg.45" | "#dark-bg.46" | "#dark-bg.47" | "#dark-bg.48" | "#dark-bg.49" | "#dark-bg.50" | "#dark-bg.51" | "#dark-bg.52" | "#dark-bg.53" | "#dark-bg.54" | "#dark-bg.55" | "#dark-bg.56" | "#dark-bg.57" | "#dark-bg.58" | "#dark-bg.59" | "#dark-bg.60" | "#dark-bg.61" | "#dark-bg.62" | "#dark-bg.63" | "#dark-bg.64" | "#dark-bg.65" | "#dark-bg.66" | "#dark-bg.67" | "#dark-bg.68" | "#dark-bg.69" | "#dark-bg.70" | "#dark-bg.71" | "#dark-bg.72" | "#dark-bg.73" | "#dark-bg.74" | "#dark-bg.75" | "#dark-bg.76" | "#dark-bg.77" | "#dark-bg.78" | "#dark-bg.79" | "#dark-bg.80" | "#dark-bg.81" | "#dark-bg.82" | "#dark-bg.83" | "#dark-bg.84" | "#dark-bg.85" | "#dark-bg.86" | "#dark-bg.87" | "#dark-bg.88" | "#dark-bg.89" | "#dark-bg.90" | "#dark-bg.91" | "#dark-bg.92" | "#dark-bg.93" | "#dark-bg.94" | "#dark-bg.95" | "#dark-bg.96" | "#dark-bg.97" | "#dark-bg.98" | "#dark-bg.99" | "#dark-bg.100" | "#text" | "#text.0" | "#text.1" | "#text.2" | "#text.3" | "#text.4" | "#text.5" | "#text.6" | "#text.7" | "#text.8" | "#text.9" | "#text.00" | "#text.01" | "#text.02" | "#text.03" | "#text.04" | "#text.05" | "#text.06" | "#text.07" | "#text.08" | "#text.09" | "#text.10" | "#text.11" | "#text.12" | "#text.13" | "#text.14" | "#text.15" | "#text.16" | "#text.17" | "#text.18" | "#text.19" | "#text.20" | "#text.21" | "#text.22" | "#text.23" | "#text.24" | "#text.25" | "#text.26" | "#text.27" | "#text.28" | "#text.29" | "#text.30" | "#text.31" | "#text.32" | "#text.33" | "#text.34" | "#text.35" | "#text.36" | "#text.37" | "#text.38" | "#text.39" | "#text.40" | "#text.41" | "#text.42" | "#text.43" | "#text.44" | "#text.45" | "#text.46" | "#text.47" | "#text.48" | "#text.49" | "#text.50" | "#text.51" | "#text.52" | "#text.53" | "#text.54" | "#text.55" | "#text.56" | "#text.57" | "#text.58" | "#text.59" | "#text.60" | "#text.61" | "#text.62" | "#text.63" | "#text.64" | "#text.65" | "#text.66" | "#text.67" | "#text.68" | "#text.69" | "#text.70" | "#text.71" | "#text.72" | "#text.73" | "#text.74" | "#text.75" | "#text.76" | "#text.77" | "#text.78" | "#text.79" | "#text.80" | "#text.81" | "#text.82" | "#text.83" | "#text.84" | "#text.85" | "#text.86" | "#text.87" | "#text.88" | "#text.89" | "#text.90" | "#text.91" | "#text.92" | "#text.93" | "#text.94" | "#text.95" | "#text.96" | "#text.97" | "#text.98" | "#text.99" | "#text.100" | "#primary" | "#primary.0" | "#primary.1" | "#primary.2" | "#primary.3" | "#primary.4" | "#primary.5" | "#primary.6" | "#primary.7" | "#primary.8" | "#primary.9" | "#primary.00" | "#primary.01" | "#primary.02" | "#primary.03" | "#primary.04" | "#primary.05" | "#primary.06" | "#primary.07" | "#primary.08" | "#primary.09" | "#primary.10" | "#primary.11" | "#primary.12" | "#primary.13" | "#primary.14" | "#primary.15" | "#primary.16" | "#primary.17" | "#primary.18" | "#primary.19" | "#primary.20" | "#primary.21" | "#primary.22" | "#primary.23" | "#primary.24" | "#primary.25" | "#primary.26" | "#primary.27" | "#primary.28" | "#primary.29" | "#primary.30" | "#primary.31" | "#primary.32" | "#primary.33" | "#primary.34" | "#primary.35" | "#primary.36" | "#primary.37" | "#primary.38" | "#primary.39" | "#primary.40" | "#primary.41" | "#primary.42" | "#primary.43" | "#primary.44" | "#primary.45" | "#primary.46" | "#primary.47" | "#primary.48" | "#primary.49" | "#primary.50" | "#primary.51" | "#primary.52" | "#primary.53" | "#primary.54" | "#primary.55" | "#primary.56" | "#primary.57" | "#primary.58" | "#primary.59" | "#primary.60" | "#primary.61" | "#primary.62" | "#primary.63" | "#primary.64" | "#primary.65" | "#primary.66" | "#primary.67" | "#primary.68" | "#primary.69" | "#primary.70" | "#primary.71" | "#primary.72" | "#primary.73" | "#primary.74" | "#primary.75" | "#primary.76" | "#primary.77" | "#primary.78" | "#primary.79" | "#primary.80" | "#primary.81" | "#primary.82" | "#primary.83" | "#primary.84" | "#primary.85" | "#primary.86" | "#primary.87" | "#primary.88" | "#primary.89" | "#primary.90" | "#primary.91" | "#primary.92" | "#primary.93" | "#primary.94" | "#primary.95" | "#primary.96" | "#primary.97" | "#primary.98" | "#primary.99" | "#primary.100" | "#disabled" | "#disabled.0" | "#disabled.1" | "#disabled.2" | "#disabled.3" | "#disabled.4" | "#disabled.5" | "#disabled.6" | "#disabled.7" | "#disabled.8" | "#disabled.9" | "#disabled.00" | "#disabled.01" | "#disabled.02" | "#disabled.03" | "#disabled.04" | "#disabled.05" | "#disabled.06" | "#disabled.07" | "#disabled.08" | "#disabled.09" | "#disabled.10" | "#disabled.11" | "#disabled.12" | "#disabled.13" | "#disabled.14" | "#disabled.15" | "#disabled.16" | "#disabled.17" | "#disabled.18" | "#disabled.19" | "#disabled.20" | "#disabled.21" | "#disabled.22" | "#disabled.23" | "#disabled.24" | "#disabled.25" | "#disabled.26" | "#disabled.27" | "#disabled.28" | "#disabled.29" | "#disabled.30" | "#disabled.31" | "#disabled.32" | "#disabled.33" | "#disabled.34" | "#disabled.35" | "#disabled.36" | "#disabled.37" | "#disabled.38" | "#disabled.39" | "#disabled.40" | "#disabled.41" | "#disabled.42" | "#disabled.43" | "#disabled.44" | "#disabled.45" | "#disabled.46" | "#disabled.47" | "#disabled.48" | "#disabled.49" | "#disabled.50" | "#disabled.51" | "#disabled.52" | "#disabled.53" | "#disabled.54" | "#disabled.55" | "#disabled.56" | "#disabled.57" | "#disabled.58" | "#disabled.59" | "#disabled.60" | "#disabled.61" | "#disabled.62" | "#disabled.63" | "#disabled.64" | "#disabled.65" | "#disabled.66" | "#disabled.67" | "#disabled.68" | "#disabled.69" | "#disabled.70" | "#disabled.71" | "#disabled.72" | "#disabled.73" | "#disabled.74" | "#disabled.75" | "#disabled.76" | "#disabled.77" | "#disabled.78" | "#disabled.79" | "#disabled.80" | "#disabled.81" | "#disabled.82" | "#disabled.83" | "#disabled.84" | "#disabled.85" | "#disabled.86" | "#disabled.87" | "#disabled.88" | "#disabled.89" | "#disabled.90" | "#disabled.91" | "#disabled.92" | "#disabled.93" | "#disabled.94" | "#disabled.95" | "#disabled.96" | "#disabled.97" | "#disabled.98" | "#disabled.99" | "#disabled.100" | "#disabled-bg" | "#disabled-bg.0" | "#disabled-bg.1" | "#disabled-bg.2" | "#disabled-bg.3" | "#disabled-bg.4" | "#disabled-bg.5" | "#disabled-bg.6" | "#disabled-bg.7" | "#disabled-bg.8" | "#disabled-bg.9" | "#disabled-bg.00" | "#disabled-bg.01" | "#disabled-bg.02" | "#disabled-bg.03" | "#disabled-bg.04" | "#disabled-bg.05" | "#disabled-bg.06" | "#disabled-bg.07" | "#disabled-bg.08" | "#disabled-bg.09" | "#disabled-bg.10" | "#disabled-bg.11" | "#disabled-bg.12" | "#disabled-bg.13" | "#disabled-bg.14" | "#disabled-bg.15" | "#disabled-bg.16" | "#disabled-bg.17" | "#disabled-bg.18" | "#disabled-bg.19" | "#disabled-bg.20" | "#disabled-bg.21" | "#disabled-bg.22" | "#disabled-bg.23" | "#disabled-bg.24" | "#disabled-bg.25" | "#disabled-bg.26" | "#disabled-bg.27" | "#disabled-bg.28" | "#disabled-bg.29" | "#disabled-bg.30" | "#disabled-bg.31" | "#disabled-bg.32" | "#disabled-bg.33" | "#disabled-bg.34" | "#disabled-bg.35" | "#disabled-bg.36" | "#disabled-bg.37" | "#disabled-bg.38" | "#disabled-bg.39" | "#disabled-bg.40" | "#disabled-bg.41" | "#disabled-bg.42" | "#disabled-bg.43" | "#disabled-bg.44" | "#disabled-bg.45" | "#disabled-bg.46" | "#disabled-bg.47" | "#disabled-bg.48" | "#disabled-bg.49" | "#disabled-bg.50" | "#disabled-bg.51" | "#disabled-bg.52" | "#disabled-bg.53" | "#disabled-bg.54" | "#disabled-bg.55" | "#disabled-bg.56" | "#disabled-bg.57" | "#disabled-bg.58" | "#disabled-bg.59" | "#disabled-bg.60" | "#disabled-bg.61" | "#disabled-bg.62" | "#disabled-bg.63" | "#disabled-bg.64" | "#disabled-bg.65" | "#disabled-bg.66" | "#disabled-bg.67" | "#disabled-bg.68" | "#disabled-bg.69" | "#disabled-bg.70" | "#disabled-bg.71" | "#disabled-bg.72" | "#disabled-bg.73" | "#disabled-bg.74" | "#disabled-bg.75" | "#disabled-bg.76" | "#disabled-bg.77" | "#disabled-bg.78" | "#disabled-bg.79" | "#disabled-bg.80" | "#disabled-bg.81" | "#disabled-bg.82" | "#disabled-bg.83" | "#disabled-bg.84" | "#disabled-bg.85" | "#disabled-bg.86" | "#disabled-bg.87" | "#disabled-bg.88" | "#disabled-bg.89" | "#disabled-bg.90" | "#disabled-bg.91" | "#disabled-bg.92" | "#disabled-bg.93" | "#disabled-bg.94" | "#disabled-bg.95" | "#disabled-bg.96" | "#disabled-bg.97" | "#disabled-bg.98" | "#disabled-bg.99" | "#disabled-bg.100" | "#disabled-text" | "#disabled-text.0" | "#disabled-text.1" | "#disabled-text.2" | "#disabled-text.3" | "#disabled-text.4" | "#disabled-text.5" | "#disabled-text.6" | "#disabled-text.7" | "#disabled-text.8" | "#disabled-text.9" | "#disabled-text.00" | "#disabled-text.01" | "#disabled-text.02" | "#disabled-text.03" | "#disabled-text.04" | "#disabled-text.05" | "#disabled-text.06" | "#disabled-text.07" | "#disabled-text.08" | "#disabled-text.09" | "#disabled-text.10" | "#disabled-text.11" | "#disabled-text.12" | "#disabled-text.13" | "#disabled-text.14" | "#disabled-text.15" | "#disabled-text.16" | "#disabled-text.17" | "#disabled-text.18" | "#disabled-text.19" | "#disabled-text.20" | "#disabled-text.21" | "#disabled-text.22" | "#disabled-text.23" | "#disabled-text.24" | "#disabled-text.25" | "#disabled-text.26" | "#disabled-text.27" | "#disabled-text.28" | "#disabled-text.29" | "#disabled-text.30" | "#disabled-text.31" | "#disabled-text.32" | "#disabled-text.33" | "#disabled-text.34" | "#disabled-text.35" | "#disabled-text.36" | "#disabled-text.37" | "#disabled-text.38" | "#disabled-text.39" | "#disabled-text.40" | "#disabled-text.41" | "#disabled-text.42" | "#disabled-text.43" | "#disabled-text.44" | "#disabled-text.45" | "#disabled-text.46" | "#disabled-text.47" | "#disabled-text.48" | "#disabled-text.49" | "#disabled-text.50" | "#disabled-text.51" | "#disabled-text.52" | "#disabled-text.53" | "#disabled-text.54" | "#disabled-text.55" | "#disabled-text.56" | "#disabled-text.57" | "#disabled-text.58" | "#disabled-text.59" | "#disabled-text.60" | "#disabled-text.61" | "#disabled-text.62" | "#disabled-text.63" | "#disabled-text.64" | "#disabled-text.65" | "#disabled-text.66" | "#disabled-text.67" | "#disabled-text.68" | "#disabled-text.69" | "#disabled-text.70" | "#disabled-text.71" | "#disabled-text.72" | "#disabled-text.73" | "#disabled-text.74" | "#disabled-text.75" | "#disabled-text.76" | "#disabled-text.77" | "#disabled-text.78" | "#disabled-text.79" | "#disabled-text.80" | "#disabled-text.81" | "#disabled-text.82" | "#disabled-text.83" | "#disabled-text.84" | "#disabled-text.85" | "#disabled-text.86" | "#disabled-text.87" | "#disabled-text.88" | "#disabled-text.89" | "#disabled-text.90" | "#disabled-text.91" | "#disabled-text.92" | "#disabled-text.93" | "#disabled-text.94" | "#disabled-text.95" | "#disabled-text.96" | "#disabled-text.97" | "#disabled-text.98" | "#disabled-text.99" | "#disabled-text.100" | "#danger" | "#danger.0" | "#danger.1" | "#danger.2" | "#danger.3" | "#danger.4" | "#danger.5" | "#danger.6" | "#danger.7" | "#danger.8" | "#danger.9" | "#danger.00" | "#danger.01" | "#danger.02" | "#danger.03" | "#danger.04" | "#danger.05" | "#danger.06" | "#danger.07" | "#danger.08" | "#danger.09" | "#danger.10" | "#danger.11" | "#danger.12" | "#danger.13" | "#danger.14" | "#danger.15" | "#danger.16" | "#danger.17" | "#danger.18" | "#danger.19" | "#danger.20" | "#danger.21" | "#danger.22" | "#danger.23" | "#danger.24" | "#danger.25" | "#danger.26" | "#danger.27" | "#danger.28" | "#danger.29" | "#danger.30" | "#danger.31" | "#danger.32" | "#danger.33" | "#danger.34" | "#danger.35" | "#danger.36" | "#danger.37" | "#danger.38" | "#danger.39" | "#danger.40" | "#danger.41" | "#danger.42" | "#danger.43" | "#danger.44" | "#danger.45" | "#danger.46" | "#danger.47" | "#danger.48" | "#danger.49" | "#danger.50" | "#danger.51" | "#danger.52" | "#danger.53" | "#danger.54" | "#danger.55" | "#danger.56" | "#danger.57" | "#danger.58" | "#danger.59" | "#danger.60" | "#danger.61" | "#danger.62" | "#danger.63" | "#danger.64" | "#danger.65" | "#danger.66" | "#danger.67" | "#danger.68" | "#danger.69" | "#danger.70" | "#danger.71" | "#danger.72" | "#danger.73" | "#danger.74" | "#danger.75" | "#danger.76" | "#danger.77" | "#danger.78" | "#danger.79" | "#danger.80" | "#danger.81" | "#danger.82" | "#danger.83" | "#danger.84" | "#danger.85" | "#danger.86" | "#danger.87" | "#danger.88" | "#danger.89" | "#danger.90" | "#danger.91" | "#danger.92" | "#danger.93" | "#danger.94" | "#danger.95" | "#danger.96" | "#danger.97" | "#danger.98" | "#danger.99" | "#danger.100" | "#danger-bg" | "#danger-bg.0" | "#danger-bg.1" | "#danger-bg.2" | "#danger-bg.3" | "#danger-bg.4" | "#danger-bg.5" | "#danger-bg.6" | "#danger-bg.7" | "#danger-bg.8" | "#danger-bg.9" | "#danger-bg.00" | "#danger-bg.01" | "#danger-bg.02" | "#danger-bg.03" | "#danger-bg.04" | "#danger-bg.05" | "#danger-bg.06" | "#danger-bg.07" | "#danger-bg.08" | "#danger-bg.09" | "#danger-bg.10" | "#danger-bg.11" | "#danger-bg.12" | "#danger-bg.13" | "#danger-bg.14" | "#danger-bg.15" | "#danger-bg.16" | "#danger-bg.17" | "#danger-bg.18" | "#danger-bg.19" | "#danger-bg.20" | "#danger-bg.21" | "#danger-bg.22" | "#danger-bg.23" | "#danger-bg.24" | "#danger-bg.25" | "#danger-bg.26" | "#danger-bg.27" | "#danger-bg.28" | "#danger-bg.29" | "#danger-bg.30" | "#danger-bg.31" | "#danger-bg.32" | "#danger-bg.33" | "#danger-bg.34" | "#danger-bg.35" | "#danger-bg.36" | "#danger-bg.37" | "#danger-bg.38" | "#danger-bg.39" | "#danger-bg.40" | "#danger-bg.41" | "#danger-bg.42" | "#danger-bg.43" | "#danger-bg.44" | "#danger-bg.45" | "#danger-bg.46" | "#danger-bg.47" | "#danger-bg.48" | "#danger-bg.49" | "#danger-bg.50" | "#danger-bg.51" | "#danger-bg.52" | "#danger-bg.53" | "#danger-bg.54" | "#danger-bg.55" | "#danger-bg.56" | "#danger-bg.57" | "#danger-bg.58" | "#danger-bg.59" | "#danger-bg.60" | "#danger-bg.61" | "#danger-bg.62" | "#danger-bg.63" | "#danger-bg.64" | "#danger-bg.65" | "#danger-bg.66" | "#danger-bg.67" | "#danger-bg.68" | "#danger-bg.69" | "#danger-bg.70" | "#danger-bg.71" | "#danger-bg.72" | "#danger-bg.73" | "#danger-bg.74" | "#danger-bg.75" | "#danger-bg.76" | "#danger-bg.77" | "#danger-bg.78" | "#danger-bg.79" | "#danger-bg.80" | "#danger-bg.81" | "#danger-bg.82" | "#danger-bg.83" | "#danger-bg.84" | "#danger-bg.85" | "#danger-bg.86" | "#danger-bg.87" | "#danger-bg.88" | "#danger-bg.89" | "#danger-bg.90" | "#danger-bg.91" | "#danger-bg.92" | "#danger-bg.93" | "#danger-bg.94" | "#danger-bg.95" | "#danger-bg.96" | "#danger-bg.97" | "#danger-bg.98" | "#danger-bg.99" | "#danger-bg.100" | "#danger-text" | "#danger-text.0" | "#danger-text.1" | "#danger-text.2" | "#danger-text.3" | "#danger-text.4" | "#danger-text.5" | "#danger-text.6" | "#danger-text.7" | "#danger-text.8" | "#danger-text.9" | "#danger-text.00" | "#danger-text.01" | "#danger-text.02" | "#danger-text.03" | "#danger-text.04" | "#danger-text.05" | "#danger-text.06" | "#danger-text.07" | "#danger-text.08" | "#danger-text.09" | "#danger-text.10" | "#danger-text.11" | "#danger-text.12" | "#danger-text.13" | "#danger-text.14" | "#danger-text.15" | "#danger-text.16" | "#danger-text.17" | "#danger-text.18" | "#danger-text.19" | "#danger-text.20" | "#danger-text.21" | "#danger-text.22" | "#danger-text.23" | "#danger-text.24" | "#danger-text.25" | "#danger-text.26" | "#danger-text.27" | "#danger-text.28" | "#danger-text.29" | "#danger-text.30" | "#danger-text.31" | "#danger-text.32" | "#danger-text.33" | "#danger-text.34" | "#danger-text.35" | "#danger-text.36" | "#danger-text.37" | "#danger-text.38" | "#danger-text.39" | "#danger-text.40" | "#danger-text.41" | "#danger-text.42" | "#danger-text.43" | "#danger-text.44" | "#danger-text.45" | "#danger-text.46" | "#danger-text.47" | "#danger-text.48" | "#danger-text.49" | "#danger-text.50" | "#danger-text.51" | "#danger-text.52" | "#danger-text.53" | "#danger-text.54" | "#danger-text.55" | "#danger-text.56" | "#danger-text.57" | "#danger-text.58" | "#danger-text.59" | "#danger-text.60" | "#danger-text.61" | "#danger-text.62" | "#danger-text.63" | "#danger-text.64" | "#danger-text.65" | "#danger-text.66" | "#danger-text.67" | "#danger-text.68" | "#danger-text.69" | "#danger-text.70" | "#danger-text.71" | "#danger-text.72" | "#danger-text.73" | "#danger-text.74" | "#danger-text.75" | "#danger-text.76" | "#danger-text.77" | "#danger-text.78" | "#danger-text.79" | "#danger-text.80" | "#danger-text.81" | "#danger-text.82" | "#danger-text.83" | "#danger-text.84" | "#danger-text.85" | "#danger-text.86" | "#danger-text.87" | "#danger-text.88" | "#danger-text.89" | "#danger-text.90" | "#danger-text.91" | "#danger-text.92" | "#danger-text.93" | "#danger-text.94" | "#danger-text.95" | "#danger-text.96" | "#danger-text.97" | "#danger-text.98" | "#danger-text.99" | "#danger-text.100" | "#danger-icon" | "#danger-icon.0" | "#danger-icon.1" | "#danger-icon.2" | "#danger-icon.3" | "#danger-icon.4" | "#danger-icon.5" | "#danger-icon.6" | "#danger-icon.7" | "#danger-icon.8" | "#danger-icon.9" | "#danger-icon.00" | "#danger-icon.01" | "#danger-icon.02" | "#danger-icon.03" | "#danger-icon.04" | "#danger-icon.05" | "#danger-icon.06" | "#danger-icon.07" | "#danger-icon.08" | "#danger-icon.09" | "#danger-icon.10" | "#danger-icon.11" | "#danger-icon.12" | "#danger-icon.13" | "#danger-icon.14" | "#danger-icon.15" | "#danger-icon.16" | "#danger-icon.17" | "#danger-icon.18" | "#danger-icon.19" | "#danger-icon.20" | "#danger-icon.21" | "#danger-icon.22" | "#danger-icon.23" | "#danger-icon.24" | "#danger-icon.25" | "#danger-icon.26" | "#danger-icon.27" | "#danger-icon.28" | "#danger-icon.29" | "#danger-icon.30" | "#danger-icon.31" | "#danger-icon.32" | "#danger-icon.33" | "#danger-icon.34" | "#danger-icon.35" | "#danger-icon.36" | "#danger-icon.37" | "#danger-icon.38" | "#danger-icon.39" | "#danger-icon.40" | "#danger-icon.41" | "#danger-icon.42" | "#danger-icon.43" | "#danger-icon.44" | "#danger-icon.45" | "#danger-icon.46" | "#danger-icon.47" | "#danger-icon.48" | "#danger-icon.49" | "#danger-icon.50" | "#danger-icon.51" | "#danger-icon.52" | "#danger-icon.53" | "#danger-icon.54" | "#danger-icon.55" | "#danger-icon.56" | "#danger-icon.57" | "#danger-icon.58" | "#danger-icon.59" | "#danger-icon.60" | "#danger-icon.61" | "#danger-icon.62" | "#danger-icon.63" | "#danger-icon.64" | "#danger-icon.65" | "#danger-icon.66" | "#danger-icon.67" | "#danger-icon.68" | "#danger-icon.69" | "#danger-icon.70" | "#danger-icon.71" | "#danger-icon.72" | "#danger-icon.73" | "#danger-icon.74" | "#danger-icon.75" | "#danger-icon.76" | "#danger-icon.77" | "#danger-icon.78" | "#danger-icon.79" | "#danger-icon.80" | "#danger-icon.81" | "#danger-icon.82" | "#danger-icon.83" | "#danger-icon.84" | "#danger-icon.85" | "#danger-icon.86" | "#danger-icon.87" | "#danger-icon.88" | "#danger-icon.89" | "#danger-icon.90" | "#danger-icon.91" | "#danger-icon.92" | "#danger-icon.93" | "#danger-icon.94" | "#danger-icon.95" | "#danger-icon.96" | "#danger-icon.97" | "#danger-icon.98" | "#danger-icon.99" | "#danger-icon.100" | "#success" | "#success.0" | "#success.1" | "#success.2" | "#success.3" | "#success.4" | "#success.5" | "#success.6" | "#success.7" | "#success.8" | "#success.9" | "#success.00" | "#success.01" | "#success.02" | "#success.03" | "#success.04" | "#success.05" | "#success.06" | "#success.07" | "#success.08" | "#success.09" | "#success.10" | "#success.11" | "#success.12" | "#success.13" | "#success.14" | "#success.15" | "#success.16" | "#success.17" | "#success.18" | "#success.19" | "#success.20" | "#success.21" | "#success.22" | "#success.23" | "#success.24" | "#success.25" | "#success.26" | "#success.27" | "#success.28" | "#success.29" | "#success.30" | "#success.31" | "#success.32" | "#success.33" | "#success.34" | "#success.35" | "#success.36" | "#success.37" | "#success.38" | "#success.39" | "#success.40" | "#success.41" | "#success.42" | "#success.43" | "#success.44" | "#success.45" | "#success.46" | "#success.47" | "#success.48" | "#success.49" | "#success.50" | "#success.51" | "#success.52" | "#success.53" | "#success.54" | "#success.55" | "#success.56" | "#success.57" | "#success.58" | "#success.59" | "#success.60" | "#success.61" | "#success.62" | "#success.63" | "#success.64" | "#success.65" | "#success.66" | "#success.67" | "#success.68" | "#success.69" | "#success.70" | "#success.71" | "#success.72" | "#success.73" | "#success.74" | "#success.75" | "#success.76" | "#success.77" | "#success.78" | "#success.79" | "#success.80" | "#success.81" | "#success.82" | "#success.83" | "#success.84" | "#success.85" | "#success.86" | "#success.87" | "#success.88" | "#success.89" | "#success.90" | "#success.91" | "#success.92" | "#success.93" | "#success.94" | "#success.95" | "#success.96" | "#success.97" | "#success.98" | "#success.99" | "#success.100" | "#success-bg" | "#success-bg.0" | "#success-bg.1" | "#success-bg.2" | "#success-bg.3" | "#success-bg.4" | "#success-bg.5" | "#success-bg.6" | "#success-bg.7" | "#success-bg.8" | "#success-bg.9" | "#success-bg.00" | "#success-bg.01" | "#success-bg.02" | "#success-bg.03" | "#success-bg.04" | "#success-bg.05" | "#success-bg.06" | "#success-bg.07" | "#success-bg.08" | "#success-bg.09" | "#success-bg.10" | "#success-bg.11" | "#success-bg.12" | "#success-bg.13" | "#success-bg.14" | "#success-bg.15" | "#success-bg.16" | "#success-bg.17" | "#success-bg.18" | "#success-bg.19" | "#success-bg.20" | "#success-bg.21" | "#success-bg.22" | "#success-bg.23" | "#success-bg.24" | "#success-bg.25" | "#success-bg.26" | "#success-bg.27" | "#success-bg.28" | "#success-bg.29" | "#success-bg.30" | "#success-bg.31" | "#success-bg.32" | "#success-bg.33" | "#success-bg.34" | "#success-bg.35" | "#success-bg.36" | "#success-bg.37" | "#success-bg.38" | "#success-bg.39" | "#success-bg.40" | "#success-bg.41" | "#success-bg.42" | "#success-bg.43" | "#success-bg.44" | "#success-bg.45" | "#success-bg.46" | "#success-bg.47" | "#success-bg.48" | "#success-bg.49" | "#success-bg.50" | "#success-bg.51" | "#success-bg.52" | "#success-bg.53" | "#success-bg.54" | "#success-bg.55" | "#success-bg.56" | "#success-bg.57" | "#success-bg.58" | "#success-bg.59" | "#success-bg.60" | "#success-bg.61" | "#success-bg.62" | "#success-bg.63" | "#success-bg.64" | "#success-bg.65" | "#success-bg.66" | "#success-bg.67" | "#success-bg.68" | "#success-bg.69" | "#success-bg.70" | "#success-bg.71" | "#success-bg.72" | "#success-bg.73" | "#success-bg.74" | "#success-bg.75" | "#success-bg.76" | "#success-bg.77" | "#success-bg.78" | "#success-bg.79" | "#success-bg.80" | "#success-bg.81" | "#success-bg.82" | "#success-bg.83" | "#success-bg.84" | "#success-bg.85" | "#success-bg.86" | "#success-bg.87" | "#success-bg.88" | "#success-bg.89" | "#success-bg.90" | "#success-bg.91" | "#success-bg.92" | "#success-bg.93" | "#success-bg.94" | "#success-bg.95" | "#success-bg.96" | "#success-bg.97" | "#success-bg.98" | "#success-bg.99" | "#success-bg.100" | "#success-text" | "#success-text.0" | "#success-text.1" | "#success-text.2" | "#success-text.3" | "#success-text.4" | "#success-text.5" | "#success-text.6" | "#success-text.7" | "#success-text.8" | "#success-text.9" | "#success-text.00" | "#success-text.01" | "#success-text.02" | "#success-text.03" | "#success-text.04" | "#success-text.05" | "#success-text.06" | "#success-text.07" | "#success-text.08" | "#success-text.09" | "#success-text.10" | "#success-text.11" | "#success-text.12" | "#success-text.13" | "#success-text.14" | "#success-text.15" | "#success-text.16" | "#success-text.17" | "#success-text.18" | "#success-text.19" | "#success-text.20" | "#success-text.21" | "#success-text.22" | "#success-text.23" | "#success-text.24" | "#success-text.25" | "#success-text.26" | "#success-text.27" | "#success-text.28" | "#success-text.29" | "#success-text.30" | "#success-text.31" | "#success-text.32" | "#success-text.33" | "#success-text.34" | "#success-text.35" | "#success-text.36" | "#success-text.37" | "#success-text.38" | "#success-text.39" | "#success-text.40" | "#success-text.41" | "#success-text.42" | "#success-text.43" | "#success-text.44" | "#success-text.45" | "#success-text.46" | "#success-text.47" | "#success-text.48" | "#success-text.49" | "#success-text.50" | "#success-text.51" | "#success-text.52" | "#success-text.53" | "#success-text.54" | "#success-text.55" | "#success-text.56" | "#success-text.57" | "#success-text.58" | "#success-text.59" | "#success-text.60" | "#success-text.61" | "#success-text.62" | "#success-text.63" | "#success-text.64" | "#success-text.65" | "#success-text.66" | "#success-text.67" | "#success-text.68" | "#success-text.69" | "#success-text.70" | "#success-text.71" | "#success-text.72" | "#success-text.73" | "#success-text.74" | "#success-text.75" | "#success-text.76" | "#success-text.77" | "#success-text.78" | "#success-text.79" | "#success-text.80" | "#success-text.81" | "#success-text.82" | "#success-text.83" | "#success-text.84" | "#success-text.85" | "#success-text.86" | "#success-text.87" | "#success-text.88" | "#success-text.89" | "#success-text.90" | "#success-text.91" | "#success-text.92" | "#success-text.93" | "#success-text.94" | "#success-text.95" | "#success-text.96" | "#success-text.97" | "#success-text.98" | "#success-text.99" | "#success-text.100" | "#success-icon" | "#success-icon.0" | "#success-icon.1" | "#success-icon.2" | "#success-icon.3" | "#success-icon.4" | "#success-icon.5" | "#success-icon.6" | "#success-icon.7" | "#success-icon.8" | "#success-icon.9" | "#success-icon.00" | "#success-icon.01" | "#success-icon.02" | "#success-icon.03" | "#success-icon.04" | "#success-icon.05" | "#success-icon.06" | "#success-icon.07" | "#success-icon.08" | "#success-icon.09" | "#success-icon.10" | "#success-icon.11" | "#success-icon.12" | "#success-icon.13" | "#success-icon.14" | "#success-icon.15" | "#success-icon.16" | "#success-icon.17" | "#success-icon.18" | "#success-icon.19" | "#success-icon.20" | "#success-icon.21" | "#success-icon.22" | "#success-icon.23" | "#success-icon.24" | "#success-icon.25" | "#success-icon.26" | "#success-icon.27" | "#success-icon.28" | "#success-icon.29" | "#success-icon.30" | "#success-icon.31" | "#success-icon.32" | "#success-icon.33" | "#success-icon.34" | "#success-icon.35" | "#success-icon.36" | "#success-icon.37" | "#success-icon.38" | "#success-icon.39" | "#success-icon.40" | "#success-icon.41" | "#success-icon.42" | "#success-icon.43" | "#success-icon.44" | "#success-icon.45" | "#success-icon.46" | "#success-icon.47" | "#success-icon.48" | "#success-icon.49" | "#success-icon.50" | "#success-icon.51" | "#success-icon.52" | "#success-icon.53" | "#success-icon.54" | "#success-icon.55" | "#success-icon.56" | "#success-icon.57" | "#success-icon.58" | "#success-icon.59" | "#success-icon.60" | "#success-icon.61" | "#success-icon.62" | "#success-icon.63" | "#success-icon.64" | "#success-icon.65" | "#success-icon.66" | "#success-icon.67" | "#success-icon.68" | "#success-icon.69" | "#success-icon.70" | "#success-icon.71" | "#success-icon.72" | "#success-icon.73" | "#success-icon.74" | "#success-icon.75" | "#success-icon.76" | "#success-icon.77" | "#success-icon.78" | "#success-icon.79" | "#success-icon.80" | "#success-icon.81" | "#success-icon.82" | "#success-icon.83" | "#success-icon.84" | "#success-icon.85" | "#success-icon.86" | "#success-icon.87" | "#success-icon.88" | "#success-icon.89" | "#success-icon.90" | "#success-icon.91" | "#success-icon.92" | "#success-icon.93" | "#success-icon.94" | "#success-icon.95" | "#success-icon.96" | "#success-icon.97" | "#success-icon.98" | "#success-icon.99" | "#success-icon.100" | "#note" | "#note.0" | "#note.1" | "#note.2" | "#note.3" | "#note.4" | "#note.5" | "#note.6" | "#note.7" | "#note.8" | "#note.9" | "#note.00" | "#note.01" | "#note.02" | "#note.03" | "#note.04" | "#note.05" | "#note.06" | "#note.07" | "#note.08" | "#note.09" | "#note.10" | "#note.11" | "#note.12" | "#note.13" | "#note.14" | "#note.15" | "#note.16" | "#note.17" | "#note.18" | "#note.19" | "#note.20" | "#note.21" | "#note.22" | "#note.23" | "#note.24" | "#note.25" | "#note.26" | "#note.27" | "#note.28" | "#note.29" | "#note.30" | "#note.31" | "#note.32" | "#note.33" | "#note.34" | "#note.35" | "#note.36" | "#note.37" | "#note.38" | "#note.39" | "#note.40" | "#note.41" | "#note.42" | "#note.43" | "#note.44" | "#note.45" | "#note.46" | "#note.47" | "#note.48" | "#note.49" | "#note.50" | "#note.51" | "#note.52" | "#note.53" | "#note.54" | "#note.55" | "#note.56" | "#note.57" | "#note.58" | "#note.59" | "#note.60" | "#note.61" | "#note.62" | "#note.63" | "#note.64" | "#note.65" | "#note.66" | "#note.67" | "#note.68" | "#note.69" | "#note.70" | "#note.71" | "#note.72" | "#note.73" | "#note.74" | "#note.75" | "#note.76" | "#note.77" | "#note.78" | "#note.79" | "#note.80" | "#note.81" | "#note.82" | "#note.83" | "#note.84" | "#note.85" | "#note.86" | "#note.87" | "#note.88" | "#note.89" | "#note.90" | "#note.91" | "#note.92" | "#note.93" | "#note.94" | "#note.95" | "#note.96" | "#note.97" | "#note.98" | "#note.99" | "#note.100" | "#note-bg" | "#note-bg.0" | "#note-bg.1" | "#note-bg.2" | "#note-bg.3" | "#note-bg.4" | "#note-bg.5" | "#note-bg.6" | "#note-bg.7" | "#note-bg.8" | "#note-bg.9" | "#note-bg.00" | "#note-bg.01" | "#note-bg.02" | "#note-bg.03" | "#note-bg.04" | "#note-bg.05" | "#note-bg.06" | "#note-bg.07" | "#note-bg.08" | "#note-bg.09" | "#note-bg.10" | "#note-bg.11" | "#note-bg.12" | "#note-bg.13" | "#note-bg.14" | "#note-bg.15" | "#note-bg.16" | "#note-bg.17" | "#note-bg.18" | "#note-bg.19" | "#note-bg.20" | "#note-bg.21" | "#note-bg.22" | "#note-bg.23" | "#note-bg.24" | "#note-bg.25" | "#note-bg.26" | "#note-bg.27" | "#note-bg.28" | "#note-bg.29" | "#note-bg.30" | "#note-bg.31" | "#note-bg.32" | "#note-bg.33" | "#note-bg.34" | "#note-bg.35" | "#note-bg.36" | "#note-bg.37" | "#note-bg.38" | "#note-bg.39" | "#note-bg.40" | "#note-bg.41" | "#note-bg.42" | "#note-bg.43" | "#note-bg.44" | "#note-bg.45" | "#note-bg.46" | "#note-bg.47" | "#note-bg.48" | "#note-bg.49" | "#note-bg.50" | "#note-bg.51" | "#note-bg.52" | "#note-bg.53" | "#note-bg.54" | "#note-bg.55" | "#note-bg.56" | "#note-bg.57" | "#note-bg.58" | "#note-bg.59" | "#note-bg.60" | "#note-bg.61" | "#note-bg.62" | "#note-bg.63" | "#note-bg.64" | "#note-bg.65" | "#note-bg.66" | "#note-bg.67" | "#note-bg.68" | "#note-bg.69" | "#note-bg.70" | "#note-bg.71" | "#note-bg.72" | "#note-bg.73" | "#note-bg.74" | "#note-bg.75" | "#note-bg.76" | "#note-bg.77" | "#note-bg.78" | "#note-bg.79" | "#note-bg.80" | "#note-bg.81" | "#note-bg.82" | "#note-bg.83" | "#note-bg.84" | "#note-bg.85" | "#note-bg.86" | "#note-bg.87" | "#note-bg.88" | "#note-bg.89" | "#note-bg.90" | "#note-bg.91" | "#note-bg.92" | "#note-bg.93" | "#note-bg.94" | "#note-bg.95" | "#note-bg.96" | "#note-bg.97" | "#note-bg.98" | "#note-bg.99" | "#note-bg.100" | "#note-text" | "#note-text.0" | "#note-text.1" | "#note-text.2" | "#note-text.3" | "#note-text.4" | "#note-text.5" | "#note-text.6" | "#note-text.7" | "#note-text.8" | "#note-text.9" | "#note-text.00" | "#note-text.01" | "#note-text.02" | "#note-text.03" | "#note-text.04" | "#note-text.05" | "#note-text.06" | "#note-text.07" | "#note-text.08" | "#note-text.09" | "#note-text.10" | "#note-text.11" | "#note-text.12" | "#note-text.13" | "#note-text.14" | "#note-text.15" | "#note-text.16" | "#note-text.17" | "#note-text.18" | "#note-text.19" | "#note-text.20" | "#note-text.21" | "#note-text.22" | "#note-text.23" | "#note-text.24" | "#note-text.25" | "#note-text.26" | "#note-text.27" | "#note-text.28" | "#note-text.29" | "#note-text.30" | "#note-text.31" | "#note-text.32" | "#note-text.33" | "#note-text.34" | "#note-text.35" | "#note-text.36" | "#note-text.37" | "#note-text.38" | "#note-text.39" | "#note-text.40" | "#note-text.41" | "#note-text.42" | "#note-text.43" | "#note-text.44" | "#note-text.45" | "#note-text.46" | "#note-text.47" | "#note-text.48" | "#note-text.49" | "#note-text.50" | "#note-text.51" | "#note-text.52" | "#note-text.53" | "#note-text.54" | "#note-text.55" | "#note-text.56" | "#note-text.57" | "#note-text.58" | "#note-text.59" | "#note-text.60" | "#note-text.61" | "#note-text.62" | "#note-text.63" | "#note-text.64" | "#note-text.65" | "#note-text.66" | "#note-text.67" | "#note-text.68" | "#note-text.69" | "#note-text.70" | "#note-text.71" | "#note-text.72" | "#note-text.73" | "#note-text.74" | "#note-text.75" | "#note-text.76" | "#note-text.77" | "#note-text.78" | "#note-text.79" | "#note-text.80" | "#note-text.81" | "#note-text.82" | "#note-text.83" | "#note-text.84" | "#note-text.85" | "#note-text.86" | "#note-text.87" | "#note-text.88" | "#note-text.89" | "#note-text.90" | "#note-text.91" | "#note-text.92" | "#note-text.93" | "#note-text.94" | "#note-text.95" | "#note-text.96" | "#note-text.97" | "#note-text.98" | "#note-text.99" | "#note-text.100" | "#note-icon" | "#note-icon.0" | "#note-icon.1" | "#note-icon.2" | "#note-icon.3" | "#note-icon.4" | "#note-icon.5" | "#note-icon.6" | "#note-icon.7" | "#note-icon.8" | "#note-icon.9" | "#note-icon.00" | "#note-icon.01" | "#note-icon.02" | "#note-icon.03" | "#note-icon.04" | "#note-icon.05" | "#note-icon.06" | "#note-icon.07" | "#note-icon.08" | "#note-icon.09" | "#note-icon.10" | "#note-icon.11" | "#note-icon.12" | "#note-icon.13" | "#note-icon.14" | "#note-icon.15" | "#note-icon.16" | "#note-icon.17" | "#note-icon.18" | "#note-icon.19" | "#note-icon.20" | "#note-icon.21" | "#note-icon.22" | "#note-icon.23" | "#note-icon.24" | "#note-icon.25" | "#note-icon.26" | "#note-icon.27" | "#note-icon.28" | "#note-icon.29" | "#note-icon.30" | "#note-icon.31" | "#note-icon.32" | "#note-icon.33" | "#note-icon.34" | "#note-icon.35" | "#note-icon.36" | "#note-icon.37" | "#note-icon.38" | "#note-icon.39" | "#note-icon.40" | "#note-icon.41" | "#note-icon.42" | "#note-icon.43" | "#note-icon.44" | "#note-icon.45" | "#note-icon.46" | "#note-icon.47" | "#note-icon.48" | "#note-icon.49" | "#note-icon.50" | "#note-icon.51" | "#note-icon.52" | "#note-icon.53" | "#note-icon.54" | "#note-icon.55" | "#note-icon.56" | "#note-icon.57" | "#note-icon.58" | "#note-icon.59" | "#note-icon.60" | "#note-icon.61" | "#note-icon.62" | "#note-icon.63" | "#note-icon.64" | "#note-icon.65" | "#note-icon.66" | "#note-icon.67" | "#note-icon.68" | "#note-icon.69" | "#note-icon.70" | "#note-icon.71" | "#note-icon.72" | "#note-icon.73" | "#note-icon.74" | "#note-icon.75" | "#note-icon.76" | "#note-icon.77" | "#note-icon.78" | "#note-icon.79" | "#note-icon.80" | "#note-icon.81" | "#note-icon.82" | "#note-icon.83" | "#note-icon.84" | "#note-icon.85" | "#note-icon.86" | "#note-icon.87" | "#note-icon.88" | "#note-icon.89" | "#note-icon.90" | "#note-icon.91" | "#note-icon.92" | "#note-icon.93" | "#note-icon.94" | "#note-icon.95" | "#note-icon.96" | "#note-icon.97" | "#note-icon.98" | "#note-icon.99" | "#note-icon.100" | "#white" | "#white.0" | "#white.1" | "#white.2" | "#white.3" | "#white.4" | "#white.5" | "#white.6" | "#white.7" | "#white.8" | "#white.9" | "#white.00" | "#white.01" | "#white.02" | "#white.03" | "#white.04" | "#white.05" | "#white.06" | "#white.07" | "#white.08" | "#white.09" | "#white.10" | "#white.11" | "#white.12" | "#white.13" | "#white.14" | "#white.15" | "#white.16" | "#white.17" | "#white.18" | "#white.19" | "#white.20" | "#white.21" | "#white.22" | "#white.23" | "#white.24" | "#white.25" | "#white.26" | "#white.27" | "#white.28" | "#white.29" | "#white.30" | "#white.31" | "#white.32" | "#white.33" | "#white.34" | "#white.35" | "#white.36" | "#white.37" | "#white.38" | "#white.39" | "#white.40" | "#white.41" | "#white.42" | "#white.43" | "#white.44" | "#white.45" | "#white.46" | "#white.47" | "#white.48" | "#white.49" | "#white.50" | "#white.51" | "#white.52" | "#white.53" | "#white.54" | "#white.55" | "#white.56" | "#white.57" | "#white.58" | "#white.59" | "#white.60" | "#white.61" | "#white.62" | "#white.63" | "#white.64" | "#white.65" | "#white.66" | "#white.67" | "#white.68" | "#white.69" | "#white.70" | "#white.71" | "#white.72" | "#white.73" | "#white.74" | "#white.75" | "#white.76" | "#white.77" | "#white.78" | "#white.79" | "#white.80" | "#white.81" | "#white.82" | "#white.83" | "#white.84" | "#white.85" | "#white.86" | "#white.87" | "#white.88" | "#white.89" | "#white.90" | "#white.91" | "#white.92" | "#white.93" | "#white.94" | "#white.95" | "#white.96" | "#white.97" | "#white.98" | "#white.99" | "#white.100" | "#light" | "#light.0" | "#light.1" | "#light.2" | "#light.3" | "#light.4" | "#light.5" | "#light.6" | "#light.7" | "#light.8" | "#light.9" | "#light.00" | "#light.01" | "#light.02" | "#light.03" | "#light.04" | "#light.05" | "#light.06" | "#light.07" | "#light.08" | "#light.09" | "#light.10" | "#light.11" | "#light.12" | "#light.13" | "#light.14" | "#light.15" | "#light.16" | "#light.17" | "#light.18" | "#light.19" | "#light.20" | "#light.21" | "#light.22" | "#light.23" | "#light.24" | "#light.25" | "#light.26" | "#light.27" | "#light.28" | "#light.29" | "#light.30" | "#light.31" | "#light.32" | "#light.33" | "#light.34" | "#light.35" | "#light.36" | "#light.37" | "#light.38" | "#light.39" | "#light.40" | "#light.41" | "#light.42" | "#light.43" | "#light.44" | "#light.45" | "#light.46" | "#light.47" | "#light.48" | "#light.49" | "#light.50" | "#light.51" | "#light.52" | "#light.53" | "#light.54" | "#light.55" | "#light.56" | "#light.57" | "#light.58" | "#light.59" | "#light.60" | "#light.61" | "#light.62" | "#light.63" | "#light.64" | "#light.65" | "#light.66" | "#light.67" | "#light.68" | "#light.69" | "#light.70" | "#light.71" | "#light.72" | "#light.73" | "#light.74" | "#light.75" | "#light.76" | "#light.77" | "#light.78" | "#light.79" | "#light.80" | "#light.81" | "#light.82" | "#light.83" | "#light.84" | "#light.85" | "#light.86" | "#light.87" | "#light.88" | "#light.89" | "#light.90" | "#light.91" | "#light.92" | "#light.93" | "#light.94" | "#light.95" | "#light.96" | "#light.97" | "#light.98" | "#light.99" | "#light.100" | "#light-grey" | "#light-grey.0" | "#light-grey.1" | "#light-grey.2" | "#light-grey.3" | "#light-grey.4" | "#light-grey.5" | "#light-grey.6" | "#light-grey.7" | "#light-grey.8" | "#light-grey.9" | "#light-grey.00" | "#light-grey.01" | "#light-grey.02" | "#light-grey.03" | "#light-grey.04" | "#light-grey.05" | "#light-grey.06" | "#light-grey.07" | "#light-grey.08" | "#light-grey.09" | "#light-grey.10" | "#light-grey.11" | "#light-grey.12" | "#light-grey.13" | "#light-grey.14" | "#light-grey.15" | "#light-grey.16" | "#light-grey.17" | "#light-grey.18" | "#light-grey.19" | "#light-grey.20" | "#light-grey.21" | "#light-grey.22" | "#light-grey.23" | "#light-grey.24" | "#light-grey.25" | "#light-grey.26" | "#light-grey.27" | "#light-grey.28" | "#light-grey.29" | "#light-grey.30" | "#light-grey.31" | "#light-grey.32" | "#light-grey.33" | "#light-grey.34" | "#light-grey.35" | "#light-grey.36" | "#light-grey.37" | "#light-grey.38" | "#light-grey.39" | "#light-grey.40" | "#light-grey.41" | "#light-grey.42" | "#light-grey.43" | "#light-grey.44" | "#light-grey.45" | "#light-grey.46" | "#light-grey.47" | "#light-grey.48" | "#light-grey.49" | "#light-grey.50" | "#light-grey.51" | "#light-grey.52" | "#light-grey.53" | "#light-grey.54" | "#light-grey.55" | "#light-grey.56" | "#light-grey.57" | "#light-grey.58" | "#light-grey.59" | "#light-grey.60" | "#light-grey.61" | "#light-grey.62" | "#light-grey.63" | "#light-grey.64" | "#light-grey.65" | "#light-grey.66" | "#light-grey.67" | "#light-grey.68" | "#light-grey.69" | "#light-grey.70" | "#light-grey.71" | "#light-grey.72" | "#light-grey.73" | "#light-grey.74" | "#light-grey.75" | "#light-grey.76" | "#light-grey.77" | "#light-grey.78" | "#light-grey.79" | "#light-grey.80" | "#light-grey.81" | "#light-grey.82" | "#light-grey.83" | "#light-grey.84" | "#light-grey.85" | "#light-grey.86" | "#light-grey.87" | "#light-grey.88" | "#light-grey.89" | "#light-grey.90" | "#light-grey.91" | "#light-grey.92" | "#light-grey.93" | "#light-grey.94" | "#light-grey.95" | "#light-grey.96" | "#light-grey.97" | "#light-grey.98" | "#light-grey.99" | "#light-grey.100" | "#black" | "#black.0" | "#black.1" | "#black.2" | "#black.3" | "#black.4" | "#black.5" | "#black.6" | "#black.7" | "#black.8" | "#black.9" | "#black.00" | "#black.01" | "#black.02" | "#black.03" | "#black.04" | "#black.05" | "#black.06" | "#black.07" | "#black.08" | "#black.09" | "#black.10" | "#black.11" | "#black.12" | "#black.13" | "#black.14" | "#black.15" | "#black.16" | "#black.17" | "#black.18" | "#black.19" | "#black.20" | "#black.21" | "#black.22" | "#black.23" | "#black.24" | "#black.25" | "#black.26" | "#black.27" | "#black.28" | "#black.29" | "#black.30" | "#black.31" | "#black.32" | "#black.33" | "#black.34" | "#black.35" | "#black.36" | "#black.37" | "#black.38" | "#black.39" | "#black.40" | "#black.41" | "#black.42" | "#black.43" | "#black.44" | "#black.45" | "#black.46" | "#black.47" | "#black.48" | "#black.49" | "#black.50" | "#black.51" | "#black.52" | "#black.53" | "#black.54" | "#black.55" | "#black.56" | "#black.57" | "#black.58" | "#black.59" | "#black.60" | "#black.61" | "#black.62" | "#black.63" | "#black.64" | "#black.65" | "#black.66" | "#black.67" | "#black.68" | "#black.69" | "#black.70" | "#black.71" | "#black.72" | "#black.73" | "#black.74" | "#black.75" | "#black.76" | "#black.77" | "#black.78" | "#black.79" | "#black.80" | "#black.81" | "#black.82" | "#black.83" | "#black.84" | "#black.85" | "#black.86" | "#black.87" | "#black.88" | "#black.89" | "#black.90" | "#black.91" | "#black.92" | "#black.93" | "#black.94" | "#black.95" | "#black.96" | "#black.97" | "#black.98" | "#black.99" | "#black.100" | "#pink" | "#pink.0" | "#pink.1" | "#pink.2" | "#pink.3" | "#pink.4" | "#pink.5" | "#pink.6" | "#pink.7" | "#pink.8" | "#pink.9" | "#pink.00" | "#pink.01" | "#pink.02" | "#pink.03" | "#pink.04" | "#pink.05" | "#pink.06" | "#pink.07" | "#pink.08" | "#pink.09" | "#pink.10" | "#pink.11" | "#pink.12" | "#pink.13" | "#pink.14" | "#pink.15" | "#pink.16" | "#pink.17" | "#pink.18" | "#pink.19" | "#pink.20" | "#pink.21" | "#pink.22" | "#pink.23" | "#pink.24" | "#pink.25" | "#pink.26" | "#pink.27" | "#pink.28" | "#pink.29" | "#pink.30" | "#pink.31" | "#pink.32" | "#pink.33" | "#pink.34" | "#pink.35" | "#pink.36" | "#pink.37" | "#pink.38" | "#pink.39" | "#pink.40" | "#pink.41" | "#pink.42" | "#pink.43" | "#pink.44" | "#pink.45" | "#pink.46" | "#pink.47" | "#pink.48" | "#pink.49" | "#pink.50" | "#pink.51" | "#pink.52" | "#pink.53" | "#pink.54" | "#pink.55" | "#pink.56" | "#pink.57" | "#pink.58" | "#pink.59" | "#pink.60" | "#pink.61" | "#pink.62" | "#pink.63" | "#pink.64" | "#pink.65" | "#pink.66" | "#pink.67" | "#pink.68" | "#pink.69" | "#pink.70" | "#pink.71" | "#pink.72" | "#pink.73" | "#pink.74" | "#pink.75" | "#pink.76" | "#pink.77" | "#pink.78" | "#pink.79" | "#pink.80" | "#pink.81" | "#pink.82" | "#pink.83" | "#pink.84" | "#pink.85" | "#pink.86" | "#pink.87" | "#pink.88" | "#pink.89" | "#pink.90" | "#pink.91" | "#pink.92" | "#pink.93" | "#pink.94" | "#pink.95" | "#pink.96" | "#pink.97" | "#pink.98" | "#pink.99" | "#pink.100" | "#pink-01" | "#pink-01.0" | "#pink-01.1" | "#pink-01.2" | "#pink-01.3" | "#pink-01.4" | "#pink-01.5" | "#pink-01.6" | "#pink-01.7" | "#pink-01.8" | "#pink-01.9" | "#pink-01.00" | "#pink-01.01" | "#pink-01.02" | "#pink-01.03" | "#pink-01.04" | "#pink-01.05" | "#pink-01.06" | "#pink-01.07" | "#pink-01.08" | "#pink-01.09" | "#pink-01.10" | "#pink-01.11" | "#pink-01.12" | "#pink-01.13" | "#pink-01.14" | "#pink-01.15" | "#pink-01.16" | "#pink-01.17" | "#pink-01.18" | "#pink-01.19" | "#pink-01.20" | "#pink-01.21" | "#pink-01.22" | "#pink-01.23" | "#pink-01.24" | "#pink-01.25" | "#pink-01.26" | "#pink-01.27" | "#pink-01.28" | "#pink-01.29" | "#pink-01.30" | "#pink-01.31" | "#pink-01.32" | "#pink-01.33" | "#pink-01.34" | "#pink-01.35" | "#pink-01.36" | "#pink-01.37" | "#pink-01.38" | "#pink-01.39" | "#pink-01.40" | "#pink-01.41" | "#pink-01.42" | "#pink-01.43" | "#pink-01.44" | "#pink-01.45" | "#pink-01.46" | "#pink-01.47" | "#pink-01.48" | "#pink-01.49" | "#pink-01.50" | "#pink-01.51" | "#pink-01.52" | "#pink-01.53" | "#pink-01.54" | "#pink-01.55" | "#pink-01.56" | "#pink-01.57" | "#pink-01.58" | "#pink-01.59" | "#pink-01.60" | "#pink-01.61" | "#pink-01.62" | "#pink-01.63" | "#pink-01.64" | "#pink-01.65" | "#pink-01.66" | "#pink-01.67" | "#pink-01.68" | "#pink-01.69" | "#pink-01.70" | "#pink-01.71" | "#pink-01.72" | "#pink-01.73" | "#pink-01.74" | "#pink-01.75" | "#pink-01.76" | "#pink-01.77" | "#pink-01.78" | "#pink-01.79" | "#pink-01.80" | "#pink-01.81" | "#pink-01.82" | "#pink-01.83" | "#pink-01.84" | "#pink-01.85" | "#pink-01.86" | "#pink-01.87" | "#pink-01.88" | "#pink-01.89" | "#pink-01.90" | "#pink-01.91" | "#pink-01.92" | "#pink-01.93" | "#pink-01.94" | "#pink-01.95" | "#pink-01.96" | "#pink-01.97" | "#pink-01.98" | "#pink-01.99" | "#pink-01.100" | "#pink-02" | "#pink-02.0" | "#pink-02.1" | "#pink-02.2" | "#pink-02.3" | "#pink-02.4" | "#pink-02.5" | "#pink-02.6" | "#pink-02.7" | "#pink-02.8" | "#pink-02.9" | "#pink-02.00" | "#pink-02.01" | "#pink-02.02" | "#pink-02.03" | "#pink-02.04" | "#pink-02.05" | "#pink-02.06" | "#pink-02.07" | "#pink-02.08" | "#pink-02.09" | "#pink-02.10" | "#pink-02.11" | "#pink-02.12" | "#pink-02.13" | "#pink-02.14" | "#pink-02.15" | "#pink-02.16" | "#pink-02.17" | "#pink-02.18" | "#pink-02.19" | "#pink-02.20" | "#pink-02.21" | "#pink-02.22" | "#pink-02.23" | "#pink-02.24" | "#pink-02.25" | "#pink-02.26" | "#pink-02.27" | "#pink-02.28" | "#pink-02.29" | "#pink-02.30" | "#pink-02.31" | "#pink-02.32" | "#pink-02.33" | "#pink-02.34" | "#pink-02.35" | "#pink-02.36" | "#pink-02.37" | "#pink-02.38" | "#pink-02.39" | "#pink-02.40" | "#pink-02.41" | "#pink-02.42" | "#pink-02.43" | "#pink-02.44" | "#pink-02.45" | "#pink-02.46" | "#pink-02.47" | "#pink-02.48" | "#pink-02.49" | "#pink-02.50" | "#pink-02.51" | "#pink-02.52" | "#pink-02.53" | "#pink-02.54" | "#pink-02.55" | "#pink-02.56" | "#pink-02.57" | "#pink-02.58" | "#pink-02.59" | "#pink-02.60" | "#pink-02.61" | "#pink-02.62" | "#pink-02.63" | "#pink-02.64" | "#pink-02.65" | "#pink-02.66" | "#pink-02.67" | "#pink-02.68" | "#pink-02.69" | "#pink-02.70" | "#pink-02.71" | "#pink-02.72" | "#pink-02.73" | "#pink-02.74" | "#pink-02.75" | "#pink-02.76" | "#pink-02.77" | "#pink-02.78" | "#pink-02.79" | "#pink-02.80" | "#pink-02.81" | "#pink-02.82" | "#pink-02.83" | "#pink-02.84" | "#pink-02.85" | "#pink-02.86" | "#pink-02.87" | "#pink-02.88" | "#pink-02.89" | "#pink-02.90" | "#pink-02.91" | "#pink-02.92" | "#pink-02.93" | "#pink-02.94" | "#pink-02.95" | "#pink-02.96" | "#pink-02.97" | "#pink-02.98" | "#pink-02.99" | "#pink-02.100" | "#draft" | "#draft.0" | "#draft.1" | "#draft.2" | "#draft.3" | "#draft.4" | "#draft.5" | "#draft.6" | "#draft.7" | "#draft.8" | "#draft.9" | "#draft.00" | "#draft.01" | "#draft.02" | "#draft.03" | "#draft.04" | "#draft.05" | "#draft.06" | "#draft.07" | "#draft.08" | "#draft.09" | "#draft.10" | "#draft.11" | "#draft.12" | "#draft.13" | "#draft.14" | "#draft.15" | "#draft.16" | "#draft.17" | "#draft.18" | "#draft.19" | "#draft.20" | "#draft.21" | "#draft.22" | "#draft.23" | "#draft.24" | "#draft.25" | "#draft.26" | "#draft.27" | "#draft.28" | "#draft.29" | "#draft.30" | "#draft.31" | "#draft.32" | "#draft.33" | "#draft.34" | "#draft.35" | "#draft.36" | "#draft.37" | "#draft.38" | "#draft.39" | "#draft.40" | "#draft.41" | "#draft.42" | "#draft.43" | "#draft.44" | "#draft.45" | "#draft.46" | "#draft.47" | "#draft.48" | "#draft.49" | "#draft.50" | "#draft.51" | "#draft.52" | "#draft.53" | "#draft.54" | "#draft.55" | "#draft.56" | "#draft.57" | "#draft.58" | "#draft.59" | "#draft.60" | "#draft.61" | "#draft.62" | "#draft.63" | "#draft.64" | "#draft.65" | "#draft.66" | "#draft.67" | "#draft.68" | "#draft.69" | "#draft.70" | "#draft.71" | "#draft.72" | "#draft.73" | "#draft.74" | "#draft.75" | "#draft.76" | "#draft.77" | "#draft.78" | "#draft.79" | "#draft.80" | "#draft.81" | "#draft.82" | "#draft.83" | "#draft.84" | "#draft.85" | "#draft.86" | "#draft.87" | "#draft.88" | "#draft.89" | "#draft.90" | "#draft.91" | "#draft.92" | "#draft.93" | "#draft.94" | "#draft.95" | "#draft.96" | "#draft.97" | "#draft.98" | "#draft.99" | "#draft.100" | "#minor" | "#minor.0" | "#minor.1" | "#minor.2" | "#minor.3" | "#minor.4" | "#minor.5" | "#minor.6" | "#minor.7" | "#minor.8" | "#minor.9" | "#minor.00" | "#minor.01" | "#minor.02" | "#minor.03" | "#minor.04" | "#minor.05" | "#minor.06" | "#minor.07" | "#minor.08" | "#minor.09" | "#minor.10" | "#minor.11" | "#minor.12" | "#minor.13" | "#minor.14" | "#minor.15" | "#minor.16" | "#minor.17" | "#minor.18" | "#minor.19" | "#minor.20" | "#minor.21" | "#minor.22" | "#minor.23" | "#minor.24" | "#minor.25" | "#minor.26" | "#minor.27" | "#minor.28" | "#minor.29" | "#minor.30" | "#minor.31" | "#minor.32" | "#minor.33" | "#minor.34" | "#minor.35" | "#minor.36" | "#minor.37" | "#minor.38" | "#minor.39" | "#minor.40" | "#minor.41" | "#minor.42" | "#minor.43" | "#minor.44" | "#minor.45" | "#minor.46" | "#minor.47" | "#minor.48" | "#minor.49" | "#minor.50" | "#minor.51" | "#minor.52" | "#minor.53" | "#minor.54" | "#minor.55" | "#minor.56" | "#minor.57" | "#minor.58" | "#minor.59" | "#minor.60" | "#minor.61" | "#minor.62" | "#minor.63" | "#minor.64" | "#minor.65" | "#minor.66" | "#minor.67" | "#minor.68" | "#minor.69" | "#minor.70" | "#minor.71" | "#minor.72" | "#minor.73" | "#minor.74" | "#minor.75" | "#minor.76" | "#minor.77" | "#minor.78" | "#minor.79" | "#minor.80" | "#minor.81" | "#minor.82" | "#minor.83" | "#minor.84" | "#minor.85" | "#minor.86" | "#minor.87" | "#minor.88" | "#minor.89" | "#minor.90" | "#minor.91" | "#minor.92" | "#minor.93" | "#minor.94" | "#minor.95" | "#minor.96" | "#minor.97" | "#minor.98" | "#minor.99" | "#minor.100" | `rgb(${string})` | `rgba(${string})` | undefined>;
13
+ top?: import("../../../tasty/index").StyleValue<import("csstype").Property.Top<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Top<string | number> | undefined>;
14
+ right?: import("../../../tasty/index").StyleValue<import("csstype").Property.Right<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Right<string | number> | undefined>;
15
+ bottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.Bottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Bottom<string | number> | undefined>;
16
+ left?: import("../../../tasty/index").StyleValue<import("csstype").Property.Left<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Left<string | number> | undefined>;
17
+ font?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.FontFamily | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.FontFamily | undefined>;
18
+ outline?: import("../../../tasty/index").StyleValue<string | boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<string | boolean | undefined>;
19
+ gap?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Gap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Gap<string | number> | undefined>;
20
+ padding?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Padding<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Padding<string | number> | undefined>;
21
+ margin?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Margin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Margin<string | number> | undefined>;
22
+ width?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Width<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Width<string | number> | undefined>;
23
+ height?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Height<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Height<string | number> | undefined>;
24
+ border?: import("../../../tasty/index").StyleValue<boolean | import("csstype").Property.Border<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | import("csstype").Property.Border<string | number> | undefined>;
25
+ transition?: import("../../../tasty/index").StyleValue<string | (string & {}) | undefined> | import("../../../tasty/index").StyleValueStateMap<string | (string & {}) | undefined>;
26
+ placeContent?: import("../../../tasty/index").StyleValue<import("csstype").Property.PlaceContent | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PlaceContent | undefined>;
27
+ placeItems?: import("../../../tasty/index").StyleValue<import("csstype").Property.PlaceItems | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PlaceItems | undefined>;
28
+ accentColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.AccentColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AccentColor | undefined>;
29
+ alignContent?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignContent | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignContent | undefined>;
30
+ alignItems?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignItems | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignItems | undefined>;
31
+ alignSelf?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignSelf | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignSelf | undefined>;
32
+ alignTracks?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignTracks | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignTracks | undefined>;
33
+ animationComposition?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationComposition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationComposition | undefined>;
34
+ animationDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
35
+ animationDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDirection | undefined>;
36
+ animationDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
37
+ animationFillMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationFillMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationFillMode | undefined>;
38
+ animationIterationCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationIterationCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationIterationCount | undefined>;
39
+ animationName?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationName | undefined>;
40
+ animationPlayState?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationPlayState | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationPlayState | undefined>;
41
+ animationTimeline?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationTimeline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationTimeline | undefined>;
42
+ animationTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationTimingFunction | undefined>;
43
+ appearance?: import("../../../tasty/index").StyleValue<import("csstype").Property.Appearance | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Appearance | undefined>;
44
+ aspectRatio?: import("../../../tasty/index").StyleValue<import("csstype").Property.AspectRatio | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AspectRatio | undefined>;
45
+ backdropFilter?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackdropFilter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackdropFilter | undefined>;
46
+ backfaceVisibility?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackfaceVisibility | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackfaceVisibility | undefined>;
47
+ backgroundAttachment?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundAttachment | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundAttachment | undefined>;
48
+ backgroundBlendMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundBlendMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundBlendMode | undefined>;
49
+ backgroundClip?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundClip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundClip | undefined>;
50
+ backgroundColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundColor | undefined>;
51
+ backgroundImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundImage | undefined>;
52
+ backgroundOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundOrigin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundOrigin | undefined>;
53
+ backgroundPositionX?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
54
+ backgroundPositionY?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundPositionY<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundPositionY<string | number> | undefined>;
55
+ backgroundRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundRepeat | undefined>;
56
+ backgroundSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundSize<string | number> | undefined>;
57
+ blockOverflow?: import("../../../tasty/index").StyleValue<import("csstype").Property.BlockOverflow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BlockOverflow | undefined>;
58
+ blockSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.BlockSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BlockSize<string | number> | undefined>;
59
+ borderBlockColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockColor | undefined>;
60
+ borderBlockEndColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockEndColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockEndColor | undefined>;
61
+ borderBlockEndStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockEndStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockEndStyle | undefined>;
62
+ borderBlockEndWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>;
63
+ borderBlockStartColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockStartColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockStartColor | undefined>;
64
+ borderBlockStartStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockStartStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockStartStyle | undefined>;
65
+ borderBlockStartWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>;
66
+ borderBlockStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockStyle | undefined>;
67
+ borderBlockWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockWidth<string | number> | undefined>;
68
+ borderBottomColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomColor | undefined>;
69
+ borderBottomLeftRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
70
+ borderBottomRightRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
71
+ borderBottomStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomStyle | undefined>;
72
+ borderBottomWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomWidth<string | number> | undefined>;
73
+ borderCollapse?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderCollapse | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderCollapse | undefined>;
74
+ borderEndEndRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>;
75
+ borderEndStartRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>;
76
+ borderImageOutset?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageOutset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageOutset<string | number> | undefined>;
77
+ borderImageRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageRepeat | undefined>;
78
+ borderImageSlice?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageSlice | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageSlice | undefined>;
79
+ borderImageSource?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageSource | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageSource | undefined>;
80
+ borderImageWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageWidth<string | number> | undefined>;
81
+ borderInlineColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineColor | undefined>;
82
+ borderInlineEndColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndColor | undefined>;
83
+ borderInlineEndStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndStyle | undefined>;
84
+ borderInlineEndWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
85
+ borderInlineStartColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStartColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStartColor | undefined>;
86
+ borderInlineStartStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStartStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStartStyle | undefined>;
87
+ borderInlineStartWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>;
88
+ borderInlineStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStyle | undefined>;
89
+ borderInlineWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineWidth<string | number> | undefined>;
90
+ borderLeftColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderLeftColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderLeftColor | undefined>;
91
+ borderLeftStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderLeftStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderLeftStyle | undefined>;
92
+ borderLeftWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderLeftWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderLeftWidth<string | number> | undefined>;
93
+ borderRightColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRightColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRightColor | undefined>;
94
+ borderRightStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRightStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRightStyle | undefined>;
95
+ borderRightWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRightWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRightWidth<string | number> | undefined>;
96
+ borderSpacing?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderSpacing<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderSpacing<string | number> | undefined>;
97
+ borderStartEndRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>;
98
+ borderStartStartRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>;
99
+ borderTopColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopColor | undefined>;
100
+ borderTopLeftRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
101
+ borderTopRightRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
102
+ borderTopStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopStyle | undefined>;
103
+ borderTopWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopWidth<string | number> | undefined>;
104
+ boxDecorationBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDecorationBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDecorationBreak | undefined>;
105
+ boxShadow?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxShadow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxShadow | undefined>;
106
+ boxSizing?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxSizing | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxSizing | undefined>;
107
+ breakAfter?: import("../../../tasty/index").StyleValue<import("csstype").Property.BreakAfter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BreakAfter | undefined>;
108
+ breakBefore?: import("../../../tasty/index").StyleValue<import("csstype").Property.BreakBefore | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BreakBefore | undefined>;
109
+ breakInside?: import("../../../tasty/index").StyleValue<import("csstype").Property.BreakInside | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BreakInside | undefined>;
110
+ captionSide?: import("../../../tasty/index").StyleValue<import("csstype").Property.CaptionSide | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CaptionSide | undefined>;
111
+ caretColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.CaretColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CaretColor | undefined>;
112
+ caretShape?: import("../../../tasty/index").StyleValue<import("csstype").Property.CaretShape | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CaretShape | undefined>;
113
+ clear?: import("../../../tasty/index").StyleValue<import("csstype").Property.Clear | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Clear | undefined>;
114
+ clipPath?: import("../../../tasty/index").StyleValue<import("csstype").Property.ClipPath | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ClipPath | undefined>;
115
+ colorAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.PrintColorAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PrintColorAdjust | undefined>;
116
+ colorScheme?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColorScheme | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColorScheme | undefined>;
117
+ columnCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnCount | undefined>;
118
+ columnFill?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnFill | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnFill | undefined>;
119
+ columnGap?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnGap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnGap<string | number> | undefined>;
120
+ columnRuleColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleColor | undefined>;
121
+ columnRuleStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleStyle | undefined>;
122
+ columnRuleWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
123
+ columnSpan?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnSpan | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnSpan | undefined>;
124
+ columnWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnWidth<string | number> | undefined>;
125
+ contain?: import("../../../tasty/index").StyleValue<import("csstype").Property.Contain | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Contain | undefined>;
126
+ containIntrinsicBlockSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>;
127
+ containIntrinsicHeight?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>;
128
+ containIntrinsicInlineSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>;
129
+ containIntrinsicWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>;
130
+ containerName?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainerName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainerName | undefined>;
131
+ containerType?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainerType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainerType | undefined>;
132
+ content?: import("../../../tasty/index").StyleValue<import("csstype").Property.Content | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Content | undefined>;
133
+ contentVisibility?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContentVisibility | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContentVisibility | undefined>;
134
+ counterIncrement?: import("../../../tasty/index").StyleValue<import("csstype").Property.CounterIncrement | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CounterIncrement | undefined>;
135
+ counterReset?: import("../../../tasty/index").StyleValue<import("csstype").Property.CounterReset | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CounterReset | undefined>;
136
+ counterSet?: import("../../../tasty/index").StyleValue<import("csstype").Property.CounterSet | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.CounterSet | undefined>;
137
+ cursor?: import("../../../tasty/index").StyleValue<import("csstype").Property.Cursor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Cursor | undefined>;
138
+ direction?: import("../../../tasty/index").StyleValue<import("csstype").Property.Direction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Direction | undefined>;
139
+ display?: import("../../../tasty/index").StyleValue<import("csstype").Property.Display | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Display | undefined>;
140
+ emptyCells?: import("../../../tasty/index").StyleValue<import("csstype").Property.EmptyCells | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.EmptyCells | undefined>;
141
+ flexBasis?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexBasis<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexBasis<string | number> | undefined>;
142
+ flexDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexDirection | undefined>;
143
+ flexGrow?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexGrow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexGrow | undefined>;
144
+ flexShrink?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexShrink | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexShrink | undefined>;
145
+ flexWrap?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexWrap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexWrap | undefined>;
146
+ float?: import("../../../tasty/index").StyleValue<import("csstype").Property.Float | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Float | undefined>;
147
+ fontFamily?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontFamily | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontFamily | undefined>;
148
+ fontFeatureSettings?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontFeatureSettings | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontFeatureSettings | undefined>;
149
+ fontKerning?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontKerning | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontKerning | undefined>;
150
+ fontLanguageOverride?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontLanguageOverride | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontLanguageOverride | undefined>;
151
+ fontOpticalSizing?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontOpticalSizing | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontOpticalSizing | undefined>;
152
+ fontPalette?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontPalette | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontPalette | undefined>;
153
+ fontSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSize<string | number> | undefined>;
154
+ fontSizeAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSizeAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSizeAdjust | undefined>;
155
+ fontSmooth?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSmooth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSmooth<string | number> | undefined>;
156
+ fontStretch?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontStretch | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontStretch | undefined>;
157
+ fontStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontStyle | undefined>;
158
+ fontSynthesis?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSynthesis | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSynthesis | undefined>;
159
+ fontVariant?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariant | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariant | undefined>;
160
+ fontVariantAlternates?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantAlternates | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantAlternates | undefined>;
161
+ fontVariantCaps?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantCaps | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantCaps | undefined>;
162
+ fontVariantEastAsian?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantEastAsian | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantEastAsian | undefined>;
163
+ fontVariantEmoji?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantEmoji | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantEmoji | undefined>;
164
+ fontVariantLigatures?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantLigatures | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantLigatures | undefined>;
165
+ fontVariantNumeric?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantNumeric | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantNumeric | undefined>;
166
+ fontVariantPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantPosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantPosition | undefined>;
167
+ fontVariationSettings?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariationSettings | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariationSettings | undefined>;
168
+ fontWeight?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontWeight | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontWeight | undefined>;
169
+ forcedColorAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.ForcedColorAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ForcedColorAdjust | undefined>;
170
+ gridAutoColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridAutoColumns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridAutoColumns<string | number> | undefined>;
171
+ gridAutoFlow?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridAutoFlow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridAutoFlow | undefined>;
172
+ gridAutoRows?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridAutoRows<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridAutoRows<string | number> | undefined>;
173
+ gridColumnEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridColumnEnd | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridColumnEnd | undefined>;
174
+ gridColumnStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridColumnStart | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridColumnStart | undefined>;
175
+ gridRowEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridRowEnd | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridRowEnd | undefined>;
176
+ gridRowStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridRowStart | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridRowStart | undefined>;
177
+ gridTemplateAreas?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateAreas | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateAreas | undefined>;
178
+ gridTemplateColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
179
+ gridTemplateRows?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
180
+ hangingPunctuation?: import("../../../tasty/index").StyleValue<import("csstype").Property.HangingPunctuation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.HangingPunctuation | undefined>;
181
+ hyphenateCharacter?: import("../../../tasty/index").StyleValue<import("csstype").Property.HyphenateCharacter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.HyphenateCharacter | undefined>;
182
+ hyphenateLimitChars?: import("../../../tasty/index").StyleValue<import("csstype").Property.HyphenateLimitChars | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.HyphenateLimitChars | undefined>;
183
+ hyphens?: import("../../../tasty/index").StyleValue<import("csstype").Property.Hyphens | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Hyphens | undefined>;
184
+ imageOrientation?: import("../../../tasty/index").StyleValue<import("csstype").Property.ImageOrientation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ImageOrientation | undefined>;
185
+ imageRendering?: import("../../../tasty/index").StyleValue<import("csstype").Property.ImageRendering | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ImageRendering | undefined>;
186
+ imageResolution?: import("../../../tasty/index").StyleValue<import("csstype").Property.ImageResolution | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ImageResolution | undefined>;
187
+ initialLetter?: import("../../../tasty/index").StyleValue<import("csstype").Property.InitialLetter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InitialLetter | undefined>;
188
+ inlineSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.InlineSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InlineSize<string | number> | undefined>;
189
+ inputSecurity?: import("../../../tasty/index").StyleValue<import("csstype").Property.InputSecurity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InputSecurity | undefined>;
190
+ insetBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
191
+ insetBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
192
+ insetInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
193
+ insetInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
194
+ isolation?: import("../../../tasty/index").StyleValue<import("csstype").Property.Isolation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Isolation | undefined>;
195
+ justifyContent?: import("../../../tasty/index").StyleValue<import("csstype").Property.JustifyContent | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.JustifyContent | undefined>;
196
+ justifyItems?: import("../../../tasty/index").StyleValue<import("csstype").Property.JustifyItems | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.JustifyItems | undefined>;
197
+ justifySelf?: import("../../../tasty/index").StyleValue<import("csstype").Property.JustifySelf | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.JustifySelf | undefined>;
198
+ justifyTracks?: import("../../../tasty/index").StyleValue<import("csstype").Property.JustifyTracks | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.JustifyTracks | undefined>;
199
+ letterSpacing?: import("../../../tasty/index").StyleValue<import("csstype").Property.LetterSpacing<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LetterSpacing<string | number> | undefined>;
200
+ lineBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineBreak | undefined>;
201
+ lineHeight?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineHeight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineHeight<string | number> | undefined>;
202
+ lineHeightStep?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineHeightStep<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineHeightStep<string | number> | undefined>;
203
+ listStyleImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.ListStyleImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ListStyleImage | undefined>;
204
+ listStylePosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.ListStylePosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ListStylePosition | undefined>;
205
+ listStyleType?: import("../../../tasty/index").StyleValue<import("csstype").Property.ListStyleType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ListStyleType | undefined>;
206
+ marginBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
207
+ marginBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
208
+ marginBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginBottom<string | number> | undefined>;
209
+ marginInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
210
+ marginInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
211
+ marginLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginLeft<string | number> | undefined>;
212
+ marginRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginRight<string | number> | undefined>;
213
+ marginTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginTop<string | number> | undefined>;
214
+ marginTrim?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginTrim | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginTrim | undefined>;
215
+ maskBorderMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderMode | undefined>;
216
+ maskBorderOutset?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
217
+ maskBorderRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderRepeat | undefined>;
218
+ maskBorderSlice?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderSlice | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderSlice | undefined>;
219
+ maskBorderSource?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderSource | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderSource | undefined>;
220
+ maskBorderWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
221
+ maskClip?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskClip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskClip | undefined>;
222
+ maskComposite?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskComposite | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskComposite | undefined>;
223
+ maskImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskImage | undefined>;
224
+ maskMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskMode | undefined>;
225
+ maskOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskOrigin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskOrigin | undefined>;
226
+ maskPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskPosition<string | number> | undefined>;
227
+ maskRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskRepeat | undefined>;
228
+ maskSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskSize<string | number> | undefined>;
229
+ maskType?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskType | undefined>;
230
+ mathDepth?: import("../../../tasty/index").StyleValue<import("csstype").Property.MathDepth | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MathDepth | undefined>;
231
+ mathShift?: import("../../../tasty/index").StyleValue<import("csstype").Property.MathShift | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MathShift | undefined>;
232
+ mathStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.MathStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MathStyle | undefined>;
233
+ maxBlockSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxBlockSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxBlockSize<string | number> | undefined>;
234
+ maxHeight?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxHeight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxHeight<string | number> | undefined>;
235
+ maxInlineSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
236
+ maxLines?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxLines | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxLines | undefined>;
237
+ maxWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxWidth<string | number> | undefined>;
238
+ minBlockSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MinBlockSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MinBlockSize<string | number> | undefined>;
239
+ minHeight?: import("../../../tasty/index").StyleValue<import("csstype").Property.MinHeight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MinHeight<string | number> | undefined>;
240
+ minInlineSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MinInlineSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MinInlineSize<string | number> | undefined>;
241
+ minWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.MinWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MinWidth<string | number> | undefined>;
242
+ mixBlendMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.MixBlendMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MixBlendMode | undefined>;
243
+ motionDistance?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetDistance<string | number> | undefined>;
244
+ motionPath?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetPath | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetPath | undefined>;
245
+ motionRotation?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetRotate | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetRotate | undefined>;
246
+ objectFit?: import("../../../tasty/index").StyleValue<import("csstype").Property.ObjectFit | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ObjectFit | undefined>;
247
+ objectPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ObjectPosition<string | number> | undefined>;
248
+ offsetAnchor?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetAnchor<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetAnchor<string | number> | undefined>;
249
+ offsetDistance?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetDistance<string | number> | undefined>;
250
+ offsetPath?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetPath | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetPath | undefined>;
251
+ offsetPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetPosition<string | number> | undefined>;
252
+ offsetRotate?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetRotate | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetRotate | undefined>;
253
+ offsetRotation?: import("../../../tasty/index").StyleValue<import("csstype").Property.OffsetRotate | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OffsetRotate | undefined>;
254
+ opacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.Opacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Opacity | undefined>;
255
+ order?: import("../../../tasty/index").StyleValue<import("csstype").Property.Order | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Order | undefined>;
256
+ orphans?: import("../../../tasty/index").StyleValue<import("csstype").Property.Orphans | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Orphans | undefined>;
257
+ outlineColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineColor | undefined>;
258
+ outlineOffset?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineOffset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineOffset<string | number> | undefined>;
259
+ outlineStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineStyle | undefined>;
260
+ outlineWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineWidth<string | number> | undefined>;
261
+ overflowAnchor?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowAnchor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowAnchor | undefined>;
262
+ overflowBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowBlock | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowBlock | undefined>;
263
+ overflowClipBox?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowClipBox | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowClipBox | undefined>;
264
+ overflowClipMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowClipMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowClipMargin<string | number> | undefined>;
265
+ overflowInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowInline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowInline | undefined>;
266
+ overflowWrap?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowWrap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowWrap | undefined>;
267
+ overflowX?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowX | undefined>;
268
+ overflowY?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowY | undefined>;
269
+ overscrollBehaviorBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverscrollBehaviorBlock | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverscrollBehaviorBlock | undefined>;
270
+ overscrollBehaviorInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverscrollBehaviorInline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverscrollBehaviorInline | undefined>;
271
+ overscrollBehaviorX?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverscrollBehaviorX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverscrollBehaviorX | undefined>;
272
+ overscrollBehaviorY?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverscrollBehaviorY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverscrollBehaviorY | undefined>;
273
+ paddingBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
274
+ paddingBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
275
+ paddingBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingBottom<string | number> | undefined>;
276
+ paddingInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
277
+ paddingInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
278
+ paddingLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingLeft<string | number> | undefined>;
279
+ paddingRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingRight<string | number> | undefined>;
280
+ paddingTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingTop<string | number> | undefined>;
281
+ page?: import("../../../tasty/index").StyleValue<import("csstype").Property.Page | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Page | undefined>;
282
+ pageBreakAfter?: import("../../../tasty/index").StyleValue<import("csstype").Property.PageBreakAfter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PageBreakAfter | undefined>;
283
+ pageBreakBefore?: import("../../../tasty/index").StyleValue<import("csstype").Property.PageBreakBefore | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PageBreakBefore | undefined>;
284
+ pageBreakInside?: import("../../../tasty/index").StyleValue<import("csstype").Property.PageBreakInside | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PageBreakInside | undefined>;
285
+ paintOrder?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaintOrder | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaintOrder | undefined>;
286
+ perspective?: import("../../../tasty/index").StyleValue<import("csstype").Property.Perspective<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Perspective<string | number> | undefined>;
287
+ perspectiveOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
288
+ pointerEvents?: import("../../../tasty/index").StyleValue<import("csstype").Property.PointerEvents | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PointerEvents | undefined>;
289
+ position?: import("../../../tasty/index").StyleValue<import("csstype").Property.Position | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Position | undefined>;
290
+ printColorAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.PrintColorAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PrintColorAdjust | undefined>;
291
+ quotes?: import("../../../tasty/index").StyleValue<import("csstype").Property.Quotes | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Quotes | undefined>;
292
+ resize?: import("../../../tasty/index").StyleValue<import("csstype").Property.Resize | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Resize | undefined>;
293
+ rotate?: import("../../../tasty/index").StyleValue<import("csstype").Property.Rotate | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Rotate | undefined>;
294
+ rowGap?: import("../../../tasty/index").StyleValue<import("csstype").Property.RowGap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.RowGap<string | number> | undefined>;
295
+ rubyAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.RubyAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.RubyAlign | undefined>;
296
+ rubyMerge?: import("../../../tasty/index").StyleValue<import("csstype").Property.RubyMerge | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.RubyMerge | undefined>;
297
+ rubyPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.RubyPosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.RubyPosition | undefined>;
298
+ scale?: import("../../../tasty/index").StyleValue<import("csstype").Property.Scale | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Scale | undefined>;
299
+ scrollBehavior?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollBehavior | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollBehavior | undefined>;
300
+ scrollMarginBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>;
301
+ scrollMarginBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>;
302
+ scrollMarginBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
303
+ scrollMarginInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>;
304
+ scrollMarginInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>;
305
+ scrollMarginLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
306
+ scrollMarginRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
307
+ scrollMarginTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
308
+ scrollPaddingBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>;
309
+ scrollPaddingBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>;
310
+ scrollPaddingBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>;
311
+ scrollPaddingInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>;
312
+ scrollPaddingInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>;
313
+ scrollPaddingLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
314
+ scrollPaddingRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>;
315
+ scrollPaddingTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
316
+ scrollSnapAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapAlign | undefined>;
317
+ scrollSnapMarginBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
318
+ scrollSnapMarginLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
319
+ scrollSnapMarginRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
320
+ scrollSnapMarginTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
321
+ scrollSnapStop?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapStop | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapStop | undefined>;
322
+ scrollSnapType?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapType | undefined>;
323
+ scrollTimelineAxis?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollTimelineAxis | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollTimelineAxis | undefined>;
324
+ scrollTimelineName?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollTimelineName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollTimelineName | undefined>;
325
+ scrollbarColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollbarColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollbarColor | undefined>;
326
+ scrollbarGutter?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollbarGutter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollbarGutter | undefined>;
327
+ scrollbarWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollbarWidth | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollbarWidth | undefined>;
328
+ shapeImageThreshold?: import("../../../tasty/index").StyleValue<import("csstype").Property.ShapeImageThreshold | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ShapeImageThreshold | undefined>;
329
+ shapeMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ShapeMargin<string | number> | undefined>;
330
+ shapeOutside?: import("../../../tasty/index").StyleValue<import("csstype").Property.ShapeOutside | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ShapeOutside | undefined>;
331
+ tabSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.TabSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TabSize<string | number> | undefined>;
332
+ tableLayout?: import("../../../tasty/index").StyleValue<import("csstype").Property.TableLayout | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TableLayout | undefined>;
333
+ textAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextAlign | undefined>;
334
+ textAlignLast?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextAlignLast | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextAlignLast | undefined>;
335
+ textCombineUpright?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextCombineUpright | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextCombineUpright | undefined>;
336
+ textDecorationColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationColor | undefined>;
337
+ textDecorationLine?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationLine | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationLine | undefined>;
338
+ textDecorationSkip?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationSkip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationSkip | undefined>;
339
+ textDecorationSkipInk?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationSkipInk | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationSkipInk | undefined>;
340
+ textDecorationStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationStyle | undefined>;
341
+ textDecorationThickness?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationThickness<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationThickness<string | number> | undefined>;
342
+ textEmphasisColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisColor | undefined>;
343
+ textEmphasisPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisPosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisPosition | undefined>;
344
+ textEmphasisStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisStyle | undefined>;
345
+ textIndent?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextIndent<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextIndent<string | number> | undefined>;
346
+ textJustify?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextJustify | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextJustify | undefined>;
347
+ textOrientation?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextOrientation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextOrientation | undefined>;
348
+ textOverflow?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextOverflow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextOverflow | undefined>;
349
+ textRendering?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextRendering | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextRendering | undefined>;
350
+ textShadow?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextShadow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextShadow | undefined>;
351
+ textSizeAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextSizeAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextSizeAdjust | undefined>;
352
+ textTransform?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextTransform | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextTransform | undefined>;
353
+ textUnderlineOffset?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>;
354
+ textUnderlinePosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextUnderlinePosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextUnderlinePosition | undefined>;
355
+ touchAction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TouchAction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TouchAction | undefined>;
356
+ transform?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transform | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transform | undefined>;
357
+ transformBox?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformBox | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformBox | undefined>;
358
+ transformOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformOrigin<string | number> | undefined>;
359
+ transformStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformStyle | undefined>;
360
+ transitionDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
361
+ transitionDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
362
+ transitionProperty?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionProperty | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionProperty | undefined>;
363
+ transitionTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionTimingFunction | undefined>;
364
+ translate?: import("../../../tasty/index").StyleValue<import("csstype").Property.Translate<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Translate<string | number> | undefined>;
365
+ unicodeBidi?: import("../../../tasty/index").StyleValue<import("csstype").Property.UnicodeBidi | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.UnicodeBidi | undefined>;
366
+ userSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.UserSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.UserSelect | undefined>;
367
+ verticalAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.VerticalAlign<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.VerticalAlign<string | number> | undefined>;
368
+ viewTransitionName?: import("../../../tasty/index").StyleValue<import("csstype").Property.ViewTransitionName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ViewTransitionName | undefined>;
369
+ visibility?: import("../../../tasty/index").StyleValue<import("csstype").Property.Visibility | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Visibility | undefined>;
370
+ whiteSpace?: import("../../../tasty/index").StyleValue<import("csstype").Property.WhiteSpace | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WhiteSpace | undefined>;
371
+ widows?: import("../../../tasty/index").StyleValue<import("csstype").Property.Widows | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Widows | undefined>;
372
+ willChange?: import("../../../tasty/index").StyleValue<import("csstype").Property.WillChange | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WillChange | undefined>;
373
+ wordBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.WordBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WordBreak | undefined>;
374
+ wordSpacing?: import("../../../tasty/index").StyleValue<import("csstype").Property.WordSpacing<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WordSpacing<string | number> | undefined>;
375
+ wordWrap?: import("../../../tasty/index").StyleValue<import("csstype").Property.WordWrap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WordWrap | undefined>;
376
+ writingMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.WritingMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WritingMode | undefined>;
377
+ zIndex?: import("../../../tasty/index").StyleValue<import("csstype").Property.ZIndex | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ZIndex | undefined>;
378
+ zoom?: import("../../../tasty/index").StyleValue<import("csstype").Property.Zoom | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Zoom | undefined>;
379
+ all?: import("../../../tasty/index").StyleValue<import("csstype").Globals | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Globals | undefined>;
380
+ animation?: import("../../../tasty/index").StyleValue<import("csstype").Property.Animation<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Animation<string & {}> | undefined>;
381
+ background?: import("../../../tasty/index").StyleValue<import("csstype").Property.Background<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Background<string | number> | undefined>;
382
+ backgroundPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundPosition<string | number> | undefined>;
383
+ borderBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlock<string | number> | undefined>;
384
+ borderBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockEnd<string | number> | undefined>;
385
+ borderBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBlockStart<string | number> | undefined>;
386
+ borderBottom?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottom<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottom<string | number> | undefined>;
387
+ borderColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderColor | undefined>;
388
+ borderImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImage | undefined>;
389
+ borderInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInline<string | number> | undefined>;
390
+ borderInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEnd<string | number> | undefined>;
391
+ borderInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStart<string | number> | undefined>;
392
+ borderLeft?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderLeft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderLeft<string | number> | undefined>;
393
+ borderRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRadius<string | number> | undefined>;
394
+ borderRight?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRight<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRight<string | number> | undefined>;
395
+ borderStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderStyle | undefined>;
396
+ borderTop?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTop<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTop<string | number> | undefined>;
397
+ borderWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderWidth<string | number> | undefined>;
398
+ caret?: import("../../../tasty/index").StyleValue<import("csstype").Property.Caret | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Caret | undefined>;
399
+ columnRule?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRule<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRule<string | number> | undefined>;
400
+ columns?: import("../../../tasty/index").StyleValue<import("csstype").Property.Columns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Columns<string | number> | undefined>;
401
+ containIntrinsicSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>;
402
+ container?: import("../../../tasty/index").StyleValue<import("csstype").Property.Container | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Container | undefined>;
403
+ flex?: import("../../../tasty/index").StyleValue<import("csstype").Property.Flex<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Flex<string | number> | undefined>;
404
+ flexFlow?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexFlow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexFlow | undefined>;
405
+ grid?: import("../../../tasty/index").StyleValue<import("csstype").Property.Grid | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Grid | undefined>;
406
+ gridArea?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridArea | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridArea | undefined>;
407
+ gridColumn?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridColumn | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridColumn | undefined>;
408
+ gridRow?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridRow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridRow | undefined>;
409
+ gridTemplate?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplate | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplate | undefined>;
410
+ inset?: import("../../../tasty/index").StyleValue<import("csstype").Property.Inset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Inset<string | number> | undefined>;
411
+ insetBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlock<string | number> | undefined>;
412
+ insetInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInline<string | number> | undefined>;
413
+ lineClamp?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineClamp | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineClamp | undefined>;
414
+ listStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.ListStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ListStyle | undefined>;
415
+ marginBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginBlock<string | number> | undefined>;
416
+ marginInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInline<string | number> | undefined>;
417
+ mask?: import("../../../tasty/index").StyleValue<import("csstype").Property.Mask<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Mask<string | number> | undefined>;
418
+ maskBorder?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorder | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorder | undefined>;
419
+ motion?: import("../../../tasty/index").StyleValue<import("csstype").Property.Offset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Offset<string | number> | undefined>;
420
+ offset?: import("../../../tasty/index").StyleValue<import("csstype").Property.Offset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Offset<string | number> | undefined>;
421
+ overflow?: import("../../../tasty/index").StyleValue<import("csstype").Property.Overflow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Overflow | undefined>;
422
+ overscrollBehavior?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverscrollBehavior | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverscrollBehavior | undefined>;
423
+ paddingBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingBlock<string | number> | undefined>;
424
+ paddingInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInline<string | number> | undefined>;
425
+ placeSelf?: import("../../../tasty/index").StyleValue<import("csstype").Property.PlaceSelf | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PlaceSelf | undefined>;
426
+ scrollMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMargin<string | number> | undefined>;
427
+ scrollMarginBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>;
428
+ scrollMarginInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMarginInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMarginInline<string | number> | undefined>;
429
+ scrollPadding?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPadding<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPadding<string | number> | undefined>;
430
+ scrollPaddingBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>;
431
+ scrollPaddingInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>;
432
+ scrollSnapMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollMargin<string | number> | undefined>;
433
+ scrollTimeline?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollTimeline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollTimeline | undefined>;
434
+ textDecoration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecoration<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecoration<string | number> | undefined>;
435
+ textEmphasis?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasis | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasis | undefined>;
436
+ MozAnimationDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
437
+ MozAnimationDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDirection | undefined>;
438
+ MozAnimationDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
439
+ MozAnimationFillMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationFillMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationFillMode | undefined>;
440
+ MozAnimationIterationCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationIterationCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationIterationCount | undefined>;
441
+ MozAnimationName?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationName | undefined>;
442
+ MozAnimationPlayState?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationPlayState | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationPlayState | undefined>;
443
+ MozAnimationTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationTimingFunction | undefined>;
444
+ MozAppearance?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozAppearance | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozAppearance | undefined>;
445
+ MozBackfaceVisibility?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackfaceVisibility | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackfaceVisibility | undefined>;
446
+ MozBinding?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozBinding | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozBinding | undefined>;
447
+ MozBorderBottomColors?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozBorderBottomColors | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozBorderBottomColors | undefined>;
448
+ MozBorderEndColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndColor | undefined>;
449
+ MozBorderEndStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndStyle | undefined>;
450
+ MozBorderEndWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
451
+ MozBorderLeftColors?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozBorderLeftColors | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozBorderLeftColors | undefined>;
452
+ MozBorderRightColors?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozBorderRightColors | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozBorderRightColors | undefined>;
453
+ MozBorderStartColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStartColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStartColor | undefined>;
454
+ MozBorderStartStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderInlineStartStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderInlineStartStyle | undefined>;
455
+ MozBorderTopColors?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozBorderTopColors | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozBorderTopColors | undefined>;
456
+ MozBoxSizing?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxSizing | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxSizing | undefined>;
457
+ MozColumnCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnCount | undefined>;
458
+ MozColumnFill?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnFill | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnFill | undefined>;
459
+ MozColumnRuleColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleColor | undefined>;
460
+ MozColumnRuleStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleStyle | undefined>;
461
+ MozColumnRuleWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
462
+ MozColumnWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnWidth<string | number> | undefined>;
463
+ MozContextProperties?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozContextProperties | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozContextProperties | undefined>;
464
+ MozFontFeatureSettings?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontFeatureSettings | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontFeatureSettings | undefined>;
465
+ MozFontLanguageOverride?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontLanguageOverride | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontLanguageOverride | undefined>;
466
+ MozHyphens?: import("../../../tasty/index").StyleValue<import("csstype").Property.Hyphens | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Hyphens | undefined>;
467
+ MozImageRegion?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozImageRegion | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozImageRegion | undefined>;
468
+ MozMarginEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
469
+ MozMarginStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
470
+ MozOrient?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOrient | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOrient | undefined>;
471
+ MozOsxFontSmoothing?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSmooth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSmooth<string | number> | undefined>;
472
+ MozPaddingEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
473
+ MozPaddingStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
474
+ MozPerspective?: import("../../../tasty/index").StyleValue<import("csstype").Property.Perspective<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Perspective<string | number> | undefined>;
475
+ MozPerspectiveOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
476
+ MozStackSizing?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozStackSizing | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozStackSizing | undefined>;
477
+ MozTabSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.TabSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TabSize<string | number> | undefined>;
478
+ MozTextBlink?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozTextBlink | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozTextBlink | undefined>;
479
+ MozTextSizeAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextSizeAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextSizeAdjust | undefined>;
480
+ MozTransformOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformOrigin<string | number> | undefined>;
481
+ MozTransformStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformStyle | undefined>;
482
+ MozTransitionDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
483
+ MozTransitionDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
484
+ MozTransitionProperty?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionProperty | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionProperty | undefined>;
485
+ MozTransitionTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionTimingFunction | undefined>;
486
+ MozUserFocus?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozUserFocus | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozUserFocus | undefined>;
487
+ MozUserModify?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozUserModify | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozUserModify | undefined>;
488
+ MozUserSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.UserSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.UserSelect | undefined>;
489
+ MozWindowDragging?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozWindowDragging | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozWindowDragging | undefined>;
490
+ MozWindowShadow?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozWindowShadow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozWindowShadow | undefined>;
491
+ msAccelerator?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsAccelerator | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsAccelerator | undefined>;
492
+ msBlockProgression?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsBlockProgression | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsBlockProgression | undefined>;
493
+ msContentZoomChaining?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomChaining | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomChaining | undefined>;
494
+ msContentZoomLimitMax?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomLimitMax | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomLimitMax | undefined>;
495
+ msContentZoomLimitMin?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomLimitMin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomLimitMin | undefined>;
496
+ msContentZoomSnapPoints?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomSnapPoints | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomSnapPoints | undefined>;
497
+ msContentZoomSnapType?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomSnapType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomSnapType | undefined>;
498
+ msContentZooming?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZooming | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZooming | undefined>;
499
+ msFilter?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsFilter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsFilter | undefined>;
500
+ msFlexDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexDirection | undefined>;
501
+ msFlexPositive?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexGrow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexGrow | undefined>;
502
+ msFlowFrom?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsFlowFrom | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsFlowFrom | undefined>;
503
+ msFlowInto?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsFlowInto | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsFlowInto | undefined>;
504
+ msGridColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsGridColumns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsGridColumns<string | number> | undefined>;
505
+ msGridRows?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsGridRows<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsGridRows<string | number> | undefined>;
506
+ msHighContrastAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsHighContrastAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsHighContrastAdjust | undefined>;
507
+ msHyphenateLimitChars?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsHyphenateLimitChars | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsHyphenateLimitChars | undefined>;
508
+ msHyphenateLimitLines?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsHyphenateLimitLines | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsHyphenateLimitLines | undefined>;
509
+ msHyphenateLimitZone?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>;
510
+ msHyphens?: import("../../../tasty/index").StyleValue<import("csstype").Property.Hyphens | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Hyphens | undefined>;
511
+ msImeAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsImeAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsImeAlign | undefined>;
512
+ msLineBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineBreak | undefined>;
513
+ msOrder?: import("../../../tasty/index").StyleValue<import("csstype").Property.Order | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Order | undefined>;
514
+ msOverflowStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsOverflowStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsOverflowStyle | undefined>;
515
+ msOverflowX?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowX | undefined>;
516
+ msOverflowY?: import("../../../tasty/index").StyleValue<import("csstype").Property.OverflowY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OverflowY | undefined>;
517
+ msScrollChaining?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollChaining | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollChaining | undefined>;
518
+ msScrollLimitXMax?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>;
519
+ msScrollLimitXMin?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>;
520
+ msScrollLimitYMax?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>;
521
+ msScrollLimitYMin?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>;
522
+ msScrollRails?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollRails | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollRails | undefined>;
523
+ msScrollSnapPointsX?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollSnapPointsX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollSnapPointsX | undefined>;
524
+ msScrollSnapPointsY?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollSnapPointsY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollSnapPointsY | undefined>;
525
+ msScrollSnapType?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollSnapType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollSnapType | undefined>;
526
+ msScrollTranslation?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollTranslation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollTranslation | undefined>;
527
+ msScrollbar3dlightColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbar3dlightColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbar3dlightColor | undefined>;
528
+ msScrollbarArrowColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarArrowColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarArrowColor | undefined>;
529
+ msScrollbarBaseColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarBaseColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarBaseColor | undefined>;
530
+ msScrollbarDarkshadowColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarDarkshadowColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarDarkshadowColor | undefined>;
531
+ msScrollbarFaceColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarFaceColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarFaceColor | undefined>;
532
+ msScrollbarHighlightColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarHighlightColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarHighlightColor | undefined>;
533
+ msScrollbarShadowColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarShadowColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarShadowColor | undefined>;
534
+ msScrollbarTrackColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollbarTrackColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollbarTrackColor | undefined>;
535
+ msTextAutospace?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsTextAutospace | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsTextAutospace | undefined>;
536
+ msTextCombineHorizontal?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextCombineUpright | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextCombineUpright | undefined>;
537
+ msTextOverflow?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextOverflow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextOverflow | undefined>;
538
+ msTouchAction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TouchAction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TouchAction | undefined>;
539
+ msTouchSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsTouchSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsTouchSelect | undefined>;
540
+ msTransform?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transform | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transform | undefined>;
541
+ msTransformOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformOrigin<string | number> | undefined>;
542
+ msTransitionDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
543
+ msTransitionDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
544
+ msTransitionProperty?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionProperty | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionProperty | undefined>;
545
+ msTransitionTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionTimingFunction | undefined>;
546
+ msUserSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsUserSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsUserSelect | undefined>;
547
+ msWordBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.WordBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WordBreak | undefined>;
548
+ msWrapFlow?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsWrapFlow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsWrapFlow | undefined>;
549
+ msWrapMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsWrapMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsWrapMargin<string | number> | undefined>;
550
+ msWrapThrough?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsWrapThrough | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsWrapThrough | undefined>;
551
+ msWritingMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.WritingMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WritingMode | undefined>;
552
+ WebkitAlignContent?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignContent | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignContent | undefined>;
553
+ WebkitAlignItems?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignItems | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignItems | undefined>;
554
+ WebkitAlignSelf?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignSelf | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignSelf | undefined>;
555
+ WebkitAnimationDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
556
+ WebkitAnimationDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDirection | undefined>;
557
+ WebkitAnimationDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
558
+ WebkitAnimationFillMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationFillMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationFillMode | undefined>;
559
+ WebkitAnimationIterationCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationIterationCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationIterationCount | undefined>;
560
+ WebkitAnimationName?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationName | undefined>;
561
+ WebkitAnimationPlayState?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationPlayState | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationPlayState | undefined>;
562
+ WebkitAnimationTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationTimingFunction | undefined>;
563
+ WebkitAppearance?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitAppearance | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitAppearance | undefined>;
564
+ WebkitBackdropFilter?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackdropFilter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackdropFilter | undefined>;
565
+ WebkitBackfaceVisibility?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackfaceVisibility | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackfaceVisibility | undefined>;
566
+ WebkitBackgroundClip?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundClip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundClip | undefined>;
567
+ WebkitBackgroundOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundOrigin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundOrigin | undefined>;
568
+ WebkitBackgroundSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundSize<string | number> | undefined>;
569
+ WebkitBorderBeforeColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitBorderBeforeColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitBorderBeforeColor | undefined>;
570
+ WebkitBorderBeforeStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitBorderBeforeStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitBorderBeforeStyle | undefined>;
571
+ WebkitBorderBeforeWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>;
572
+ WebkitBorderBottomLeftRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
573
+ WebkitBorderBottomRightRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
574
+ WebkitBorderImageSlice?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImageSlice | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImageSlice | undefined>;
575
+ WebkitBorderTopLeftRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
576
+ WebkitBorderTopRightRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
577
+ WebkitBoxDecorationBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDecorationBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDecorationBreak | undefined>;
578
+ WebkitBoxReflect?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>;
579
+ WebkitBoxShadow?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxShadow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxShadow | undefined>;
580
+ WebkitBoxSizing?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxSizing | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxSizing | undefined>;
581
+ WebkitClipPath?: import("../../../tasty/index").StyleValue<import("csstype").Property.ClipPath | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ClipPath | undefined>;
582
+ WebkitColumnCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnCount | undefined>;
583
+ WebkitColumnFill?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnFill | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnFill | undefined>;
584
+ WebkitColumnRuleColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleColor | undefined>;
585
+ WebkitColumnRuleStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleStyle | undefined>;
586
+ WebkitColumnRuleWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
587
+ WebkitColumnSpan?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnSpan | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnSpan | undefined>;
588
+ WebkitColumnWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnWidth<string | number> | undefined>;
589
+ WebkitFilter?: import("../../../tasty/index").StyleValue<import("csstype").Property.Filter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Filter | undefined>;
590
+ WebkitFlexBasis?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexBasis<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexBasis<string | number> | undefined>;
591
+ WebkitFlexDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexDirection | undefined>;
592
+ WebkitFlexGrow?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexGrow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexGrow | undefined>;
593
+ WebkitFlexShrink?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexShrink | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexShrink | undefined>;
594
+ WebkitFlexWrap?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexWrap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexWrap | undefined>;
595
+ WebkitFontFeatureSettings?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontFeatureSettings | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontFeatureSettings | undefined>;
596
+ WebkitFontKerning?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontKerning | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontKerning | undefined>;
597
+ WebkitFontSmoothing?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontSmooth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontSmooth<string | number> | undefined>;
598
+ WebkitFontVariantLigatures?: import("../../../tasty/index").StyleValue<import("csstype").Property.FontVariantLigatures | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FontVariantLigatures | undefined>;
599
+ WebkitHyphenateCharacter?: import("../../../tasty/index").StyleValue<import("csstype").Property.HyphenateCharacter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.HyphenateCharacter | undefined>;
600
+ WebkitHyphens?: import("../../../tasty/index").StyleValue<import("csstype").Property.Hyphens | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Hyphens | undefined>;
601
+ WebkitInitialLetter?: import("../../../tasty/index").StyleValue<import("csstype").Property.InitialLetter | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InitialLetter | undefined>;
602
+ WebkitJustifyContent?: import("../../../tasty/index").StyleValue<import("csstype").Property.JustifyContent | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.JustifyContent | undefined>;
603
+ WebkitLineBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineBreak | undefined>;
604
+ WebkitLineClamp?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitLineClamp | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitLineClamp | undefined>;
605
+ WebkitMarginEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
606
+ WebkitMarginStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
607
+ WebkitMaskAttachment?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskAttachment | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskAttachment | undefined>;
608
+ WebkitMaskBoxImageOutset?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
609
+ WebkitMaskBoxImageRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderRepeat | undefined>;
610
+ WebkitMaskBoxImageSlice?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderSlice | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderSlice | undefined>;
611
+ WebkitMaskBoxImageSource?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderSource | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderSource | undefined>;
612
+ WebkitMaskBoxImageWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
613
+ WebkitMaskClip?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskClip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskClip | undefined>;
614
+ WebkitMaskComposite?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskComposite | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskComposite | undefined>;
615
+ WebkitMaskImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskImage | undefined>;
616
+ WebkitMaskOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskOrigin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskOrigin | undefined>;
617
+ WebkitMaskPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>;
618
+ WebkitMaskPositionX?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>;
619
+ WebkitMaskPositionY?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>;
620
+ WebkitMaskRepeat?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskRepeat | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskRepeat | undefined>;
621
+ WebkitMaskRepeatX?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskRepeatX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskRepeatX | undefined>;
622
+ WebkitMaskRepeatY?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskRepeatY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskRepeatY | undefined>;
623
+ WebkitMaskSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMaskSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMaskSize<string | number> | undefined>;
624
+ WebkitMaxInlineSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
625
+ WebkitOrder?: import("../../../tasty/index").StyleValue<import("csstype").Property.Order | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Order | undefined>;
626
+ WebkitOverflowScrolling?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitOverflowScrolling | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitOverflowScrolling | undefined>;
627
+ WebkitPaddingEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
628
+ WebkitPaddingStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
629
+ WebkitPerspective?: import("../../../tasty/index").StyleValue<import("csstype").Property.Perspective<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Perspective<string | number> | undefined>;
630
+ WebkitPerspectiveOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
631
+ WebkitPrintColorAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.PrintColorAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.PrintColorAdjust | undefined>;
632
+ WebkitRubyPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.RubyPosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.RubyPosition | undefined>;
633
+ WebkitScrollSnapType?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapType | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapType | undefined>;
634
+ WebkitShapeMargin?: import("../../../tasty/index").StyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ShapeMargin<string | number> | undefined>;
635
+ WebkitTapHighlightColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTapHighlightColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTapHighlightColor | undefined>;
636
+ WebkitTextCombine?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextCombineUpright | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextCombineUpright | undefined>;
637
+ WebkitTextDecorationColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationColor | undefined>;
638
+ WebkitTextDecorationLine?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationLine | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationLine | undefined>;
639
+ WebkitTextDecorationSkip?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationSkip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationSkip | undefined>;
640
+ WebkitTextDecorationStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationStyle | undefined>;
641
+ WebkitTextEmphasisColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisColor | undefined>;
642
+ WebkitTextEmphasisPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisPosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisPosition | undefined>;
643
+ WebkitTextEmphasisStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasisStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasisStyle | undefined>;
644
+ WebkitTextFillColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTextFillColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTextFillColor | undefined>;
645
+ WebkitTextOrientation?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextOrientation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextOrientation | undefined>;
646
+ WebkitTextSizeAdjust?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextSizeAdjust | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextSizeAdjust | undefined>;
647
+ WebkitTextStrokeColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTextStrokeColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTextStrokeColor | undefined>;
648
+ WebkitTextStrokeWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>;
649
+ WebkitTextUnderlinePosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextUnderlinePosition | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextUnderlinePosition | undefined>;
650
+ WebkitTouchCallout?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTouchCallout | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTouchCallout | undefined>;
651
+ WebkitTransform?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transform | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transform | undefined>;
652
+ WebkitTransformOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformOrigin<string | number> | undefined>;
653
+ WebkitTransformStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformStyle | undefined>;
654
+ WebkitTransitionDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
655
+ WebkitTransitionDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
656
+ WebkitTransitionProperty?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionProperty | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionProperty | undefined>;
657
+ WebkitTransitionTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionTimingFunction | undefined>;
658
+ WebkitUserModify?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitUserModify | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitUserModify | undefined>;
659
+ WebkitUserSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.UserSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.UserSelect | undefined>;
660
+ WebkitWritingMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.WritingMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WritingMode | undefined>;
661
+ MozAnimation?: import("../../../tasty/index").StyleValue<import("csstype").Property.Animation<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Animation<string & {}> | undefined>;
662
+ MozBorderImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImage | undefined>;
663
+ MozColumnRule?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRule<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRule<string | number> | undefined>;
664
+ MozColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.Columns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Columns<string | number> | undefined>;
665
+ MozTransition?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transition<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transition<string & {}> | undefined>;
666
+ msContentZoomLimit?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomLimit | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomLimit | undefined>;
667
+ msContentZoomSnap?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsContentZoomSnap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsContentZoomSnap | undefined>;
668
+ msFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.Flex<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Flex<string | number> | undefined>;
669
+ msScrollLimit?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollLimit | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollLimit | undefined>;
670
+ msScrollSnapX?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollSnapX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollSnapX | undefined>;
671
+ msScrollSnapY?: import("../../../tasty/index").StyleValue<import("csstype").Property.MsScrollSnapY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MsScrollSnapY | undefined>;
672
+ msTransition?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transition<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transition<string & {}> | undefined>;
673
+ WebkitAnimation?: import("../../../tasty/index").StyleValue<import("csstype").Property.Animation<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Animation<string & {}> | undefined>;
674
+ WebkitBorderBefore?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>;
675
+ WebkitBorderImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImage | undefined>;
676
+ WebkitBorderRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRadius<string | number> | undefined>;
677
+ WebkitColumnRule?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColumnRule<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColumnRule<string | number> | undefined>;
678
+ WebkitColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.Columns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Columns<string | number> | undefined>;
679
+ WebkitFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.Flex<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Flex<string | number> | undefined>;
680
+ WebkitFlexFlow?: import("../../../tasty/index").StyleValue<import("csstype").Property.FlexFlow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FlexFlow | undefined>;
681
+ WebkitMask?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitMask<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitMask<string | number> | undefined>;
682
+ WebkitMaskBoxImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.MaskBorder | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MaskBorder | undefined>;
683
+ WebkitTextEmphasis?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextEmphasis | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextEmphasis | undefined>;
684
+ WebkitTextStroke?: import("../../../tasty/index").StyleValue<import("csstype").Property.WebkitTextStroke<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.WebkitTextStroke<string | number> | undefined>;
685
+ WebkitTransition?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transition<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transition<string & {}> | undefined>;
686
+ azimuth?: import("../../../tasty/index").StyleValue<import("csstype").Property.Azimuth | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Azimuth | undefined>;
687
+ boxAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxAlign | undefined>;
688
+ boxDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDirection | undefined>;
689
+ boxFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlex | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlex | undefined>;
690
+ boxFlexGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlexGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlexGroup | undefined>;
691
+ boxLines?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxLines | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxLines | undefined>;
692
+ boxOrdinalGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrdinalGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrdinalGroup | undefined>;
693
+ boxOrient?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrient | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrient | undefined>;
694
+ boxPack?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxPack | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxPack | undefined>;
695
+ clip?: import("../../../tasty/index").StyleValue<import("csstype").Property.Clip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Clip | undefined>;
696
+ gridColumnGap?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridColumnGap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridColumnGap<string | number> | undefined>;
697
+ gridGap?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridGap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridGap<string | number> | undefined>;
698
+ gridRowGap?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridRowGap<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridRowGap<string | number> | undefined>;
699
+ imeMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.ImeMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ImeMode | undefined>;
700
+ offsetBlock?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlock<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlock<string | number> | undefined>;
701
+ offsetBlockEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
702
+ offsetBlockStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
703
+ offsetInline?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInline<string | number> | undefined>;
704
+ offsetInlineEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
705
+ offsetInlineStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
706
+ scrollSnapCoordinate?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>;
707
+ scrollSnapDestination?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>;
708
+ scrollSnapPointsX?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapPointsX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapPointsX | undefined>;
709
+ scrollSnapPointsY?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapPointsY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapPointsY | undefined>;
710
+ scrollSnapTypeX?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapTypeX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapTypeX | undefined>;
711
+ scrollSnapTypeY?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapTypeY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapTypeY | undefined>;
712
+ KhtmlBoxAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxAlign | undefined>;
713
+ KhtmlBoxDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDirection | undefined>;
714
+ KhtmlBoxFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlex | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlex | undefined>;
715
+ KhtmlBoxFlexGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlexGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlexGroup | undefined>;
716
+ KhtmlBoxLines?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxLines | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxLines | undefined>;
717
+ KhtmlBoxOrdinalGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrdinalGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrdinalGroup | undefined>;
718
+ KhtmlBoxOrient?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrient | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrient | undefined>;
719
+ KhtmlBoxPack?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxPack | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxPack | undefined>;
720
+ KhtmlLineBreak?: import("../../../tasty/index").StyleValue<import("csstype").Property.LineBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LineBreak | undefined>;
721
+ KhtmlOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.Opacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Opacity | undefined>;
722
+ KhtmlUserSelect?: import("../../../tasty/index").StyleValue<import("csstype").Property.UserSelect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.UserSelect | undefined>;
723
+ MozBackgroundClip?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundClip | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundClip | undefined>;
724
+ MozBackgroundInlinePolicy?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDecorationBreak | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDecorationBreak | undefined>;
725
+ MozBackgroundOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundOrigin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundOrigin | undefined>;
726
+ MozBackgroundSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundSize<string | number> | undefined>;
727
+ MozBorderRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderRadius<string | number> | undefined>;
728
+ MozBorderRadiusBottomleft?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
729
+ MozBorderRadiusBottomright?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
730
+ MozBorderRadiusTopleft?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
731
+ MozBorderRadiusTopright?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
732
+ MozBoxAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxAlign | undefined>;
733
+ MozBoxDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDirection | undefined>;
734
+ MozBoxFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlex | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlex | undefined>;
735
+ MozBoxOrdinalGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrdinalGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrdinalGroup | undefined>;
736
+ MozBoxOrient?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrient | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrient | undefined>;
737
+ MozBoxPack?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxPack | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxPack | undefined>;
738
+ MozBoxShadow?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxShadow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxShadow | undefined>;
739
+ MozFloatEdge?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozFloatEdge | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozFloatEdge | undefined>;
740
+ MozForceBrokenImageIcon?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozForceBrokenImageIcon | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozForceBrokenImageIcon | undefined>;
741
+ MozOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.Opacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Opacity | undefined>;
742
+ MozOutline?: import("../../../tasty/index").StyleValue<import("csstype").Property.Outline<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Outline<string | number> | undefined>;
743
+ MozOutlineColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineColor | undefined>;
744
+ MozOutlineRadius?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOutlineRadius<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOutlineRadius<string | number> | undefined>;
745
+ MozOutlineRadiusBottomleft?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
746
+ MozOutlineRadiusBottomright?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>;
747
+ MozOutlineRadiusTopleft?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>;
748
+ MozOutlineRadiusTopright?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>;
749
+ MozOutlineStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineStyle | undefined>;
750
+ MozOutlineWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.OutlineWidth<string | number> | undefined>;
751
+ MozTextAlignLast?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextAlignLast | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextAlignLast | undefined>;
752
+ MozTextDecorationColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationColor | undefined>;
753
+ MozTextDecorationLine?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationLine | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationLine | undefined>;
754
+ MozTextDecorationStyle?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextDecorationStyle | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextDecorationStyle | undefined>;
755
+ MozUserInput?: import("../../../tasty/index").StyleValue<import("csstype").Property.MozUserInput | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MozUserInput | undefined>;
756
+ msImeMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.ImeMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ImeMode | undefined>;
757
+ OAnimation?: import("../../../tasty/index").StyleValue<import("csstype").Property.Animation<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Animation<string & {}> | undefined>;
758
+ OAnimationDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
759
+ OAnimationDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDirection | undefined>;
760
+ OAnimationDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
761
+ OAnimationFillMode?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationFillMode | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationFillMode | undefined>;
762
+ OAnimationIterationCount?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationIterationCount | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationIterationCount | undefined>;
763
+ OAnimationName?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationName | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationName | undefined>;
764
+ OAnimationPlayState?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationPlayState | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationPlayState | undefined>;
765
+ OAnimationTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.AnimationTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AnimationTimingFunction | undefined>;
766
+ OBackgroundSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BackgroundSize<string | number> | undefined>;
767
+ OBorderImage?: import("../../../tasty/index").StyleValue<import("csstype").Property.BorderImage | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BorderImage | undefined>;
768
+ OObjectFit?: import("../../../tasty/index").StyleValue<import("csstype").Property.ObjectFit | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ObjectFit | undefined>;
769
+ OObjectPosition?: import("../../../tasty/index").StyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ObjectPosition<string | number> | undefined>;
770
+ OTabSize?: import("../../../tasty/index").StyleValue<import("csstype").Property.TabSize<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TabSize<string | number> | undefined>;
771
+ OTextOverflow?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextOverflow | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextOverflow | undefined>;
772
+ OTransform?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transform | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transform | undefined>;
773
+ OTransformOrigin?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransformOrigin<string | number> | undefined>;
774
+ OTransition?: import("../../../tasty/index").StyleValue<import("csstype").Property.Transition<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Transition<string & {}> | undefined>;
775
+ OTransitionDelay?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
776
+ OTransitionDuration?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
777
+ OTransitionProperty?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionProperty | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionProperty | undefined>;
778
+ OTransitionTimingFunction?: import("../../../tasty/index").StyleValue<import("csstype").Property.TransitionTimingFunction | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TransitionTimingFunction | undefined>;
779
+ WebkitBoxAlign?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxAlign | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxAlign | undefined>;
780
+ WebkitBoxDirection?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxDirection | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxDirection | undefined>;
781
+ WebkitBoxFlex?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlex | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlex | undefined>;
782
+ WebkitBoxFlexGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxFlexGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxFlexGroup | undefined>;
783
+ WebkitBoxLines?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxLines | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxLines | undefined>;
784
+ WebkitBoxOrdinalGroup?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrdinalGroup | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrdinalGroup | undefined>;
785
+ WebkitBoxOrient?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxOrient | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxOrient | undefined>;
786
+ WebkitBoxPack?: import("../../../tasty/index").StyleValue<import("csstype").Property.BoxPack | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BoxPack | undefined>;
787
+ WebkitScrollSnapPointsX?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapPointsX | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapPointsX | undefined>;
788
+ WebkitScrollSnapPointsY?: import("../../../tasty/index").StyleValue<import("csstype").Property.ScrollSnapPointsY | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ScrollSnapPointsY | undefined>;
789
+ alignmentBaseline?: import("../../../tasty/index").StyleValue<import("csstype").Property.AlignmentBaseline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.AlignmentBaseline | undefined>;
790
+ baselineShift?: import("../../../tasty/index").StyleValue<import("csstype").Property.BaselineShift<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.BaselineShift<string | number> | undefined>;
791
+ clipRule?: import("../../../tasty/index").StyleValue<import("csstype").Property.ClipRule | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ClipRule | undefined>;
792
+ colorInterpolation?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColorInterpolation | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColorInterpolation | undefined>;
793
+ colorRendering?: import("../../../tasty/index").StyleValue<import("csstype").Property.ColorRendering | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ColorRendering | undefined>;
794
+ dominantBaseline?: import("../../../tasty/index").StyleValue<import("csstype").Property.DominantBaseline | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.DominantBaseline | undefined>;
795
+ fillOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.FillOpacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FillOpacity | undefined>;
796
+ fillRule?: import("../../../tasty/index").StyleValue<import("csstype").Property.FillRule | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FillRule | undefined>;
797
+ floodColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.FloodColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FloodColor | undefined>;
798
+ floodOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.FloodOpacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.FloodOpacity | undefined>;
799
+ glyphOrientationVertical?: import("../../../tasty/index").StyleValue<import("csstype").Property.GlyphOrientationVertical | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GlyphOrientationVertical | undefined>;
800
+ lightingColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.LightingColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.LightingColor | undefined>;
801
+ marker?: import("../../../tasty/index").StyleValue<import("csstype").Property.Marker | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Marker | undefined>;
802
+ markerEnd?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarkerEnd | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarkerEnd | undefined>;
803
+ markerMid?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarkerMid | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarkerMid | undefined>;
804
+ markerStart?: import("../../../tasty/index").StyleValue<import("csstype").Property.MarkerStart | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.MarkerStart | undefined>;
805
+ shapeRendering?: import("../../../tasty/index").StyleValue<import("csstype").Property.ShapeRendering | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.ShapeRendering | undefined>;
806
+ stopColor?: import("../../../tasty/index").StyleValue<import("csstype").Property.StopColor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StopColor | undefined>;
807
+ stopOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.StopOpacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StopOpacity | undefined>;
808
+ stroke?: import("../../../tasty/index").StyleValue<import("csstype").Property.Stroke | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.Stroke | undefined>;
809
+ strokeDasharray?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeDasharray<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeDasharray<string | number> | undefined>;
810
+ strokeDashoffset?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeDashoffset<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeDashoffset<string | number> | undefined>;
811
+ strokeLinecap?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeLinecap | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeLinecap | undefined>;
812
+ strokeLinejoin?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeLinejoin | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeLinejoin | undefined>;
813
+ strokeMiterlimit?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeMiterlimit | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeMiterlimit | undefined>;
814
+ strokeOpacity?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeOpacity | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeOpacity | undefined>;
815
+ strokeWidth?: import("../../../tasty/index").StyleValue<import("csstype").Property.StrokeWidth<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.StrokeWidth<string | number> | undefined>;
816
+ textAnchor?: import("../../../tasty/index").StyleValue<import("csstype").Property.TextAnchor | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.TextAnchor | undefined>;
817
+ vectorEffect?: import("../../../tasty/index").StyleValue<import("csstype").Property.VectorEffect | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.VectorEffect | undefined>;
818
+ svgFill?: import("../../../tasty/index").StyleValue<(string & {}) | "#border" | "#border.0" | "#border.1" | "#border.2" | "#border.3" | "#border.4" | "#border.5" | "#border.6" | "#border.7" | "#border.8" | "#border.9" | "#border.00" | "#border.01" | "#border.02" | "#border.03" | "#border.04" | "#border.05" | "#border.06" | "#border.07" | "#border.08" | "#border.09" | "#border.10" | "#border.11" | "#border.12" | "#border.13" | "#border.14" | "#border.15" | "#border.16" | "#border.17" | "#border.18" | "#border.19" | "#border.20" | "#border.21" | "#border.22" | "#border.23" | "#border.24" | "#border.25" | "#border.26" | "#border.27" | "#border.28" | "#border.29" | "#border.30" | "#border.31" | "#border.32" | "#border.33" | "#border.34" | "#border.35" | "#border.36" | "#border.37" | "#border.38" | "#border.39" | "#border.40" | "#border.41" | "#border.42" | "#border.43" | "#border.44" | "#border.45" | "#border.46" | "#border.47" | "#border.48" | "#border.49" | "#border.50" | "#border.51" | "#border.52" | "#border.53" | "#border.54" | "#border.55" | "#border.56" | "#border.57" | "#border.58" | "#border.59" | "#border.60" | "#border.61" | "#border.62" | "#border.63" | "#border.64" | "#border.65" | "#border.66" | "#border.67" | "#border.68" | "#border.69" | "#border.70" | "#border.71" | "#border.72" | "#border.73" | "#border.74" | "#border.75" | "#border.76" | "#border.77" | "#border.78" | "#border.79" | "#border.80" | "#border.81" | "#border.82" | "#border.83" | "#border.84" | "#border.85" | "#border.86" | "#border.87" | "#border.88" | "#border.89" | "#border.90" | "#border.91" | "#border.92" | "#border.93" | "#border.94" | "#border.95" | "#border.96" | "#border.97" | "#border.98" | "#border.99" | "#border.100" | "#clear" | "#clear.0" | "#clear.1" | "#clear.2" | "#clear.3" | "#clear.4" | "#clear.5" | "#clear.6" | "#clear.7" | "#clear.8" | "#clear.9" | "#clear.00" | "#clear.01" | "#clear.02" | "#clear.03" | "#clear.04" | "#clear.05" | "#clear.06" | "#clear.07" | "#clear.08" | "#clear.09" | "#clear.10" | "#clear.11" | "#clear.12" | "#clear.13" | "#clear.14" | "#clear.15" | "#clear.16" | "#clear.17" | "#clear.18" | "#clear.19" | "#clear.20" | "#clear.21" | "#clear.22" | "#clear.23" | "#clear.24" | "#clear.25" | "#clear.26" | "#clear.27" | "#clear.28" | "#clear.29" | "#clear.30" | "#clear.31" | "#clear.32" | "#clear.33" | "#clear.34" | "#clear.35" | "#clear.36" | "#clear.37" | "#clear.38" | "#clear.39" | "#clear.40" | "#clear.41" | "#clear.42" | "#clear.43" | "#clear.44" | "#clear.45" | "#clear.46" | "#clear.47" | "#clear.48" | "#clear.49" | "#clear.50" | "#clear.51" | "#clear.52" | "#clear.53" | "#clear.54" | "#clear.55" | "#clear.56" | "#clear.57" | "#clear.58" | "#clear.59" | "#clear.60" | "#clear.61" | "#clear.62" | "#clear.63" | "#clear.64" | "#clear.65" | "#clear.66" | "#clear.67" | "#clear.68" | "#clear.69" | "#clear.70" | "#clear.71" | "#clear.72" | "#clear.73" | "#clear.74" | "#clear.75" | "#clear.76" | "#clear.77" | "#clear.78" | "#clear.79" | "#clear.80" | "#clear.81" | "#clear.82" | "#clear.83" | "#clear.84" | "#clear.85" | "#clear.86" | "#clear.87" | "#clear.88" | "#clear.89" | "#clear.90" | "#clear.91" | "#clear.92" | "#clear.93" | "#clear.94" | "#clear.95" | "#clear.96" | "#clear.97" | "#clear.98" | "#clear.99" | "#clear.100" | "#shadow" | "#shadow.0" | "#shadow.1" | "#shadow.2" | "#shadow.3" | "#shadow.4" | "#shadow.5" | "#shadow.6" | "#shadow.7" | "#shadow.8" | "#shadow.9" | "#shadow.00" | "#shadow.01" | "#shadow.02" | "#shadow.03" | "#shadow.04" | "#shadow.05" | "#shadow.06" | "#shadow.07" | "#shadow.08" | "#shadow.09" | "#shadow.10" | "#shadow.11" | "#shadow.12" | "#shadow.13" | "#shadow.14" | "#shadow.15" | "#shadow.16" | "#shadow.17" | "#shadow.18" | "#shadow.19" | "#shadow.20" | "#shadow.21" | "#shadow.22" | "#shadow.23" | "#shadow.24" | "#shadow.25" | "#shadow.26" | "#shadow.27" | "#shadow.28" | "#shadow.29" | "#shadow.30" | "#shadow.31" | "#shadow.32" | "#shadow.33" | "#shadow.34" | "#shadow.35" | "#shadow.36" | "#shadow.37" | "#shadow.38" | "#shadow.39" | "#shadow.40" | "#shadow.41" | "#shadow.42" | "#shadow.43" | "#shadow.44" | "#shadow.45" | "#shadow.46" | "#shadow.47" | "#shadow.48" | "#shadow.49" | "#shadow.50" | "#shadow.51" | "#shadow.52" | "#shadow.53" | "#shadow.54" | "#shadow.55" | "#shadow.56" | "#shadow.57" | "#shadow.58" | "#shadow.59" | "#shadow.60" | "#shadow.61" | "#shadow.62" | "#shadow.63" | "#shadow.64" | "#shadow.65" | "#shadow.66" | "#shadow.67" | "#shadow.68" | "#shadow.69" | "#shadow.70" | "#shadow.71" | "#shadow.72" | "#shadow.73" | "#shadow.74" | "#shadow.75" | "#shadow.76" | "#shadow.77" | "#shadow.78" | "#shadow.79" | "#shadow.80" | "#shadow.81" | "#shadow.82" | "#shadow.83" | "#shadow.84" | "#shadow.85" | "#shadow.86" | "#shadow.87" | "#shadow.88" | "#shadow.89" | "#shadow.90" | "#shadow.91" | "#shadow.92" | "#shadow.93" | "#shadow.94" | "#shadow.95" | "#shadow.96" | "#shadow.97" | "#shadow.98" | "#shadow.99" | "#shadow.100" | "#purple" | "#purple.0" | "#purple.1" | "#purple.2" | "#purple.3" | "#purple.4" | "#purple.5" | "#purple.6" | "#purple.7" | "#purple.8" | "#purple.9" | "#purple.00" | "#purple.01" | "#purple.02" | "#purple.03" | "#purple.04" | "#purple.05" | "#purple.06" | "#purple.07" | "#purple.08" | "#purple.09" | "#purple.10" | "#purple.11" | "#purple.12" | "#purple.13" | "#purple.14" | "#purple.15" | "#purple.16" | "#purple.17" | "#purple.18" | "#purple.19" | "#purple.20" | "#purple.21" | "#purple.22" | "#purple.23" | "#purple.24" | "#purple.25" | "#purple.26" | "#purple.27" | "#purple.28" | "#purple.29" | "#purple.30" | "#purple.31" | "#purple.32" | "#purple.33" | "#purple.34" | "#purple.35" | "#purple.36" | "#purple.37" | "#purple.38" | "#purple.39" | "#purple.40" | "#purple.41" | "#purple.42" | "#purple.43" | "#purple.44" | "#purple.45" | "#purple.46" | "#purple.47" | "#purple.48" | "#purple.49" | "#purple.50" | "#purple.51" | "#purple.52" | "#purple.53" | "#purple.54" | "#purple.55" | "#purple.56" | "#purple.57" | "#purple.58" | "#purple.59" | "#purple.60" | "#purple.61" | "#purple.62" | "#purple.63" | "#purple.64" | "#purple.65" | "#purple.66" | "#purple.67" | "#purple.68" | "#purple.69" | "#purple.70" | "#purple.71" | "#purple.72" | "#purple.73" | "#purple.74" | "#purple.75" | "#purple.76" | "#purple.77" | "#purple.78" | "#purple.79" | "#purple.80" | "#purple.81" | "#purple.82" | "#purple.83" | "#purple.84" | "#purple.85" | "#purple.86" | "#purple.87" | "#purple.88" | "#purple.89" | "#purple.90" | "#purple.91" | "#purple.92" | "#purple.93" | "#purple.94" | "#purple.95" | "#purple.96" | "#purple.97" | "#purple.98" | "#purple.99" | "#purple.100" | "#purple-text" | "#purple-text.0" | "#purple-text.1" | "#purple-text.2" | "#purple-text.3" | "#purple-text.4" | "#purple-text.5" | "#purple-text.6" | "#purple-text.7" | "#purple-text.8" | "#purple-text.9" | "#purple-text.00" | "#purple-text.01" | "#purple-text.02" | "#purple-text.03" | "#purple-text.04" | "#purple-text.05" | "#purple-text.06" | "#purple-text.07" | "#purple-text.08" | "#purple-text.09" | "#purple-text.10" | "#purple-text.11" | "#purple-text.12" | "#purple-text.13" | "#purple-text.14" | "#purple-text.15" | "#purple-text.16" | "#purple-text.17" | "#purple-text.18" | "#purple-text.19" | "#purple-text.20" | "#purple-text.21" | "#purple-text.22" | "#purple-text.23" | "#purple-text.24" | "#purple-text.25" | "#purple-text.26" | "#purple-text.27" | "#purple-text.28" | "#purple-text.29" | "#purple-text.30" | "#purple-text.31" | "#purple-text.32" | "#purple-text.33" | "#purple-text.34" | "#purple-text.35" | "#purple-text.36" | "#purple-text.37" | "#purple-text.38" | "#purple-text.39" | "#purple-text.40" | "#purple-text.41" | "#purple-text.42" | "#purple-text.43" | "#purple-text.44" | "#purple-text.45" | "#purple-text.46" | "#purple-text.47" | "#purple-text.48" | "#purple-text.49" | "#purple-text.50" | "#purple-text.51" | "#purple-text.52" | "#purple-text.53" | "#purple-text.54" | "#purple-text.55" | "#purple-text.56" | "#purple-text.57" | "#purple-text.58" | "#purple-text.59" | "#purple-text.60" | "#purple-text.61" | "#purple-text.62" | "#purple-text.63" | "#purple-text.64" | "#purple-text.65" | "#purple-text.66" | "#purple-text.67" | "#purple-text.68" | "#purple-text.69" | "#purple-text.70" | "#purple-text.71" | "#purple-text.72" | "#purple-text.73" | "#purple-text.74" | "#purple-text.75" | "#purple-text.76" | "#purple-text.77" | "#purple-text.78" | "#purple-text.79" | "#purple-text.80" | "#purple-text.81" | "#purple-text.82" | "#purple-text.83" | "#purple-text.84" | "#purple-text.85" | "#purple-text.86" | "#purple-text.87" | "#purple-text.88" | "#purple-text.89" | "#purple-text.90" | "#purple-text.91" | "#purple-text.92" | "#purple-text.93" | "#purple-text.94" | "#purple-text.95" | "#purple-text.96" | "#purple-text.97" | "#purple-text.98" | "#purple-text.99" | "#purple-text.100" | "#purple-icon" | "#purple-icon.0" | "#purple-icon.1" | "#purple-icon.2" | "#purple-icon.3" | "#purple-icon.4" | "#purple-icon.5" | "#purple-icon.6" | "#purple-icon.7" | "#purple-icon.8" | "#purple-icon.9" | "#purple-icon.00" | "#purple-icon.01" | "#purple-icon.02" | "#purple-icon.03" | "#purple-icon.04" | "#purple-icon.05" | "#purple-icon.06" | "#purple-icon.07" | "#purple-icon.08" | "#purple-icon.09" | "#purple-icon.10" | "#purple-icon.11" | "#purple-icon.12" | "#purple-icon.13" | "#purple-icon.14" | "#purple-icon.15" | "#purple-icon.16" | "#purple-icon.17" | "#purple-icon.18" | "#purple-icon.19" | "#purple-icon.20" | "#purple-icon.21" | "#purple-icon.22" | "#purple-icon.23" | "#purple-icon.24" | "#purple-icon.25" | "#purple-icon.26" | "#purple-icon.27" | "#purple-icon.28" | "#purple-icon.29" | "#purple-icon.30" | "#purple-icon.31" | "#purple-icon.32" | "#purple-icon.33" | "#purple-icon.34" | "#purple-icon.35" | "#purple-icon.36" | "#purple-icon.37" | "#purple-icon.38" | "#purple-icon.39" | "#purple-icon.40" | "#purple-icon.41" | "#purple-icon.42" | "#purple-icon.43" | "#purple-icon.44" | "#purple-icon.45" | "#purple-icon.46" | "#purple-icon.47" | "#purple-icon.48" | "#purple-icon.49" | "#purple-icon.50" | "#purple-icon.51" | "#purple-icon.52" | "#purple-icon.53" | "#purple-icon.54" | "#purple-icon.55" | "#purple-icon.56" | "#purple-icon.57" | "#purple-icon.58" | "#purple-icon.59" | "#purple-icon.60" | "#purple-icon.61" | "#purple-icon.62" | "#purple-icon.63" | "#purple-icon.64" | "#purple-icon.65" | "#purple-icon.66" | "#purple-icon.67" | "#purple-icon.68" | "#purple-icon.69" | "#purple-icon.70" | "#purple-icon.71" | "#purple-icon.72" | "#purple-icon.73" | "#purple-icon.74" | "#purple-icon.75" | "#purple-icon.76" | "#purple-icon.77" | "#purple-icon.78" | "#purple-icon.79" | "#purple-icon.80" | "#purple-icon.81" | "#purple-icon.82" | "#purple-icon.83" | "#purple-icon.84" | "#purple-icon.85" | "#purple-icon.86" | "#purple-icon.87" | "#purple-icon.88" | "#purple-icon.89" | "#purple-icon.90" | "#purple-icon.91" | "#purple-icon.92" | "#purple-icon.93" | "#purple-icon.94" | "#purple-icon.95" | "#purple-icon.96" | "#purple-icon.97" | "#purple-icon.98" | "#purple-icon.99" | "#purple-icon.100" | "#purple-bg" | "#purple-bg.0" | "#purple-bg.1" | "#purple-bg.2" | "#purple-bg.3" | "#purple-bg.4" | "#purple-bg.5" | "#purple-bg.6" | "#purple-bg.7" | "#purple-bg.8" | "#purple-bg.9" | "#purple-bg.00" | "#purple-bg.01" | "#purple-bg.02" | "#purple-bg.03" | "#purple-bg.04" | "#purple-bg.05" | "#purple-bg.06" | "#purple-bg.07" | "#purple-bg.08" | "#purple-bg.09" | "#purple-bg.10" | "#purple-bg.11" | "#purple-bg.12" | "#purple-bg.13" | "#purple-bg.14" | "#purple-bg.15" | "#purple-bg.16" | "#purple-bg.17" | "#purple-bg.18" | "#purple-bg.19" | "#purple-bg.20" | "#purple-bg.21" | "#purple-bg.22" | "#purple-bg.23" | "#purple-bg.24" | "#purple-bg.25" | "#purple-bg.26" | "#purple-bg.27" | "#purple-bg.28" | "#purple-bg.29" | "#purple-bg.30" | "#purple-bg.31" | "#purple-bg.32" | "#purple-bg.33" | "#purple-bg.34" | "#purple-bg.35" | "#purple-bg.36" | "#purple-bg.37" | "#purple-bg.38" | "#purple-bg.39" | "#purple-bg.40" | "#purple-bg.41" | "#purple-bg.42" | "#purple-bg.43" | "#purple-bg.44" | "#purple-bg.45" | "#purple-bg.46" | "#purple-bg.47" | "#purple-bg.48" | "#purple-bg.49" | "#purple-bg.50" | "#purple-bg.51" | "#purple-bg.52" | "#purple-bg.53" | "#purple-bg.54" | "#purple-bg.55" | "#purple-bg.56" | "#purple-bg.57" | "#purple-bg.58" | "#purple-bg.59" | "#purple-bg.60" | "#purple-bg.61" | "#purple-bg.62" | "#purple-bg.63" | "#purple-bg.64" | "#purple-bg.65" | "#purple-bg.66" | "#purple-bg.67" | "#purple-bg.68" | "#purple-bg.69" | "#purple-bg.70" | "#purple-bg.71" | "#purple-bg.72" | "#purple-bg.73" | "#purple-bg.74" | "#purple-bg.75" | "#purple-bg.76" | "#purple-bg.77" | "#purple-bg.78" | "#purple-bg.79" | "#purple-bg.80" | "#purple-bg.81" | "#purple-bg.82" | "#purple-bg.83" | "#purple-bg.84" | "#purple-bg.85" | "#purple-bg.86" | "#purple-bg.87" | "#purple-bg.88" | "#purple-bg.89" | "#purple-bg.90" | "#purple-bg.91" | "#purple-bg.92" | "#purple-bg.93" | "#purple-bg.94" | "#purple-bg.95" | "#purple-bg.96" | "#purple-bg.97" | "#purple-bg.98" | "#purple-bg.99" | "#purple-bg.100" | "#purple-01" | "#purple-01.0" | "#purple-01.1" | "#purple-01.2" | "#purple-01.3" | "#purple-01.4" | "#purple-01.5" | "#purple-01.6" | "#purple-01.7" | "#purple-01.8" | "#purple-01.9" | "#purple-01.00" | "#purple-01.01" | "#purple-01.02" | "#purple-01.03" | "#purple-01.04" | "#purple-01.05" | "#purple-01.06" | "#purple-01.07" | "#purple-01.08" | "#purple-01.09" | "#purple-01.10" | "#purple-01.11" | "#purple-01.12" | "#purple-01.13" | "#purple-01.14" | "#purple-01.15" | "#purple-01.16" | "#purple-01.17" | "#purple-01.18" | "#purple-01.19" | "#purple-01.20" | "#purple-01.21" | "#purple-01.22" | "#purple-01.23" | "#purple-01.24" | "#purple-01.25" | "#purple-01.26" | "#purple-01.27" | "#purple-01.28" | "#purple-01.29" | "#purple-01.30" | "#purple-01.31" | "#purple-01.32" | "#purple-01.33" | "#purple-01.34" | "#purple-01.35" | "#purple-01.36" | "#purple-01.37" | "#purple-01.38" | "#purple-01.39" | "#purple-01.40" | "#purple-01.41" | "#purple-01.42" | "#purple-01.43" | "#purple-01.44" | "#purple-01.45" | "#purple-01.46" | "#purple-01.47" | "#purple-01.48" | "#purple-01.49" | "#purple-01.50" | "#purple-01.51" | "#purple-01.52" | "#purple-01.53" | "#purple-01.54" | "#purple-01.55" | "#purple-01.56" | "#purple-01.57" | "#purple-01.58" | "#purple-01.59" | "#purple-01.60" | "#purple-01.61" | "#purple-01.62" | "#purple-01.63" | "#purple-01.64" | "#purple-01.65" | "#purple-01.66" | "#purple-01.67" | "#purple-01.68" | "#purple-01.69" | "#purple-01.70" | "#purple-01.71" | "#purple-01.72" | "#purple-01.73" | "#purple-01.74" | "#purple-01.75" | "#purple-01.76" | "#purple-01.77" | "#purple-01.78" | "#purple-01.79" | "#purple-01.80" | "#purple-01.81" | "#purple-01.82" | "#purple-01.83" | "#purple-01.84" | "#purple-01.85" | "#purple-01.86" | "#purple-01.87" | "#purple-01.88" | "#purple-01.89" | "#purple-01.90" | "#purple-01.91" | "#purple-01.92" | "#purple-01.93" | "#purple-01.94" | "#purple-01.95" | "#purple-01.96" | "#purple-01.97" | "#purple-01.98" | "#purple-01.99" | "#purple-01.100" | "#purple-02" | "#purple-02.0" | "#purple-02.1" | "#purple-02.2" | "#purple-02.3" | "#purple-02.4" | "#purple-02.5" | "#purple-02.6" | "#purple-02.7" | "#purple-02.8" | "#purple-02.9" | "#purple-02.00" | "#purple-02.01" | "#purple-02.02" | "#purple-02.03" | "#purple-02.04" | "#purple-02.05" | "#purple-02.06" | "#purple-02.07" | "#purple-02.08" | "#purple-02.09" | "#purple-02.10" | "#purple-02.11" | "#purple-02.12" | "#purple-02.13" | "#purple-02.14" | "#purple-02.15" | "#purple-02.16" | "#purple-02.17" | "#purple-02.18" | "#purple-02.19" | "#purple-02.20" | "#purple-02.21" | "#purple-02.22" | "#purple-02.23" | "#purple-02.24" | "#purple-02.25" | "#purple-02.26" | "#purple-02.27" | "#purple-02.28" | "#purple-02.29" | "#purple-02.30" | "#purple-02.31" | "#purple-02.32" | "#purple-02.33" | "#purple-02.34" | "#purple-02.35" | "#purple-02.36" | "#purple-02.37" | "#purple-02.38" | "#purple-02.39" | "#purple-02.40" | "#purple-02.41" | "#purple-02.42" | "#purple-02.43" | "#purple-02.44" | "#purple-02.45" | "#purple-02.46" | "#purple-02.47" | "#purple-02.48" | "#purple-02.49" | "#purple-02.50" | "#purple-02.51" | "#purple-02.52" | "#purple-02.53" | "#purple-02.54" | "#purple-02.55" | "#purple-02.56" | "#purple-02.57" | "#purple-02.58" | "#purple-02.59" | "#purple-02.60" | "#purple-02.61" | "#purple-02.62" | "#purple-02.63" | "#purple-02.64" | "#purple-02.65" | "#purple-02.66" | "#purple-02.67" | "#purple-02.68" | "#purple-02.69" | "#purple-02.70" | "#purple-02.71" | "#purple-02.72" | "#purple-02.73" | "#purple-02.74" | "#purple-02.75" | "#purple-02.76" | "#purple-02.77" | "#purple-02.78" | "#purple-02.79" | "#purple-02.80" | "#purple-02.81" | "#purple-02.82" | "#purple-02.83" | "#purple-02.84" | "#purple-02.85" | "#purple-02.86" | "#purple-02.87" | "#purple-02.88" | "#purple-02.89" | "#purple-02.90" | "#purple-02.91" | "#purple-02.92" | "#purple-02.93" | "#purple-02.94" | "#purple-02.95" | "#purple-02.96" | "#purple-02.97" | "#purple-02.98" | "#purple-02.99" | "#purple-02.100" | "#purple-03" | "#purple-03.0" | "#purple-03.1" | "#purple-03.2" | "#purple-03.3" | "#purple-03.4" | "#purple-03.5" | "#purple-03.6" | "#purple-03.7" | "#purple-03.8" | "#purple-03.9" | "#purple-03.00" | "#purple-03.01" | "#purple-03.02" | "#purple-03.03" | "#purple-03.04" | "#purple-03.05" | "#purple-03.06" | "#purple-03.07" | "#purple-03.08" | "#purple-03.09" | "#purple-03.10" | "#purple-03.11" | "#purple-03.12" | "#purple-03.13" | "#purple-03.14" | "#purple-03.15" | "#purple-03.16" | "#purple-03.17" | "#purple-03.18" | "#purple-03.19" | "#purple-03.20" | "#purple-03.21" | "#purple-03.22" | "#purple-03.23" | "#purple-03.24" | "#purple-03.25" | "#purple-03.26" | "#purple-03.27" | "#purple-03.28" | "#purple-03.29" | "#purple-03.30" | "#purple-03.31" | "#purple-03.32" | "#purple-03.33" | "#purple-03.34" | "#purple-03.35" | "#purple-03.36" | "#purple-03.37" | "#purple-03.38" | "#purple-03.39" | "#purple-03.40" | "#purple-03.41" | "#purple-03.42" | "#purple-03.43" | "#purple-03.44" | "#purple-03.45" | "#purple-03.46" | "#purple-03.47" | "#purple-03.48" | "#purple-03.49" | "#purple-03.50" | "#purple-03.51" | "#purple-03.52" | "#purple-03.53" | "#purple-03.54" | "#purple-03.55" | "#purple-03.56" | "#purple-03.57" | "#purple-03.58" | "#purple-03.59" | "#purple-03.60" | "#purple-03.61" | "#purple-03.62" | "#purple-03.63" | "#purple-03.64" | "#purple-03.65" | "#purple-03.66" | "#purple-03.67" | "#purple-03.68" | "#purple-03.69" | "#purple-03.70" | "#purple-03.71" | "#purple-03.72" | "#purple-03.73" | "#purple-03.74" | "#purple-03.75" | "#purple-03.76" | "#purple-03.77" | "#purple-03.78" | "#purple-03.79" | "#purple-03.80" | "#purple-03.81" | "#purple-03.82" | "#purple-03.83" | "#purple-03.84" | "#purple-03.85" | "#purple-03.86" | "#purple-03.87" | "#purple-03.88" | "#purple-03.89" | "#purple-03.90" | "#purple-03.91" | "#purple-03.92" | "#purple-03.93" | "#purple-03.94" | "#purple-03.95" | "#purple-03.96" | "#purple-03.97" | "#purple-03.98" | "#purple-03.99" | "#purple-03.100" | "#purple-04" | "#purple-04.0" | "#purple-04.1" | "#purple-04.2" | "#purple-04.3" | "#purple-04.4" | "#purple-04.5" | "#purple-04.6" | "#purple-04.7" | "#purple-04.8" | "#purple-04.9" | "#purple-04.00" | "#purple-04.01" | "#purple-04.02" | "#purple-04.03" | "#purple-04.04" | "#purple-04.05" | "#purple-04.06" | "#purple-04.07" | "#purple-04.08" | "#purple-04.09" | "#purple-04.10" | "#purple-04.11" | "#purple-04.12" | "#purple-04.13" | "#purple-04.14" | "#purple-04.15" | "#purple-04.16" | "#purple-04.17" | "#purple-04.18" | "#purple-04.19" | "#purple-04.20" | "#purple-04.21" | "#purple-04.22" | "#purple-04.23" | "#purple-04.24" | "#purple-04.25" | "#purple-04.26" | "#purple-04.27" | "#purple-04.28" | "#purple-04.29" | "#purple-04.30" | "#purple-04.31" | "#purple-04.32" | "#purple-04.33" | "#purple-04.34" | "#purple-04.35" | "#purple-04.36" | "#purple-04.37" | "#purple-04.38" | "#purple-04.39" | "#purple-04.40" | "#purple-04.41" | "#purple-04.42" | "#purple-04.43" | "#purple-04.44" | "#purple-04.45" | "#purple-04.46" | "#purple-04.47" | "#purple-04.48" | "#purple-04.49" | "#purple-04.50" | "#purple-04.51" | "#purple-04.52" | "#purple-04.53" | "#purple-04.54" | "#purple-04.55" | "#purple-04.56" | "#purple-04.57" | "#purple-04.58" | "#purple-04.59" | "#purple-04.60" | "#purple-04.61" | "#purple-04.62" | "#purple-04.63" | "#purple-04.64" | "#purple-04.65" | "#purple-04.66" | "#purple-04.67" | "#purple-04.68" | "#purple-04.69" | "#purple-04.70" | "#purple-04.71" | "#purple-04.72" | "#purple-04.73" | "#purple-04.74" | "#purple-04.75" | "#purple-04.76" | "#purple-04.77" | "#purple-04.78" | "#purple-04.79" | "#purple-04.80" | "#purple-04.81" | "#purple-04.82" | "#purple-04.83" | "#purple-04.84" | "#purple-04.85" | "#purple-04.86" | "#purple-04.87" | "#purple-04.88" | "#purple-04.89" | "#purple-04.90" | "#purple-04.91" | "#purple-04.92" | "#purple-04.93" | "#purple-04.94" | "#purple-04.95" | "#purple-04.96" | "#purple-04.97" | "#purple-04.98" | "#purple-04.99" | "#purple-04.100" | "#dark" | "#dark.0" | "#dark.1" | "#dark.2" | "#dark.3" | "#dark.4" | "#dark.5" | "#dark.6" | "#dark.7" | "#dark.8" | "#dark.9" | "#dark.00" | "#dark.01" | "#dark.02" | "#dark.03" | "#dark.04" | "#dark.05" | "#dark.06" | "#dark.07" | "#dark.08" | "#dark.09" | "#dark.10" | "#dark.11" | "#dark.12" | "#dark.13" | "#dark.14" | "#dark.15" | "#dark.16" | "#dark.17" | "#dark.18" | "#dark.19" | "#dark.20" | "#dark.21" | "#dark.22" | "#dark.23" | "#dark.24" | "#dark.25" | "#dark.26" | "#dark.27" | "#dark.28" | "#dark.29" | "#dark.30" | "#dark.31" | "#dark.32" | "#dark.33" | "#dark.34" | "#dark.35" | "#dark.36" | "#dark.37" | "#dark.38" | "#dark.39" | "#dark.40" | "#dark.41" | "#dark.42" | "#dark.43" | "#dark.44" | "#dark.45" | "#dark.46" | "#dark.47" | "#dark.48" | "#dark.49" | "#dark.50" | "#dark.51" | "#dark.52" | "#dark.53" | "#dark.54" | "#dark.55" | "#dark.56" | "#dark.57" | "#dark.58" | "#dark.59" | "#dark.60" | "#dark.61" | "#dark.62" | "#dark.63" | "#dark.64" | "#dark.65" | "#dark.66" | "#dark.67" | "#dark.68" | "#dark.69" | "#dark.70" | "#dark.71" | "#dark.72" | "#dark.73" | "#dark.74" | "#dark.75" | "#dark.76" | "#dark.77" | "#dark.78" | "#dark.79" | "#dark.80" | "#dark.81" | "#dark.82" | "#dark.83" | "#dark.84" | "#dark.85" | "#dark.86" | "#dark.87" | "#dark.88" | "#dark.89" | "#dark.90" | "#dark.91" | "#dark.92" | "#dark.93" | "#dark.94" | "#dark.95" | "#dark.96" | "#dark.97" | "#dark.98" | "#dark.99" | "#dark.100" | "#dark-01" | "#dark-01.0" | "#dark-01.1" | "#dark-01.2" | "#dark-01.3" | "#dark-01.4" | "#dark-01.5" | "#dark-01.6" | "#dark-01.7" | "#dark-01.8" | "#dark-01.9" | "#dark-01.00" | "#dark-01.01" | "#dark-01.02" | "#dark-01.03" | "#dark-01.04" | "#dark-01.05" | "#dark-01.06" | "#dark-01.07" | "#dark-01.08" | "#dark-01.09" | "#dark-01.10" | "#dark-01.11" | "#dark-01.12" | "#dark-01.13" | "#dark-01.14" | "#dark-01.15" | "#dark-01.16" | "#dark-01.17" | "#dark-01.18" | "#dark-01.19" | "#dark-01.20" | "#dark-01.21" | "#dark-01.22" | "#dark-01.23" | "#dark-01.24" | "#dark-01.25" | "#dark-01.26" | "#dark-01.27" | "#dark-01.28" | "#dark-01.29" | "#dark-01.30" | "#dark-01.31" | "#dark-01.32" | "#dark-01.33" | "#dark-01.34" | "#dark-01.35" | "#dark-01.36" | "#dark-01.37" | "#dark-01.38" | "#dark-01.39" | "#dark-01.40" | "#dark-01.41" | "#dark-01.42" | "#dark-01.43" | "#dark-01.44" | "#dark-01.45" | "#dark-01.46" | "#dark-01.47" | "#dark-01.48" | "#dark-01.49" | "#dark-01.50" | "#dark-01.51" | "#dark-01.52" | "#dark-01.53" | "#dark-01.54" | "#dark-01.55" | "#dark-01.56" | "#dark-01.57" | "#dark-01.58" | "#dark-01.59" | "#dark-01.60" | "#dark-01.61" | "#dark-01.62" | "#dark-01.63" | "#dark-01.64" | "#dark-01.65" | "#dark-01.66" | "#dark-01.67" | "#dark-01.68" | "#dark-01.69" | "#dark-01.70" | "#dark-01.71" | "#dark-01.72" | "#dark-01.73" | "#dark-01.74" | "#dark-01.75" | "#dark-01.76" | "#dark-01.77" | "#dark-01.78" | "#dark-01.79" | "#dark-01.80" | "#dark-01.81" | "#dark-01.82" | "#dark-01.83" | "#dark-01.84" | "#dark-01.85" | "#dark-01.86" | "#dark-01.87" | "#dark-01.88" | "#dark-01.89" | "#dark-01.90" | "#dark-01.91" | "#dark-01.92" | "#dark-01.93" | "#dark-01.94" | "#dark-01.95" | "#dark-01.96" | "#dark-01.97" | "#dark-01.98" | "#dark-01.99" | "#dark-01.100" | "#dark-02" | "#dark-02.0" | "#dark-02.1" | "#dark-02.2" | "#dark-02.3" | "#dark-02.4" | "#dark-02.5" | "#dark-02.6" | "#dark-02.7" | "#dark-02.8" | "#dark-02.9" | "#dark-02.00" | "#dark-02.01" | "#dark-02.02" | "#dark-02.03" | "#dark-02.04" | "#dark-02.05" | "#dark-02.06" | "#dark-02.07" | "#dark-02.08" | "#dark-02.09" | "#dark-02.10" | "#dark-02.11" | "#dark-02.12" | "#dark-02.13" | "#dark-02.14" | "#dark-02.15" | "#dark-02.16" | "#dark-02.17" | "#dark-02.18" | "#dark-02.19" | "#dark-02.20" | "#dark-02.21" | "#dark-02.22" | "#dark-02.23" | "#dark-02.24" | "#dark-02.25" | "#dark-02.26" | "#dark-02.27" | "#dark-02.28" | "#dark-02.29" | "#dark-02.30" | "#dark-02.31" | "#dark-02.32" | "#dark-02.33" | "#dark-02.34" | "#dark-02.35" | "#dark-02.36" | "#dark-02.37" | "#dark-02.38" | "#dark-02.39" | "#dark-02.40" | "#dark-02.41" | "#dark-02.42" | "#dark-02.43" | "#dark-02.44" | "#dark-02.45" | "#dark-02.46" | "#dark-02.47" | "#dark-02.48" | "#dark-02.49" | "#dark-02.50" | "#dark-02.51" | "#dark-02.52" | "#dark-02.53" | "#dark-02.54" | "#dark-02.55" | "#dark-02.56" | "#dark-02.57" | "#dark-02.58" | "#dark-02.59" | "#dark-02.60" | "#dark-02.61" | "#dark-02.62" | "#dark-02.63" | "#dark-02.64" | "#dark-02.65" | "#dark-02.66" | "#dark-02.67" | "#dark-02.68" | "#dark-02.69" | "#dark-02.70" | "#dark-02.71" | "#dark-02.72" | "#dark-02.73" | "#dark-02.74" | "#dark-02.75" | "#dark-02.76" | "#dark-02.77" | "#dark-02.78" | "#dark-02.79" | "#dark-02.80" | "#dark-02.81" | "#dark-02.82" | "#dark-02.83" | "#dark-02.84" | "#dark-02.85" | "#dark-02.86" | "#dark-02.87" | "#dark-02.88" | "#dark-02.89" | "#dark-02.90" | "#dark-02.91" | "#dark-02.92" | "#dark-02.93" | "#dark-02.94" | "#dark-02.95" | "#dark-02.96" | "#dark-02.97" | "#dark-02.98" | "#dark-02.99" | "#dark-02.100" | "#dark-03" | "#dark-03.0" | "#dark-03.1" | "#dark-03.2" | "#dark-03.3" | "#dark-03.4" | "#dark-03.5" | "#dark-03.6" | "#dark-03.7" | "#dark-03.8" | "#dark-03.9" | "#dark-03.00" | "#dark-03.01" | "#dark-03.02" | "#dark-03.03" | "#dark-03.04" | "#dark-03.05" | "#dark-03.06" | "#dark-03.07" | "#dark-03.08" | "#dark-03.09" | "#dark-03.10" | "#dark-03.11" | "#dark-03.12" | "#dark-03.13" | "#dark-03.14" | "#dark-03.15" | "#dark-03.16" | "#dark-03.17" | "#dark-03.18" | "#dark-03.19" | "#dark-03.20" | "#dark-03.21" | "#dark-03.22" | "#dark-03.23" | "#dark-03.24" | "#dark-03.25" | "#dark-03.26" | "#dark-03.27" | "#dark-03.28" | "#dark-03.29" | "#dark-03.30" | "#dark-03.31" | "#dark-03.32" | "#dark-03.33" | "#dark-03.34" | "#dark-03.35" | "#dark-03.36" | "#dark-03.37" | "#dark-03.38" | "#dark-03.39" | "#dark-03.40" | "#dark-03.41" | "#dark-03.42" | "#dark-03.43" | "#dark-03.44" | "#dark-03.45" | "#dark-03.46" | "#dark-03.47" | "#dark-03.48" | "#dark-03.49" | "#dark-03.50" | "#dark-03.51" | "#dark-03.52" | "#dark-03.53" | "#dark-03.54" | "#dark-03.55" | "#dark-03.56" | "#dark-03.57" | "#dark-03.58" | "#dark-03.59" | "#dark-03.60" | "#dark-03.61" | "#dark-03.62" | "#dark-03.63" | "#dark-03.64" | "#dark-03.65" | "#dark-03.66" | "#dark-03.67" | "#dark-03.68" | "#dark-03.69" | "#dark-03.70" | "#dark-03.71" | "#dark-03.72" | "#dark-03.73" | "#dark-03.74" | "#dark-03.75" | "#dark-03.76" | "#dark-03.77" | "#dark-03.78" | "#dark-03.79" | "#dark-03.80" | "#dark-03.81" | "#dark-03.82" | "#dark-03.83" | "#dark-03.84" | "#dark-03.85" | "#dark-03.86" | "#dark-03.87" | "#dark-03.88" | "#dark-03.89" | "#dark-03.90" | "#dark-03.91" | "#dark-03.92" | "#dark-03.93" | "#dark-03.94" | "#dark-03.95" | "#dark-03.96" | "#dark-03.97" | "#dark-03.98" | "#dark-03.99" | "#dark-03.100" | "#dark-04" | "#dark-04.0" | "#dark-04.1" | "#dark-04.2" | "#dark-04.3" | "#dark-04.4" | "#dark-04.5" | "#dark-04.6" | "#dark-04.7" | "#dark-04.8" | "#dark-04.9" | "#dark-04.00" | "#dark-04.01" | "#dark-04.02" | "#dark-04.03" | "#dark-04.04" | "#dark-04.05" | "#dark-04.06" | "#dark-04.07" | "#dark-04.08" | "#dark-04.09" | "#dark-04.10" | "#dark-04.11" | "#dark-04.12" | "#dark-04.13" | "#dark-04.14" | "#dark-04.15" | "#dark-04.16" | "#dark-04.17" | "#dark-04.18" | "#dark-04.19" | "#dark-04.20" | "#dark-04.21" | "#dark-04.22" | "#dark-04.23" | "#dark-04.24" | "#dark-04.25" | "#dark-04.26" | "#dark-04.27" | "#dark-04.28" | "#dark-04.29" | "#dark-04.30" | "#dark-04.31" | "#dark-04.32" | "#dark-04.33" | "#dark-04.34" | "#dark-04.35" | "#dark-04.36" | "#dark-04.37" | "#dark-04.38" | "#dark-04.39" | "#dark-04.40" | "#dark-04.41" | "#dark-04.42" | "#dark-04.43" | "#dark-04.44" | "#dark-04.45" | "#dark-04.46" | "#dark-04.47" | "#dark-04.48" | "#dark-04.49" | "#dark-04.50" | "#dark-04.51" | "#dark-04.52" | "#dark-04.53" | "#dark-04.54" | "#dark-04.55" | "#dark-04.56" | "#dark-04.57" | "#dark-04.58" | "#dark-04.59" | "#dark-04.60" | "#dark-04.61" | "#dark-04.62" | "#dark-04.63" | "#dark-04.64" | "#dark-04.65" | "#dark-04.66" | "#dark-04.67" | "#dark-04.68" | "#dark-04.69" | "#dark-04.70" | "#dark-04.71" | "#dark-04.72" | "#dark-04.73" | "#dark-04.74" | "#dark-04.75" | "#dark-04.76" | "#dark-04.77" | "#dark-04.78" | "#dark-04.79" | "#dark-04.80" | "#dark-04.81" | "#dark-04.82" | "#dark-04.83" | "#dark-04.84" | "#dark-04.85" | "#dark-04.86" | "#dark-04.87" | "#dark-04.88" | "#dark-04.89" | "#dark-04.90" | "#dark-04.91" | "#dark-04.92" | "#dark-04.93" | "#dark-04.94" | "#dark-04.95" | "#dark-04.96" | "#dark-04.97" | "#dark-04.98" | "#dark-04.99" | "#dark-04.100" | "#dark-05" | "#dark-05.0" | "#dark-05.1" | "#dark-05.2" | "#dark-05.3" | "#dark-05.4" | "#dark-05.5" | "#dark-05.6" | "#dark-05.7" | "#dark-05.8" | "#dark-05.9" | "#dark-05.00" | "#dark-05.01" | "#dark-05.02" | "#dark-05.03" | "#dark-05.04" | "#dark-05.05" | "#dark-05.06" | "#dark-05.07" | "#dark-05.08" | "#dark-05.09" | "#dark-05.10" | "#dark-05.11" | "#dark-05.12" | "#dark-05.13" | "#dark-05.14" | "#dark-05.15" | "#dark-05.16" | "#dark-05.17" | "#dark-05.18" | "#dark-05.19" | "#dark-05.20" | "#dark-05.21" | "#dark-05.22" | "#dark-05.23" | "#dark-05.24" | "#dark-05.25" | "#dark-05.26" | "#dark-05.27" | "#dark-05.28" | "#dark-05.29" | "#dark-05.30" | "#dark-05.31" | "#dark-05.32" | "#dark-05.33" | "#dark-05.34" | "#dark-05.35" | "#dark-05.36" | "#dark-05.37" | "#dark-05.38" | "#dark-05.39" | "#dark-05.40" | "#dark-05.41" | "#dark-05.42" | "#dark-05.43" | "#dark-05.44" | "#dark-05.45" | "#dark-05.46" | "#dark-05.47" | "#dark-05.48" | "#dark-05.49" | "#dark-05.50" | "#dark-05.51" | "#dark-05.52" | "#dark-05.53" | "#dark-05.54" | "#dark-05.55" | "#dark-05.56" | "#dark-05.57" | "#dark-05.58" | "#dark-05.59" | "#dark-05.60" | "#dark-05.61" | "#dark-05.62" | "#dark-05.63" | "#dark-05.64" | "#dark-05.65" | "#dark-05.66" | "#dark-05.67" | "#dark-05.68" | "#dark-05.69" | "#dark-05.70" | "#dark-05.71" | "#dark-05.72" | "#dark-05.73" | "#dark-05.74" | "#dark-05.75" | "#dark-05.76" | "#dark-05.77" | "#dark-05.78" | "#dark-05.79" | "#dark-05.80" | "#dark-05.81" | "#dark-05.82" | "#dark-05.83" | "#dark-05.84" | "#dark-05.85" | "#dark-05.86" | "#dark-05.87" | "#dark-05.88" | "#dark-05.89" | "#dark-05.90" | "#dark-05.91" | "#dark-05.92" | "#dark-05.93" | "#dark-05.94" | "#dark-05.95" | "#dark-05.96" | "#dark-05.97" | "#dark-05.98" | "#dark-05.99" | "#dark-05.100" | "#dark-bg" | "#dark-bg.0" | "#dark-bg.1" | "#dark-bg.2" | "#dark-bg.3" | "#dark-bg.4" | "#dark-bg.5" | "#dark-bg.6" | "#dark-bg.7" | "#dark-bg.8" | "#dark-bg.9" | "#dark-bg.00" | "#dark-bg.01" | "#dark-bg.02" | "#dark-bg.03" | "#dark-bg.04" | "#dark-bg.05" | "#dark-bg.06" | "#dark-bg.07" | "#dark-bg.08" | "#dark-bg.09" | "#dark-bg.10" | "#dark-bg.11" | "#dark-bg.12" | "#dark-bg.13" | "#dark-bg.14" | "#dark-bg.15" | "#dark-bg.16" | "#dark-bg.17" | "#dark-bg.18" | "#dark-bg.19" | "#dark-bg.20" | "#dark-bg.21" | "#dark-bg.22" | "#dark-bg.23" | "#dark-bg.24" | "#dark-bg.25" | "#dark-bg.26" | "#dark-bg.27" | "#dark-bg.28" | "#dark-bg.29" | "#dark-bg.30" | "#dark-bg.31" | "#dark-bg.32" | "#dark-bg.33" | "#dark-bg.34" | "#dark-bg.35" | "#dark-bg.36" | "#dark-bg.37" | "#dark-bg.38" | "#dark-bg.39" | "#dark-bg.40" | "#dark-bg.41" | "#dark-bg.42" | "#dark-bg.43" | "#dark-bg.44" | "#dark-bg.45" | "#dark-bg.46" | "#dark-bg.47" | "#dark-bg.48" | "#dark-bg.49" | "#dark-bg.50" | "#dark-bg.51" | "#dark-bg.52" | "#dark-bg.53" | "#dark-bg.54" | "#dark-bg.55" | "#dark-bg.56" | "#dark-bg.57" | "#dark-bg.58" | "#dark-bg.59" | "#dark-bg.60" | "#dark-bg.61" | "#dark-bg.62" | "#dark-bg.63" | "#dark-bg.64" | "#dark-bg.65" | "#dark-bg.66" | "#dark-bg.67" | "#dark-bg.68" | "#dark-bg.69" | "#dark-bg.70" | "#dark-bg.71" | "#dark-bg.72" | "#dark-bg.73" | "#dark-bg.74" | "#dark-bg.75" | "#dark-bg.76" | "#dark-bg.77" | "#dark-bg.78" | "#dark-bg.79" | "#dark-bg.80" | "#dark-bg.81" | "#dark-bg.82" | "#dark-bg.83" | "#dark-bg.84" | "#dark-bg.85" | "#dark-bg.86" | "#dark-bg.87" | "#dark-bg.88" | "#dark-bg.89" | "#dark-bg.90" | "#dark-bg.91" | "#dark-bg.92" | "#dark-bg.93" | "#dark-bg.94" | "#dark-bg.95" | "#dark-bg.96" | "#dark-bg.97" | "#dark-bg.98" | "#dark-bg.99" | "#dark-bg.100" | "#text" | "#text.0" | "#text.1" | "#text.2" | "#text.3" | "#text.4" | "#text.5" | "#text.6" | "#text.7" | "#text.8" | "#text.9" | "#text.00" | "#text.01" | "#text.02" | "#text.03" | "#text.04" | "#text.05" | "#text.06" | "#text.07" | "#text.08" | "#text.09" | "#text.10" | "#text.11" | "#text.12" | "#text.13" | "#text.14" | "#text.15" | "#text.16" | "#text.17" | "#text.18" | "#text.19" | "#text.20" | "#text.21" | "#text.22" | "#text.23" | "#text.24" | "#text.25" | "#text.26" | "#text.27" | "#text.28" | "#text.29" | "#text.30" | "#text.31" | "#text.32" | "#text.33" | "#text.34" | "#text.35" | "#text.36" | "#text.37" | "#text.38" | "#text.39" | "#text.40" | "#text.41" | "#text.42" | "#text.43" | "#text.44" | "#text.45" | "#text.46" | "#text.47" | "#text.48" | "#text.49" | "#text.50" | "#text.51" | "#text.52" | "#text.53" | "#text.54" | "#text.55" | "#text.56" | "#text.57" | "#text.58" | "#text.59" | "#text.60" | "#text.61" | "#text.62" | "#text.63" | "#text.64" | "#text.65" | "#text.66" | "#text.67" | "#text.68" | "#text.69" | "#text.70" | "#text.71" | "#text.72" | "#text.73" | "#text.74" | "#text.75" | "#text.76" | "#text.77" | "#text.78" | "#text.79" | "#text.80" | "#text.81" | "#text.82" | "#text.83" | "#text.84" | "#text.85" | "#text.86" | "#text.87" | "#text.88" | "#text.89" | "#text.90" | "#text.91" | "#text.92" | "#text.93" | "#text.94" | "#text.95" | "#text.96" | "#text.97" | "#text.98" | "#text.99" | "#text.100" | "#primary" | "#primary.0" | "#primary.1" | "#primary.2" | "#primary.3" | "#primary.4" | "#primary.5" | "#primary.6" | "#primary.7" | "#primary.8" | "#primary.9" | "#primary.00" | "#primary.01" | "#primary.02" | "#primary.03" | "#primary.04" | "#primary.05" | "#primary.06" | "#primary.07" | "#primary.08" | "#primary.09" | "#primary.10" | "#primary.11" | "#primary.12" | "#primary.13" | "#primary.14" | "#primary.15" | "#primary.16" | "#primary.17" | "#primary.18" | "#primary.19" | "#primary.20" | "#primary.21" | "#primary.22" | "#primary.23" | "#primary.24" | "#primary.25" | "#primary.26" | "#primary.27" | "#primary.28" | "#primary.29" | "#primary.30" | "#primary.31" | "#primary.32" | "#primary.33" | "#primary.34" | "#primary.35" | "#primary.36" | "#primary.37" | "#primary.38" | "#primary.39" | "#primary.40" | "#primary.41" | "#primary.42" | "#primary.43" | "#primary.44" | "#primary.45" | "#primary.46" | "#primary.47" | "#primary.48" | "#primary.49" | "#primary.50" | "#primary.51" | "#primary.52" | "#primary.53" | "#primary.54" | "#primary.55" | "#primary.56" | "#primary.57" | "#primary.58" | "#primary.59" | "#primary.60" | "#primary.61" | "#primary.62" | "#primary.63" | "#primary.64" | "#primary.65" | "#primary.66" | "#primary.67" | "#primary.68" | "#primary.69" | "#primary.70" | "#primary.71" | "#primary.72" | "#primary.73" | "#primary.74" | "#primary.75" | "#primary.76" | "#primary.77" | "#primary.78" | "#primary.79" | "#primary.80" | "#primary.81" | "#primary.82" | "#primary.83" | "#primary.84" | "#primary.85" | "#primary.86" | "#primary.87" | "#primary.88" | "#primary.89" | "#primary.90" | "#primary.91" | "#primary.92" | "#primary.93" | "#primary.94" | "#primary.95" | "#primary.96" | "#primary.97" | "#primary.98" | "#primary.99" | "#primary.100" | "#disabled" | "#disabled.0" | "#disabled.1" | "#disabled.2" | "#disabled.3" | "#disabled.4" | "#disabled.5" | "#disabled.6" | "#disabled.7" | "#disabled.8" | "#disabled.9" | "#disabled.00" | "#disabled.01" | "#disabled.02" | "#disabled.03" | "#disabled.04" | "#disabled.05" | "#disabled.06" | "#disabled.07" | "#disabled.08" | "#disabled.09" | "#disabled.10" | "#disabled.11" | "#disabled.12" | "#disabled.13" | "#disabled.14" | "#disabled.15" | "#disabled.16" | "#disabled.17" | "#disabled.18" | "#disabled.19" | "#disabled.20" | "#disabled.21" | "#disabled.22" | "#disabled.23" | "#disabled.24" | "#disabled.25" | "#disabled.26" | "#disabled.27" | "#disabled.28" | "#disabled.29" | "#disabled.30" | "#disabled.31" | "#disabled.32" | "#disabled.33" | "#disabled.34" | "#disabled.35" | "#disabled.36" | "#disabled.37" | "#disabled.38" | "#disabled.39" | "#disabled.40" | "#disabled.41" | "#disabled.42" | "#disabled.43" | "#disabled.44" | "#disabled.45" | "#disabled.46" | "#disabled.47" | "#disabled.48" | "#disabled.49" | "#disabled.50" | "#disabled.51" | "#disabled.52" | "#disabled.53" | "#disabled.54" | "#disabled.55" | "#disabled.56" | "#disabled.57" | "#disabled.58" | "#disabled.59" | "#disabled.60" | "#disabled.61" | "#disabled.62" | "#disabled.63" | "#disabled.64" | "#disabled.65" | "#disabled.66" | "#disabled.67" | "#disabled.68" | "#disabled.69" | "#disabled.70" | "#disabled.71" | "#disabled.72" | "#disabled.73" | "#disabled.74" | "#disabled.75" | "#disabled.76" | "#disabled.77" | "#disabled.78" | "#disabled.79" | "#disabled.80" | "#disabled.81" | "#disabled.82" | "#disabled.83" | "#disabled.84" | "#disabled.85" | "#disabled.86" | "#disabled.87" | "#disabled.88" | "#disabled.89" | "#disabled.90" | "#disabled.91" | "#disabled.92" | "#disabled.93" | "#disabled.94" | "#disabled.95" | "#disabled.96" | "#disabled.97" | "#disabled.98" | "#disabled.99" | "#disabled.100" | "#disabled-bg" | "#disabled-bg.0" | "#disabled-bg.1" | "#disabled-bg.2" | "#disabled-bg.3" | "#disabled-bg.4" | "#disabled-bg.5" | "#disabled-bg.6" | "#disabled-bg.7" | "#disabled-bg.8" | "#disabled-bg.9" | "#disabled-bg.00" | "#disabled-bg.01" | "#disabled-bg.02" | "#disabled-bg.03" | "#disabled-bg.04" | "#disabled-bg.05" | "#disabled-bg.06" | "#disabled-bg.07" | "#disabled-bg.08" | "#disabled-bg.09" | "#disabled-bg.10" | "#disabled-bg.11" | "#disabled-bg.12" | "#disabled-bg.13" | "#disabled-bg.14" | "#disabled-bg.15" | "#disabled-bg.16" | "#disabled-bg.17" | "#disabled-bg.18" | "#disabled-bg.19" | "#disabled-bg.20" | "#disabled-bg.21" | "#disabled-bg.22" | "#disabled-bg.23" | "#disabled-bg.24" | "#disabled-bg.25" | "#disabled-bg.26" | "#disabled-bg.27" | "#disabled-bg.28" | "#disabled-bg.29" | "#disabled-bg.30" | "#disabled-bg.31" | "#disabled-bg.32" | "#disabled-bg.33" | "#disabled-bg.34" | "#disabled-bg.35" | "#disabled-bg.36" | "#disabled-bg.37" | "#disabled-bg.38" | "#disabled-bg.39" | "#disabled-bg.40" | "#disabled-bg.41" | "#disabled-bg.42" | "#disabled-bg.43" | "#disabled-bg.44" | "#disabled-bg.45" | "#disabled-bg.46" | "#disabled-bg.47" | "#disabled-bg.48" | "#disabled-bg.49" | "#disabled-bg.50" | "#disabled-bg.51" | "#disabled-bg.52" | "#disabled-bg.53" | "#disabled-bg.54" | "#disabled-bg.55" | "#disabled-bg.56" | "#disabled-bg.57" | "#disabled-bg.58" | "#disabled-bg.59" | "#disabled-bg.60" | "#disabled-bg.61" | "#disabled-bg.62" | "#disabled-bg.63" | "#disabled-bg.64" | "#disabled-bg.65" | "#disabled-bg.66" | "#disabled-bg.67" | "#disabled-bg.68" | "#disabled-bg.69" | "#disabled-bg.70" | "#disabled-bg.71" | "#disabled-bg.72" | "#disabled-bg.73" | "#disabled-bg.74" | "#disabled-bg.75" | "#disabled-bg.76" | "#disabled-bg.77" | "#disabled-bg.78" | "#disabled-bg.79" | "#disabled-bg.80" | "#disabled-bg.81" | "#disabled-bg.82" | "#disabled-bg.83" | "#disabled-bg.84" | "#disabled-bg.85" | "#disabled-bg.86" | "#disabled-bg.87" | "#disabled-bg.88" | "#disabled-bg.89" | "#disabled-bg.90" | "#disabled-bg.91" | "#disabled-bg.92" | "#disabled-bg.93" | "#disabled-bg.94" | "#disabled-bg.95" | "#disabled-bg.96" | "#disabled-bg.97" | "#disabled-bg.98" | "#disabled-bg.99" | "#disabled-bg.100" | "#disabled-text" | "#disabled-text.0" | "#disabled-text.1" | "#disabled-text.2" | "#disabled-text.3" | "#disabled-text.4" | "#disabled-text.5" | "#disabled-text.6" | "#disabled-text.7" | "#disabled-text.8" | "#disabled-text.9" | "#disabled-text.00" | "#disabled-text.01" | "#disabled-text.02" | "#disabled-text.03" | "#disabled-text.04" | "#disabled-text.05" | "#disabled-text.06" | "#disabled-text.07" | "#disabled-text.08" | "#disabled-text.09" | "#disabled-text.10" | "#disabled-text.11" | "#disabled-text.12" | "#disabled-text.13" | "#disabled-text.14" | "#disabled-text.15" | "#disabled-text.16" | "#disabled-text.17" | "#disabled-text.18" | "#disabled-text.19" | "#disabled-text.20" | "#disabled-text.21" | "#disabled-text.22" | "#disabled-text.23" | "#disabled-text.24" | "#disabled-text.25" | "#disabled-text.26" | "#disabled-text.27" | "#disabled-text.28" | "#disabled-text.29" | "#disabled-text.30" | "#disabled-text.31" | "#disabled-text.32" | "#disabled-text.33" | "#disabled-text.34" | "#disabled-text.35" | "#disabled-text.36" | "#disabled-text.37" | "#disabled-text.38" | "#disabled-text.39" | "#disabled-text.40" | "#disabled-text.41" | "#disabled-text.42" | "#disabled-text.43" | "#disabled-text.44" | "#disabled-text.45" | "#disabled-text.46" | "#disabled-text.47" | "#disabled-text.48" | "#disabled-text.49" | "#disabled-text.50" | "#disabled-text.51" | "#disabled-text.52" | "#disabled-text.53" | "#disabled-text.54" | "#disabled-text.55" | "#disabled-text.56" | "#disabled-text.57" | "#disabled-text.58" | "#disabled-text.59" | "#disabled-text.60" | "#disabled-text.61" | "#disabled-text.62" | "#disabled-text.63" | "#disabled-text.64" | "#disabled-text.65" | "#disabled-text.66" | "#disabled-text.67" | "#disabled-text.68" | "#disabled-text.69" | "#disabled-text.70" | "#disabled-text.71" | "#disabled-text.72" | "#disabled-text.73" | "#disabled-text.74" | "#disabled-text.75" | "#disabled-text.76" | "#disabled-text.77" | "#disabled-text.78" | "#disabled-text.79" | "#disabled-text.80" | "#disabled-text.81" | "#disabled-text.82" | "#disabled-text.83" | "#disabled-text.84" | "#disabled-text.85" | "#disabled-text.86" | "#disabled-text.87" | "#disabled-text.88" | "#disabled-text.89" | "#disabled-text.90" | "#disabled-text.91" | "#disabled-text.92" | "#disabled-text.93" | "#disabled-text.94" | "#disabled-text.95" | "#disabled-text.96" | "#disabled-text.97" | "#disabled-text.98" | "#disabled-text.99" | "#disabled-text.100" | "#danger" | "#danger.0" | "#danger.1" | "#danger.2" | "#danger.3" | "#danger.4" | "#danger.5" | "#danger.6" | "#danger.7" | "#danger.8" | "#danger.9" | "#danger.00" | "#danger.01" | "#danger.02" | "#danger.03" | "#danger.04" | "#danger.05" | "#danger.06" | "#danger.07" | "#danger.08" | "#danger.09" | "#danger.10" | "#danger.11" | "#danger.12" | "#danger.13" | "#danger.14" | "#danger.15" | "#danger.16" | "#danger.17" | "#danger.18" | "#danger.19" | "#danger.20" | "#danger.21" | "#danger.22" | "#danger.23" | "#danger.24" | "#danger.25" | "#danger.26" | "#danger.27" | "#danger.28" | "#danger.29" | "#danger.30" | "#danger.31" | "#danger.32" | "#danger.33" | "#danger.34" | "#danger.35" | "#danger.36" | "#danger.37" | "#danger.38" | "#danger.39" | "#danger.40" | "#danger.41" | "#danger.42" | "#danger.43" | "#danger.44" | "#danger.45" | "#danger.46" | "#danger.47" | "#danger.48" | "#danger.49" | "#danger.50" | "#danger.51" | "#danger.52" | "#danger.53" | "#danger.54" | "#danger.55" | "#danger.56" | "#danger.57" | "#danger.58" | "#danger.59" | "#danger.60" | "#danger.61" | "#danger.62" | "#danger.63" | "#danger.64" | "#danger.65" | "#danger.66" | "#danger.67" | "#danger.68" | "#danger.69" | "#danger.70" | "#danger.71" | "#danger.72" | "#danger.73" | "#danger.74" | "#danger.75" | "#danger.76" | "#danger.77" | "#danger.78" | "#danger.79" | "#danger.80" | "#danger.81" | "#danger.82" | "#danger.83" | "#danger.84" | "#danger.85" | "#danger.86" | "#danger.87" | "#danger.88" | "#danger.89" | "#danger.90" | "#danger.91" | "#danger.92" | "#danger.93" | "#danger.94" | "#danger.95" | "#danger.96" | "#danger.97" | "#danger.98" | "#danger.99" | "#danger.100" | "#danger-bg" | "#danger-bg.0" | "#danger-bg.1" | "#danger-bg.2" | "#danger-bg.3" | "#danger-bg.4" | "#danger-bg.5" | "#danger-bg.6" | "#danger-bg.7" | "#danger-bg.8" | "#danger-bg.9" | "#danger-bg.00" | "#danger-bg.01" | "#danger-bg.02" | "#danger-bg.03" | "#danger-bg.04" | "#danger-bg.05" | "#danger-bg.06" | "#danger-bg.07" | "#danger-bg.08" | "#danger-bg.09" | "#danger-bg.10" | "#danger-bg.11" | "#danger-bg.12" | "#danger-bg.13" | "#danger-bg.14" | "#danger-bg.15" | "#danger-bg.16" | "#danger-bg.17" | "#danger-bg.18" | "#danger-bg.19" | "#danger-bg.20" | "#danger-bg.21" | "#danger-bg.22" | "#danger-bg.23" | "#danger-bg.24" | "#danger-bg.25" | "#danger-bg.26" | "#danger-bg.27" | "#danger-bg.28" | "#danger-bg.29" | "#danger-bg.30" | "#danger-bg.31" | "#danger-bg.32" | "#danger-bg.33" | "#danger-bg.34" | "#danger-bg.35" | "#danger-bg.36" | "#danger-bg.37" | "#danger-bg.38" | "#danger-bg.39" | "#danger-bg.40" | "#danger-bg.41" | "#danger-bg.42" | "#danger-bg.43" | "#danger-bg.44" | "#danger-bg.45" | "#danger-bg.46" | "#danger-bg.47" | "#danger-bg.48" | "#danger-bg.49" | "#danger-bg.50" | "#danger-bg.51" | "#danger-bg.52" | "#danger-bg.53" | "#danger-bg.54" | "#danger-bg.55" | "#danger-bg.56" | "#danger-bg.57" | "#danger-bg.58" | "#danger-bg.59" | "#danger-bg.60" | "#danger-bg.61" | "#danger-bg.62" | "#danger-bg.63" | "#danger-bg.64" | "#danger-bg.65" | "#danger-bg.66" | "#danger-bg.67" | "#danger-bg.68" | "#danger-bg.69" | "#danger-bg.70" | "#danger-bg.71" | "#danger-bg.72" | "#danger-bg.73" | "#danger-bg.74" | "#danger-bg.75" | "#danger-bg.76" | "#danger-bg.77" | "#danger-bg.78" | "#danger-bg.79" | "#danger-bg.80" | "#danger-bg.81" | "#danger-bg.82" | "#danger-bg.83" | "#danger-bg.84" | "#danger-bg.85" | "#danger-bg.86" | "#danger-bg.87" | "#danger-bg.88" | "#danger-bg.89" | "#danger-bg.90" | "#danger-bg.91" | "#danger-bg.92" | "#danger-bg.93" | "#danger-bg.94" | "#danger-bg.95" | "#danger-bg.96" | "#danger-bg.97" | "#danger-bg.98" | "#danger-bg.99" | "#danger-bg.100" | "#danger-text" | "#danger-text.0" | "#danger-text.1" | "#danger-text.2" | "#danger-text.3" | "#danger-text.4" | "#danger-text.5" | "#danger-text.6" | "#danger-text.7" | "#danger-text.8" | "#danger-text.9" | "#danger-text.00" | "#danger-text.01" | "#danger-text.02" | "#danger-text.03" | "#danger-text.04" | "#danger-text.05" | "#danger-text.06" | "#danger-text.07" | "#danger-text.08" | "#danger-text.09" | "#danger-text.10" | "#danger-text.11" | "#danger-text.12" | "#danger-text.13" | "#danger-text.14" | "#danger-text.15" | "#danger-text.16" | "#danger-text.17" | "#danger-text.18" | "#danger-text.19" | "#danger-text.20" | "#danger-text.21" | "#danger-text.22" | "#danger-text.23" | "#danger-text.24" | "#danger-text.25" | "#danger-text.26" | "#danger-text.27" | "#danger-text.28" | "#danger-text.29" | "#danger-text.30" | "#danger-text.31" | "#danger-text.32" | "#danger-text.33" | "#danger-text.34" | "#danger-text.35" | "#danger-text.36" | "#danger-text.37" | "#danger-text.38" | "#danger-text.39" | "#danger-text.40" | "#danger-text.41" | "#danger-text.42" | "#danger-text.43" | "#danger-text.44" | "#danger-text.45" | "#danger-text.46" | "#danger-text.47" | "#danger-text.48" | "#danger-text.49" | "#danger-text.50" | "#danger-text.51" | "#danger-text.52" | "#danger-text.53" | "#danger-text.54" | "#danger-text.55" | "#danger-text.56" | "#danger-text.57" | "#danger-text.58" | "#danger-text.59" | "#danger-text.60" | "#danger-text.61" | "#danger-text.62" | "#danger-text.63" | "#danger-text.64" | "#danger-text.65" | "#danger-text.66" | "#danger-text.67" | "#danger-text.68" | "#danger-text.69" | "#danger-text.70" | "#danger-text.71" | "#danger-text.72" | "#danger-text.73" | "#danger-text.74" | "#danger-text.75" | "#danger-text.76" | "#danger-text.77" | "#danger-text.78" | "#danger-text.79" | "#danger-text.80" | "#danger-text.81" | "#danger-text.82" | "#danger-text.83" | "#danger-text.84" | "#danger-text.85" | "#danger-text.86" | "#danger-text.87" | "#danger-text.88" | "#danger-text.89" | "#danger-text.90" | "#danger-text.91" | "#danger-text.92" | "#danger-text.93" | "#danger-text.94" | "#danger-text.95" | "#danger-text.96" | "#danger-text.97" | "#danger-text.98" | "#danger-text.99" | "#danger-text.100" | "#danger-icon" | "#danger-icon.0" | "#danger-icon.1" | "#danger-icon.2" | "#danger-icon.3" | "#danger-icon.4" | "#danger-icon.5" | "#danger-icon.6" | "#danger-icon.7" | "#danger-icon.8" | "#danger-icon.9" | "#danger-icon.00" | "#danger-icon.01" | "#danger-icon.02" | "#danger-icon.03" | "#danger-icon.04" | "#danger-icon.05" | "#danger-icon.06" | "#danger-icon.07" | "#danger-icon.08" | "#danger-icon.09" | "#danger-icon.10" | "#danger-icon.11" | "#danger-icon.12" | "#danger-icon.13" | "#danger-icon.14" | "#danger-icon.15" | "#danger-icon.16" | "#danger-icon.17" | "#danger-icon.18" | "#danger-icon.19" | "#danger-icon.20" | "#danger-icon.21" | "#danger-icon.22" | "#danger-icon.23" | "#danger-icon.24" | "#danger-icon.25" | "#danger-icon.26" | "#danger-icon.27" | "#danger-icon.28" | "#danger-icon.29" | "#danger-icon.30" | "#danger-icon.31" | "#danger-icon.32" | "#danger-icon.33" | "#danger-icon.34" | "#danger-icon.35" | "#danger-icon.36" | "#danger-icon.37" | "#danger-icon.38" | "#danger-icon.39" | "#danger-icon.40" | "#danger-icon.41" | "#danger-icon.42" | "#danger-icon.43" | "#danger-icon.44" | "#danger-icon.45" | "#danger-icon.46" | "#danger-icon.47" | "#danger-icon.48" | "#danger-icon.49" | "#danger-icon.50" | "#danger-icon.51" | "#danger-icon.52" | "#danger-icon.53" | "#danger-icon.54" | "#danger-icon.55" | "#danger-icon.56" | "#danger-icon.57" | "#danger-icon.58" | "#danger-icon.59" | "#danger-icon.60" | "#danger-icon.61" | "#danger-icon.62" | "#danger-icon.63" | "#danger-icon.64" | "#danger-icon.65" | "#danger-icon.66" | "#danger-icon.67" | "#danger-icon.68" | "#danger-icon.69" | "#danger-icon.70" | "#danger-icon.71" | "#danger-icon.72" | "#danger-icon.73" | "#danger-icon.74" | "#danger-icon.75" | "#danger-icon.76" | "#danger-icon.77" | "#danger-icon.78" | "#danger-icon.79" | "#danger-icon.80" | "#danger-icon.81" | "#danger-icon.82" | "#danger-icon.83" | "#danger-icon.84" | "#danger-icon.85" | "#danger-icon.86" | "#danger-icon.87" | "#danger-icon.88" | "#danger-icon.89" | "#danger-icon.90" | "#danger-icon.91" | "#danger-icon.92" | "#danger-icon.93" | "#danger-icon.94" | "#danger-icon.95" | "#danger-icon.96" | "#danger-icon.97" | "#danger-icon.98" | "#danger-icon.99" | "#danger-icon.100" | "#success" | "#success.0" | "#success.1" | "#success.2" | "#success.3" | "#success.4" | "#success.5" | "#success.6" | "#success.7" | "#success.8" | "#success.9" | "#success.00" | "#success.01" | "#success.02" | "#success.03" | "#success.04" | "#success.05" | "#success.06" | "#success.07" | "#success.08" | "#success.09" | "#success.10" | "#success.11" | "#success.12" | "#success.13" | "#success.14" | "#success.15" | "#success.16" | "#success.17" | "#success.18" | "#success.19" | "#success.20" | "#success.21" | "#success.22" | "#success.23" | "#success.24" | "#success.25" | "#success.26" | "#success.27" | "#success.28" | "#success.29" | "#success.30" | "#success.31" | "#success.32" | "#success.33" | "#success.34" | "#success.35" | "#success.36" | "#success.37" | "#success.38" | "#success.39" | "#success.40" | "#success.41" | "#success.42" | "#success.43" | "#success.44" | "#success.45" | "#success.46" | "#success.47" | "#success.48" | "#success.49" | "#success.50" | "#success.51" | "#success.52" | "#success.53" | "#success.54" | "#success.55" | "#success.56" | "#success.57" | "#success.58" | "#success.59" | "#success.60" | "#success.61" | "#success.62" | "#success.63" | "#success.64" | "#success.65" | "#success.66" | "#success.67" | "#success.68" | "#success.69" | "#success.70" | "#success.71" | "#success.72" | "#success.73" | "#success.74" | "#success.75" | "#success.76" | "#success.77" | "#success.78" | "#success.79" | "#success.80" | "#success.81" | "#success.82" | "#success.83" | "#success.84" | "#success.85" | "#success.86" | "#success.87" | "#success.88" | "#success.89" | "#success.90" | "#success.91" | "#success.92" | "#success.93" | "#success.94" | "#success.95" | "#success.96" | "#success.97" | "#success.98" | "#success.99" | "#success.100" | "#success-bg" | "#success-bg.0" | "#success-bg.1" | "#success-bg.2" | "#success-bg.3" | "#success-bg.4" | "#success-bg.5" | "#success-bg.6" | "#success-bg.7" | "#success-bg.8" | "#success-bg.9" | "#success-bg.00" | "#success-bg.01" | "#success-bg.02" | "#success-bg.03" | "#success-bg.04" | "#success-bg.05" | "#success-bg.06" | "#success-bg.07" | "#success-bg.08" | "#success-bg.09" | "#success-bg.10" | "#success-bg.11" | "#success-bg.12" | "#success-bg.13" | "#success-bg.14" | "#success-bg.15" | "#success-bg.16" | "#success-bg.17" | "#success-bg.18" | "#success-bg.19" | "#success-bg.20" | "#success-bg.21" | "#success-bg.22" | "#success-bg.23" | "#success-bg.24" | "#success-bg.25" | "#success-bg.26" | "#success-bg.27" | "#success-bg.28" | "#success-bg.29" | "#success-bg.30" | "#success-bg.31" | "#success-bg.32" | "#success-bg.33" | "#success-bg.34" | "#success-bg.35" | "#success-bg.36" | "#success-bg.37" | "#success-bg.38" | "#success-bg.39" | "#success-bg.40" | "#success-bg.41" | "#success-bg.42" | "#success-bg.43" | "#success-bg.44" | "#success-bg.45" | "#success-bg.46" | "#success-bg.47" | "#success-bg.48" | "#success-bg.49" | "#success-bg.50" | "#success-bg.51" | "#success-bg.52" | "#success-bg.53" | "#success-bg.54" | "#success-bg.55" | "#success-bg.56" | "#success-bg.57" | "#success-bg.58" | "#success-bg.59" | "#success-bg.60" | "#success-bg.61" | "#success-bg.62" | "#success-bg.63" | "#success-bg.64" | "#success-bg.65" | "#success-bg.66" | "#success-bg.67" | "#success-bg.68" | "#success-bg.69" | "#success-bg.70" | "#success-bg.71" | "#success-bg.72" | "#success-bg.73" | "#success-bg.74" | "#success-bg.75" | "#success-bg.76" | "#success-bg.77" | "#success-bg.78" | "#success-bg.79" | "#success-bg.80" | "#success-bg.81" | "#success-bg.82" | "#success-bg.83" | "#success-bg.84" | "#success-bg.85" | "#success-bg.86" | "#success-bg.87" | "#success-bg.88" | "#success-bg.89" | "#success-bg.90" | "#success-bg.91" | "#success-bg.92" | "#success-bg.93" | "#success-bg.94" | "#success-bg.95" | "#success-bg.96" | "#success-bg.97" | "#success-bg.98" | "#success-bg.99" | "#success-bg.100" | "#success-text" | "#success-text.0" | "#success-text.1" | "#success-text.2" | "#success-text.3" | "#success-text.4" | "#success-text.5" | "#success-text.6" | "#success-text.7" | "#success-text.8" | "#success-text.9" | "#success-text.00" | "#success-text.01" | "#success-text.02" | "#success-text.03" | "#success-text.04" | "#success-text.05" | "#success-text.06" | "#success-text.07" | "#success-text.08" | "#success-text.09" | "#success-text.10" | "#success-text.11" | "#success-text.12" | "#success-text.13" | "#success-text.14" | "#success-text.15" | "#success-text.16" | "#success-text.17" | "#success-text.18" | "#success-text.19" | "#success-text.20" | "#success-text.21" | "#success-text.22" | "#success-text.23" | "#success-text.24" | "#success-text.25" | "#success-text.26" | "#success-text.27" | "#success-text.28" | "#success-text.29" | "#success-text.30" | "#success-text.31" | "#success-text.32" | "#success-text.33" | "#success-text.34" | "#success-text.35" | "#success-text.36" | "#success-text.37" | "#success-text.38" | "#success-text.39" | "#success-text.40" | "#success-text.41" | "#success-text.42" | "#success-text.43" | "#success-text.44" | "#success-text.45" | "#success-text.46" | "#success-text.47" | "#success-text.48" | "#success-text.49" | "#success-text.50" | "#success-text.51" | "#success-text.52" | "#success-text.53" | "#success-text.54" | "#success-text.55" | "#success-text.56" | "#success-text.57" | "#success-text.58" | "#success-text.59" | "#success-text.60" | "#success-text.61" | "#success-text.62" | "#success-text.63" | "#success-text.64" | "#success-text.65" | "#success-text.66" | "#success-text.67" | "#success-text.68" | "#success-text.69" | "#success-text.70" | "#success-text.71" | "#success-text.72" | "#success-text.73" | "#success-text.74" | "#success-text.75" | "#success-text.76" | "#success-text.77" | "#success-text.78" | "#success-text.79" | "#success-text.80" | "#success-text.81" | "#success-text.82" | "#success-text.83" | "#success-text.84" | "#success-text.85" | "#success-text.86" | "#success-text.87" | "#success-text.88" | "#success-text.89" | "#success-text.90" | "#success-text.91" | "#success-text.92" | "#success-text.93" | "#success-text.94" | "#success-text.95" | "#success-text.96" | "#success-text.97" | "#success-text.98" | "#success-text.99" | "#success-text.100" | "#success-icon" | "#success-icon.0" | "#success-icon.1" | "#success-icon.2" | "#success-icon.3" | "#success-icon.4" | "#success-icon.5" | "#success-icon.6" | "#success-icon.7" | "#success-icon.8" | "#success-icon.9" | "#success-icon.00" | "#success-icon.01" | "#success-icon.02" | "#success-icon.03" | "#success-icon.04" | "#success-icon.05" | "#success-icon.06" | "#success-icon.07" | "#success-icon.08" | "#success-icon.09" | "#success-icon.10" | "#success-icon.11" | "#success-icon.12" | "#success-icon.13" | "#success-icon.14" | "#success-icon.15" | "#success-icon.16" | "#success-icon.17" | "#success-icon.18" | "#success-icon.19" | "#success-icon.20" | "#success-icon.21" | "#success-icon.22" | "#success-icon.23" | "#success-icon.24" | "#success-icon.25" | "#success-icon.26" | "#success-icon.27" | "#success-icon.28" | "#success-icon.29" | "#success-icon.30" | "#success-icon.31" | "#success-icon.32" | "#success-icon.33" | "#success-icon.34" | "#success-icon.35" | "#success-icon.36" | "#success-icon.37" | "#success-icon.38" | "#success-icon.39" | "#success-icon.40" | "#success-icon.41" | "#success-icon.42" | "#success-icon.43" | "#success-icon.44" | "#success-icon.45" | "#success-icon.46" | "#success-icon.47" | "#success-icon.48" | "#success-icon.49" | "#success-icon.50" | "#success-icon.51" | "#success-icon.52" | "#success-icon.53" | "#success-icon.54" | "#success-icon.55" | "#success-icon.56" | "#success-icon.57" | "#success-icon.58" | "#success-icon.59" | "#success-icon.60" | "#success-icon.61" | "#success-icon.62" | "#success-icon.63" | "#success-icon.64" | "#success-icon.65" | "#success-icon.66" | "#success-icon.67" | "#success-icon.68" | "#success-icon.69" | "#success-icon.70" | "#success-icon.71" | "#success-icon.72" | "#success-icon.73" | "#success-icon.74" | "#success-icon.75" | "#success-icon.76" | "#success-icon.77" | "#success-icon.78" | "#success-icon.79" | "#success-icon.80" | "#success-icon.81" | "#success-icon.82" | "#success-icon.83" | "#success-icon.84" | "#success-icon.85" | "#success-icon.86" | "#success-icon.87" | "#success-icon.88" | "#success-icon.89" | "#success-icon.90" | "#success-icon.91" | "#success-icon.92" | "#success-icon.93" | "#success-icon.94" | "#success-icon.95" | "#success-icon.96" | "#success-icon.97" | "#success-icon.98" | "#success-icon.99" | "#success-icon.100" | "#note" | "#note.0" | "#note.1" | "#note.2" | "#note.3" | "#note.4" | "#note.5" | "#note.6" | "#note.7" | "#note.8" | "#note.9" | "#note.00" | "#note.01" | "#note.02" | "#note.03" | "#note.04" | "#note.05" | "#note.06" | "#note.07" | "#note.08" | "#note.09" | "#note.10" | "#note.11" | "#note.12" | "#note.13" | "#note.14" | "#note.15" | "#note.16" | "#note.17" | "#note.18" | "#note.19" | "#note.20" | "#note.21" | "#note.22" | "#note.23" | "#note.24" | "#note.25" | "#note.26" | "#note.27" | "#note.28" | "#note.29" | "#note.30" | "#note.31" | "#note.32" | "#note.33" | "#note.34" | "#note.35" | "#note.36" | "#note.37" | "#note.38" | "#note.39" | "#note.40" | "#note.41" | "#note.42" | "#note.43" | "#note.44" | "#note.45" | "#note.46" | "#note.47" | "#note.48" | "#note.49" | "#note.50" | "#note.51" | "#note.52" | "#note.53" | "#note.54" | "#note.55" | "#note.56" | "#note.57" | "#note.58" | "#note.59" | "#note.60" | "#note.61" | "#note.62" | "#note.63" | "#note.64" | "#note.65" | "#note.66" | "#note.67" | "#note.68" | "#note.69" | "#note.70" | "#note.71" | "#note.72" | "#note.73" | "#note.74" | "#note.75" | "#note.76" | "#note.77" | "#note.78" | "#note.79" | "#note.80" | "#note.81" | "#note.82" | "#note.83" | "#note.84" | "#note.85" | "#note.86" | "#note.87" | "#note.88" | "#note.89" | "#note.90" | "#note.91" | "#note.92" | "#note.93" | "#note.94" | "#note.95" | "#note.96" | "#note.97" | "#note.98" | "#note.99" | "#note.100" | "#note-bg" | "#note-bg.0" | "#note-bg.1" | "#note-bg.2" | "#note-bg.3" | "#note-bg.4" | "#note-bg.5" | "#note-bg.6" | "#note-bg.7" | "#note-bg.8" | "#note-bg.9" | "#note-bg.00" | "#note-bg.01" | "#note-bg.02" | "#note-bg.03" | "#note-bg.04" | "#note-bg.05" | "#note-bg.06" | "#note-bg.07" | "#note-bg.08" | "#note-bg.09" | "#note-bg.10" | "#note-bg.11" | "#note-bg.12" | "#note-bg.13" | "#note-bg.14" | "#note-bg.15" | "#note-bg.16" | "#note-bg.17" | "#note-bg.18" | "#note-bg.19" | "#note-bg.20" | "#note-bg.21" | "#note-bg.22" | "#note-bg.23" | "#note-bg.24" | "#note-bg.25" | "#note-bg.26" | "#note-bg.27" | "#note-bg.28" | "#note-bg.29" | "#note-bg.30" | "#note-bg.31" | "#note-bg.32" | "#note-bg.33" | "#note-bg.34" | "#note-bg.35" | "#note-bg.36" | "#note-bg.37" | "#note-bg.38" | "#note-bg.39" | "#note-bg.40" | "#note-bg.41" | "#note-bg.42" | "#note-bg.43" | "#note-bg.44" | "#note-bg.45" | "#note-bg.46" | "#note-bg.47" | "#note-bg.48" | "#note-bg.49" | "#note-bg.50" | "#note-bg.51" | "#note-bg.52" | "#note-bg.53" | "#note-bg.54" | "#note-bg.55" | "#note-bg.56" | "#note-bg.57" | "#note-bg.58" | "#note-bg.59" | "#note-bg.60" | "#note-bg.61" | "#note-bg.62" | "#note-bg.63" | "#note-bg.64" | "#note-bg.65" | "#note-bg.66" | "#note-bg.67" | "#note-bg.68" | "#note-bg.69" | "#note-bg.70" | "#note-bg.71" | "#note-bg.72" | "#note-bg.73" | "#note-bg.74" | "#note-bg.75" | "#note-bg.76" | "#note-bg.77" | "#note-bg.78" | "#note-bg.79" | "#note-bg.80" | "#note-bg.81" | "#note-bg.82" | "#note-bg.83" | "#note-bg.84" | "#note-bg.85" | "#note-bg.86" | "#note-bg.87" | "#note-bg.88" | "#note-bg.89" | "#note-bg.90" | "#note-bg.91" | "#note-bg.92" | "#note-bg.93" | "#note-bg.94" | "#note-bg.95" | "#note-bg.96" | "#note-bg.97" | "#note-bg.98" | "#note-bg.99" | "#note-bg.100" | "#note-text" | "#note-text.0" | "#note-text.1" | "#note-text.2" | "#note-text.3" | "#note-text.4" | "#note-text.5" | "#note-text.6" | "#note-text.7" | "#note-text.8" | "#note-text.9" | "#note-text.00" | "#note-text.01" | "#note-text.02" | "#note-text.03" | "#note-text.04" | "#note-text.05" | "#note-text.06" | "#note-text.07" | "#note-text.08" | "#note-text.09" | "#note-text.10" | "#note-text.11" | "#note-text.12" | "#note-text.13" | "#note-text.14" | "#note-text.15" | "#note-text.16" | "#note-text.17" | "#note-text.18" | "#note-text.19" | "#note-text.20" | "#note-text.21" | "#note-text.22" | "#note-text.23" | "#note-text.24" | "#note-text.25" | "#note-text.26" | "#note-text.27" | "#note-text.28" | "#note-text.29" | "#note-text.30" | "#note-text.31" | "#note-text.32" | "#note-text.33" | "#note-text.34" | "#note-text.35" | "#note-text.36" | "#note-text.37" | "#note-text.38" | "#note-text.39" | "#note-text.40" | "#note-text.41" | "#note-text.42" | "#note-text.43" | "#note-text.44" | "#note-text.45" | "#note-text.46" | "#note-text.47" | "#note-text.48" | "#note-text.49" | "#note-text.50" | "#note-text.51" | "#note-text.52" | "#note-text.53" | "#note-text.54" | "#note-text.55" | "#note-text.56" | "#note-text.57" | "#note-text.58" | "#note-text.59" | "#note-text.60" | "#note-text.61" | "#note-text.62" | "#note-text.63" | "#note-text.64" | "#note-text.65" | "#note-text.66" | "#note-text.67" | "#note-text.68" | "#note-text.69" | "#note-text.70" | "#note-text.71" | "#note-text.72" | "#note-text.73" | "#note-text.74" | "#note-text.75" | "#note-text.76" | "#note-text.77" | "#note-text.78" | "#note-text.79" | "#note-text.80" | "#note-text.81" | "#note-text.82" | "#note-text.83" | "#note-text.84" | "#note-text.85" | "#note-text.86" | "#note-text.87" | "#note-text.88" | "#note-text.89" | "#note-text.90" | "#note-text.91" | "#note-text.92" | "#note-text.93" | "#note-text.94" | "#note-text.95" | "#note-text.96" | "#note-text.97" | "#note-text.98" | "#note-text.99" | "#note-text.100" | "#note-icon" | "#note-icon.0" | "#note-icon.1" | "#note-icon.2" | "#note-icon.3" | "#note-icon.4" | "#note-icon.5" | "#note-icon.6" | "#note-icon.7" | "#note-icon.8" | "#note-icon.9" | "#note-icon.00" | "#note-icon.01" | "#note-icon.02" | "#note-icon.03" | "#note-icon.04" | "#note-icon.05" | "#note-icon.06" | "#note-icon.07" | "#note-icon.08" | "#note-icon.09" | "#note-icon.10" | "#note-icon.11" | "#note-icon.12" | "#note-icon.13" | "#note-icon.14" | "#note-icon.15" | "#note-icon.16" | "#note-icon.17" | "#note-icon.18" | "#note-icon.19" | "#note-icon.20" | "#note-icon.21" | "#note-icon.22" | "#note-icon.23" | "#note-icon.24" | "#note-icon.25" | "#note-icon.26" | "#note-icon.27" | "#note-icon.28" | "#note-icon.29" | "#note-icon.30" | "#note-icon.31" | "#note-icon.32" | "#note-icon.33" | "#note-icon.34" | "#note-icon.35" | "#note-icon.36" | "#note-icon.37" | "#note-icon.38" | "#note-icon.39" | "#note-icon.40" | "#note-icon.41" | "#note-icon.42" | "#note-icon.43" | "#note-icon.44" | "#note-icon.45" | "#note-icon.46" | "#note-icon.47" | "#note-icon.48" | "#note-icon.49" | "#note-icon.50" | "#note-icon.51" | "#note-icon.52" | "#note-icon.53" | "#note-icon.54" | "#note-icon.55" | "#note-icon.56" | "#note-icon.57" | "#note-icon.58" | "#note-icon.59" | "#note-icon.60" | "#note-icon.61" | "#note-icon.62" | "#note-icon.63" | "#note-icon.64" | "#note-icon.65" | "#note-icon.66" | "#note-icon.67" | "#note-icon.68" | "#note-icon.69" | "#note-icon.70" | "#note-icon.71" | "#note-icon.72" | "#note-icon.73" | "#note-icon.74" | "#note-icon.75" | "#note-icon.76" | "#note-icon.77" | "#note-icon.78" | "#note-icon.79" | "#note-icon.80" | "#note-icon.81" | "#note-icon.82" | "#note-icon.83" | "#note-icon.84" | "#note-icon.85" | "#note-icon.86" | "#note-icon.87" | "#note-icon.88" | "#note-icon.89" | "#note-icon.90" | "#note-icon.91" | "#note-icon.92" | "#note-icon.93" | "#note-icon.94" | "#note-icon.95" | "#note-icon.96" | "#note-icon.97" | "#note-icon.98" | "#note-icon.99" | "#note-icon.100" | "#white" | "#white.0" | "#white.1" | "#white.2" | "#white.3" | "#white.4" | "#white.5" | "#white.6" | "#white.7" | "#white.8" | "#white.9" | "#white.00" | "#white.01" | "#white.02" | "#white.03" | "#white.04" | "#white.05" | "#white.06" | "#white.07" | "#white.08" | "#white.09" | "#white.10" | "#white.11" | "#white.12" | "#white.13" | "#white.14" | "#white.15" | "#white.16" | "#white.17" | "#white.18" | "#white.19" | "#white.20" | "#white.21" | "#white.22" | "#white.23" | "#white.24" | "#white.25" | "#white.26" | "#white.27" | "#white.28" | "#white.29" | "#white.30" | "#white.31" | "#white.32" | "#white.33" | "#white.34" | "#white.35" | "#white.36" | "#white.37" | "#white.38" | "#white.39" | "#white.40" | "#white.41" | "#white.42" | "#white.43" | "#white.44" | "#white.45" | "#white.46" | "#white.47" | "#white.48" | "#white.49" | "#white.50" | "#white.51" | "#white.52" | "#white.53" | "#white.54" | "#white.55" | "#white.56" | "#white.57" | "#white.58" | "#white.59" | "#white.60" | "#white.61" | "#white.62" | "#white.63" | "#white.64" | "#white.65" | "#white.66" | "#white.67" | "#white.68" | "#white.69" | "#white.70" | "#white.71" | "#white.72" | "#white.73" | "#white.74" | "#white.75" | "#white.76" | "#white.77" | "#white.78" | "#white.79" | "#white.80" | "#white.81" | "#white.82" | "#white.83" | "#white.84" | "#white.85" | "#white.86" | "#white.87" | "#white.88" | "#white.89" | "#white.90" | "#white.91" | "#white.92" | "#white.93" | "#white.94" | "#white.95" | "#white.96" | "#white.97" | "#white.98" | "#white.99" | "#white.100" | "#light" | "#light.0" | "#light.1" | "#light.2" | "#light.3" | "#light.4" | "#light.5" | "#light.6" | "#light.7" | "#light.8" | "#light.9" | "#light.00" | "#light.01" | "#light.02" | "#light.03" | "#light.04" | "#light.05" | "#light.06" | "#light.07" | "#light.08" | "#light.09" | "#light.10" | "#light.11" | "#light.12" | "#light.13" | "#light.14" | "#light.15" | "#light.16" | "#light.17" | "#light.18" | "#light.19" | "#light.20" | "#light.21" | "#light.22" | "#light.23" | "#light.24" | "#light.25" | "#light.26" | "#light.27" | "#light.28" | "#light.29" | "#light.30" | "#light.31" | "#light.32" | "#light.33" | "#light.34" | "#light.35" | "#light.36" | "#light.37" | "#light.38" | "#light.39" | "#light.40" | "#light.41" | "#light.42" | "#light.43" | "#light.44" | "#light.45" | "#light.46" | "#light.47" | "#light.48" | "#light.49" | "#light.50" | "#light.51" | "#light.52" | "#light.53" | "#light.54" | "#light.55" | "#light.56" | "#light.57" | "#light.58" | "#light.59" | "#light.60" | "#light.61" | "#light.62" | "#light.63" | "#light.64" | "#light.65" | "#light.66" | "#light.67" | "#light.68" | "#light.69" | "#light.70" | "#light.71" | "#light.72" | "#light.73" | "#light.74" | "#light.75" | "#light.76" | "#light.77" | "#light.78" | "#light.79" | "#light.80" | "#light.81" | "#light.82" | "#light.83" | "#light.84" | "#light.85" | "#light.86" | "#light.87" | "#light.88" | "#light.89" | "#light.90" | "#light.91" | "#light.92" | "#light.93" | "#light.94" | "#light.95" | "#light.96" | "#light.97" | "#light.98" | "#light.99" | "#light.100" | "#light-grey" | "#light-grey.0" | "#light-grey.1" | "#light-grey.2" | "#light-grey.3" | "#light-grey.4" | "#light-grey.5" | "#light-grey.6" | "#light-grey.7" | "#light-grey.8" | "#light-grey.9" | "#light-grey.00" | "#light-grey.01" | "#light-grey.02" | "#light-grey.03" | "#light-grey.04" | "#light-grey.05" | "#light-grey.06" | "#light-grey.07" | "#light-grey.08" | "#light-grey.09" | "#light-grey.10" | "#light-grey.11" | "#light-grey.12" | "#light-grey.13" | "#light-grey.14" | "#light-grey.15" | "#light-grey.16" | "#light-grey.17" | "#light-grey.18" | "#light-grey.19" | "#light-grey.20" | "#light-grey.21" | "#light-grey.22" | "#light-grey.23" | "#light-grey.24" | "#light-grey.25" | "#light-grey.26" | "#light-grey.27" | "#light-grey.28" | "#light-grey.29" | "#light-grey.30" | "#light-grey.31" | "#light-grey.32" | "#light-grey.33" | "#light-grey.34" | "#light-grey.35" | "#light-grey.36" | "#light-grey.37" | "#light-grey.38" | "#light-grey.39" | "#light-grey.40" | "#light-grey.41" | "#light-grey.42" | "#light-grey.43" | "#light-grey.44" | "#light-grey.45" | "#light-grey.46" | "#light-grey.47" | "#light-grey.48" | "#light-grey.49" | "#light-grey.50" | "#light-grey.51" | "#light-grey.52" | "#light-grey.53" | "#light-grey.54" | "#light-grey.55" | "#light-grey.56" | "#light-grey.57" | "#light-grey.58" | "#light-grey.59" | "#light-grey.60" | "#light-grey.61" | "#light-grey.62" | "#light-grey.63" | "#light-grey.64" | "#light-grey.65" | "#light-grey.66" | "#light-grey.67" | "#light-grey.68" | "#light-grey.69" | "#light-grey.70" | "#light-grey.71" | "#light-grey.72" | "#light-grey.73" | "#light-grey.74" | "#light-grey.75" | "#light-grey.76" | "#light-grey.77" | "#light-grey.78" | "#light-grey.79" | "#light-grey.80" | "#light-grey.81" | "#light-grey.82" | "#light-grey.83" | "#light-grey.84" | "#light-grey.85" | "#light-grey.86" | "#light-grey.87" | "#light-grey.88" | "#light-grey.89" | "#light-grey.90" | "#light-grey.91" | "#light-grey.92" | "#light-grey.93" | "#light-grey.94" | "#light-grey.95" | "#light-grey.96" | "#light-grey.97" | "#light-grey.98" | "#light-grey.99" | "#light-grey.100" | "#black" | "#black.0" | "#black.1" | "#black.2" | "#black.3" | "#black.4" | "#black.5" | "#black.6" | "#black.7" | "#black.8" | "#black.9" | "#black.00" | "#black.01" | "#black.02" | "#black.03" | "#black.04" | "#black.05" | "#black.06" | "#black.07" | "#black.08" | "#black.09" | "#black.10" | "#black.11" | "#black.12" | "#black.13" | "#black.14" | "#black.15" | "#black.16" | "#black.17" | "#black.18" | "#black.19" | "#black.20" | "#black.21" | "#black.22" | "#black.23" | "#black.24" | "#black.25" | "#black.26" | "#black.27" | "#black.28" | "#black.29" | "#black.30" | "#black.31" | "#black.32" | "#black.33" | "#black.34" | "#black.35" | "#black.36" | "#black.37" | "#black.38" | "#black.39" | "#black.40" | "#black.41" | "#black.42" | "#black.43" | "#black.44" | "#black.45" | "#black.46" | "#black.47" | "#black.48" | "#black.49" | "#black.50" | "#black.51" | "#black.52" | "#black.53" | "#black.54" | "#black.55" | "#black.56" | "#black.57" | "#black.58" | "#black.59" | "#black.60" | "#black.61" | "#black.62" | "#black.63" | "#black.64" | "#black.65" | "#black.66" | "#black.67" | "#black.68" | "#black.69" | "#black.70" | "#black.71" | "#black.72" | "#black.73" | "#black.74" | "#black.75" | "#black.76" | "#black.77" | "#black.78" | "#black.79" | "#black.80" | "#black.81" | "#black.82" | "#black.83" | "#black.84" | "#black.85" | "#black.86" | "#black.87" | "#black.88" | "#black.89" | "#black.90" | "#black.91" | "#black.92" | "#black.93" | "#black.94" | "#black.95" | "#black.96" | "#black.97" | "#black.98" | "#black.99" | "#black.100" | "#pink" | "#pink.0" | "#pink.1" | "#pink.2" | "#pink.3" | "#pink.4" | "#pink.5" | "#pink.6" | "#pink.7" | "#pink.8" | "#pink.9" | "#pink.00" | "#pink.01" | "#pink.02" | "#pink.03" | "#pink.04" | "#pink.05" | "#pink.06" | "#pink.07" | "#pink.08" | "#pink.09" | "#pink.10" | "#pink.11" | "#pink.12" | "#pink.13" | "#pink.14" | "#pink.15" | "#pink.16" | "#pink.17" | "#pink.18" | "#pink.19" | "#pink.20" | "#pink.21" | "#pink.22" | "#pink.23" | "#pink.24" | "#pink.25" | "#pink.26" | "#pink.27" | "#pink.28" | "#pink.29" | "#pink.30" | "#pink.31" | "#pink.32" | "#pink.33" | "#pink.34" | "#pink.35" | "#pink.36" | "#pink.37" | "#pink.38" | "#pink.39" | "#pink.40" | "#pink.41" | "#pink.42" | "#pink.43" | "#pink.44" | "#pink.45" | "#pink.46" | "#pink.47" | "#pink.48" | "#pink.49" | "#pink.50" | "#pink.51" | "#pink.52" | "#pink.53" | "#pink.54" | "#pink.55" | "#pink.56" | "#pink.57" | "#pink.58" | "#pink.59" | "#pink.60" | "#pink.61" | "#pink.62" | "#pink.63" | "#pink.64" | "#pink.65" | "#pink.66" | "#pink.67" | "#pink.68" | "#pink.69" | "#pink.70" | "#pink.71" | "#pink.72" | "#pink.73" | "#pink.74" | "#pink.75" | "#pink.76" | "#pink.77" | "#pink.78" | "#pink.79" | "#pink.80" | "#pink.81" | "#pink.82" | "#pink.83" | "#pink.84" | "#pink.85" | "#pink.86" | "#pink.87" | "#pink.88" | "#pink.89" | "#pink.90" | "#pink.91" | "#pink.92" | "#pink.93" | "#pink.94" | "#pink.95" | "#pink.96" | "#pink.97" | "#pink.98" | "#pink.99" | "#pink.100" | "#pink-01" | "#pink-01.0" | "#pink-01.1" | "#pink-01.2" | "#pink-01.3" | "#pink-01.4" | "#pink-01.5" | "#pink-01.6" | "#pink-01.7" | "#pink-01.8" | "#pink-01.9" | "#pink-01.00" | "#pink-01.01" | "#pink-01.02" | "#pink-01.03" | "#pink-01.04" | "#pink-01.05" | "#pink-01.06" | "#pink-01.07" | "#pink-01.08" | "#pink-01.09" | "#pink-01.10" | "#pink-01.11" | "#pink-01.12" | "#pink-01.13" | "#pink-01.14" | "#pink-01.15" | "#pink-01.16" | "#pink-01.17" | "#pink-01.18" | "#pink-01.19" | "#pink-01.20" | "#pink-01.21" | "#pink-01.22" | "#pink-01.23" | "#pink-01.24" | "#pink-01.25" | "#pink-01.26" | "#pink-01.27" | "#pink-01.28" | "#pink-01.29" | "#pink-01.30" | "#pink-01.31" | "#pink-01.32" | "#pink-01.33" | "#pink-01.34" | "#pink-01.35" | "#pink-01.36" | "#pink-01.37" | "#pink-01.38" | "#pink-01.39" | "#pink-01.40" | "#pink-01.41" | "#pink-01.42" | "#pink-01.43" | "#pink-01.44" | "#pink-01.45" | "#pink-01.46" | "#pink-01.47" | "#pink-01.48" | "#pink-01.49" | "#pink-01.50" | "#pink-01.51" | "#pink-01.52" | "#pink-01.53" | "#pink-01.54" | "#pink-01.55" | "#pink-01.56" | "#pink-01.57" | "#pink-01.58" | "#pink-01.59" | "#pink-01.60" | "#pink-01.61" | "#pink-01.62" | "#pink-01.63" | "#pink-01.64" | "#pink-01.65" | "#pink-01.66" | "#pink-01.67" | "#pink-01.68" | "#pink-01.69" | "#pink-01.70" | "#pink-01.71" | "#pink-01.72" | "#pink-01.73" | "#pink-01.74" | "#pink-01.75" | "#pink-01.76" | "#pink-01.77" | "#pink-01.78" | "#pink-01.79" | "#pink-01.80" | "#pink-01.81" | "#pink-01.82" | "#pink-01.83" | "#pink-01.84" | "#pink-01.85" | "#pink-01.86" | "#pink-01.87" | "#pink-01.88" | "#pink-01.89" | "#pink-01.90" | "#pink-01.91" | "#pink-01.92" | "#pink-01.93" | "#pink-01.94" | "#pink-01.95" | "#pink-01.96" | "#pink-01.97" | "#pink-01.98" | "#pink-01.99" | "#pink-01.100" | "#pink-02" | "#pink-02.0" | "#pink-02.1" | "#pink-02.2" | "#pink-02.3" | "#pink-02.4" | "#pink-02.5" | "#pink-02.6" | "#pink-02.7" | "#pink-02.8" | "#pink-02.9" | "#pink-02.00" | "#pink-02.01" | "#pink-02.02" | "#pink-02.03" | "#pink-02.04" | "#pink-02.05" | "#pink-02.06" | "#pink-02.07" | "#pink-02.08" | "#pink-02.09" | "#pink-02.10" | "#pink-02.11" | "#pink-02.12" | "#pink-02.13" | "#pink-02.14" | "#pink-02.15" | "#pink-02.16" | "#pink-02.17" | "#pink-02.18" | "#pink-02.19" | "#pink-02.20" | "#pink-02.21" | "#pink-02.22" | "#pink-02.23" | "#pink-02.24" | "#pink-02.25" | "#pink-02.26" | "#pink-02.27" | "#pink-02.28" | "#pink-02.29" | "#pink-02.30" | "#pink-02.31" | "#pink-02.32" | "#pink-02.33" | "#pink-02.34" | "#pink-02.35" | "#pink-02.36" | "#pink-02.37" | "#pink-02.38" | "#pink-02.39" | "#pink-02.40" | "#pink-02.41" | "#pink-02.42" | "#pink-02.43" | "#pink-02.44" | "#pink-02.45" | "#pink-02.46" | "#pink-02.47" | "#pink-02.48" | "#pink-02.49" | "#pink-02.50" | "#pink-02.51" | "#pink-02.52" | "#pink-02.53" | "#pink-02.54" | "#pink-02.55" | "#pink-02.56" | "#pink-02.57" | "#pink-02.58" | "#pink-02.59" | "#pink-02.60" | "#pink-02.61" | "#pink-02.62" | "#pink-02.63" | "#pink-02.64" | "#pink-02.65" | "#pink-02.66" | "#pink-02.67" | "#pink-02.68" | "#pink-02.69" | "#pink-02.70" | "#pink-02.71" | "#pink-02.72" | "#pink-02.73" | "#pink-02.74" | "#pink-02.75" | "#pink-02.76" | "#pink-02.77" | "#pink-02.78" | "#pink-02.79" | "#pink-02.80" | "#pink-02.81" | "#pink-02.82" | "#pink-02.83" | "#pink-02.84" | "#pink-02.85" | "#pink-02.86" | "#pink-02.87" | "#pink-02.88" | "#pink-02.89" | "#pink-02.90" | "#pink-02.91" | "#pink-02.92" | "#pink-02.93" | "#pink-02.94" | "#pink-02.95" | "#pink-02.96" | "#pink-02.97" | "#pink-02.98" | "#pink-02.99" | "#pink-02.100" | "#draft" | "#draft.0" | "#draft.1" | "#draft.2" | "#draft.3" | "#draft.4" | "#draft.5" | "#draft.6" | "#draft.7" | "#draft.8" | "#draft.9" | "#draft.00" | "#draft.01" | "#draft.02" | "#draft.03" | "#draft.04" | "#draft.05" | "#draft.06" | "#draft.07" | "#draft.08" | "#draft.09" | "#draft.10" | "#draft.11" | "#draft.12" | "#draft.13" | "#draft.14" | "#draft.15" | "#draft.16" | "#draft.17" | "#draft.18" | "#draft.19" | "#draft.20" | "#draft.21" | "#draft.22" | "#draft.23" | "#draft.24" | "#draft.25" | "#draft.26" | "#draft.27" | "#draft.28" | "#draft.29" | "#draft.30" | "#draft.31" | "#draft.32" | "#draft.33" | "#draft.34" | "#draft.35" | "#draft.36" | "#draft.37" | "#draft.38" | "#draft.39" | "#draft.40" | "#draft.41" | "#draft.42" | "#draft.43" | "#draft.44" | "#draft.45" | "#draft.46" | "#draft.47" | "#draft.48" | "#draft.49" | "#draft.50" | "#draft.51" | "#draft.52" | "#draft.53" | "#draft.54" | "#draft.55" | "#draft.56" | "#draft.57" | "#draft.58" | "#draft.59" | "#draft.60" | "#draft.61" | "#draft.62" | "#draft.63" | "#draft.64" | "#draft.65" | "#draft.66" | "#draft.67" | "#draft.68" | "#draft.69" | "#draft.70" | "#draft.71" | "#draft.72" | "#draft.73" | "#draft.74" | "#draft.75" | "#draft.76" | "#draft.77" | "#draft.78" | "#draft.79" | "#draft.80" | "#draft.81" | "#draft.82" | "#draft.83" | "#draft.84" | "#draft.85" | "#draft.86" | "#draft.87" | "#draft.88" | "#draft.89" | "#draft.90" | "#draft.91" | "#draft.92" | "#draft.93" | "#draft.94" | "#draft.95" | "#draft.96" | "#draft.97" | "#draft.98" | "#draft.99" | "#draft.100" | "#minor" | "#minor.0" | "#minor.1" | "#minor.2" | "#minor.3" | "#minor.4" | "#minor.5" | "#minor.6" | "#minor.7" | "#minor.8" | "#minor.9" | "#minor.00" | "#minor.01" | "#minor.02" | "#minor.03" | "#minor.04" | "#minor.05" | "#minor.06" | "#minor.07" | "#minor.08" | "#minor.09" | "#minor.10" | "#minor.11" | "#minor.12" | "#minor.13" | "#minor.14" | "#minor.15" | "#minor.16" | "#minor.17" | "#minor.18" | "#minor.19" | "#minor.20" | "#minor.21" | "#minor.22" | "#minor.23" | "#minor.24" | "#minor.25" | "#minor.26" | "#minor.27" | "#minor.28" | "#minor.29" | "#minor.30" | "#minor.31" | "#minor.32" | "#minor.33" | "#minor.34" | "#minor.35" | "#minor.36" | "#minor.37" | "#minor.38" | "#minor.39" | "#minor.40" | "#minor.41" | "#minor.42" | "#minor.43" | "#minor.44" | "#minor.45" | "#minor.46" | "#minor.47" | "#minor.48" | "#minor.49" | "#minor.50" | "#minor.51" | "#minor.52" | "#minor.53" | "#minor.54" | "#minor.55" | "#minor.56" | "#minor.57" | "#minor.58" | "#minor.59" | "#minor.60" | "#minor.61" | "#minor.62" | "#minor.63" | "#minor.64" | "#minor.65" | "#minor.66" | "#minor.67" | "#minor.68" | "#minor.69" | "#minor.70" | "#minor.71" | "#minor.72" | "#minor.73" | "#minor.74" | "#minor.75" | "#minor.76" | "#minor.77" | "#minor.78" | "#minor.79" | "#minor.80" | "#minor.81" | "#minor.82" | "#minor.83" | "#minor.84" | "#minor.85" | "#minor.86" | "#minor.87" | "#minor.88" | "#minor.89" | "#minor.90" | "#minor.91" | "#minor.92" | "#minor.93" | "#minor.94" | "#minor.95" | "#minor.96" | "#minor.97" | "#minor.98" | "#minor.99" | "#minor.100" | `rgb(${string})` | `rgba(${string})` | undefined> | import("../../../tasty/index").StyleValueStateMap<(string & {}) | "#border" | "#border.0" | "#border.1" | "#border.2" | "#border.3" | "#border.4" | "#border.5" | "#border.6" | "#border.7" | "#border.8" | "#border.9" | "#border.00" | "#border.01" | "#border.02" | "#border.03" | "#border.04" | "#border.05" | "#border.06" | "#border.07" | "#border.08" | "#border.09" | "#border.10" | "#border.11" | "#border.12" | "#border.13" | "#border.14" | "#border.15" | "#border.16" | "#border.17" | "#border.18" | "#border.19" | "#border.20" | "#border.21" | "#border.22" | "#border.23" | "#border.24" | "#border.25" | "#border.26" | "#border.27" | "#border.28" | "#border.29" | "#border.30" | "#border.31" | "#border.32" | "#border.33" | "#border.34" | "#border.35" | "#border.36" | "#border.37" | "#border.38" | "#border.39" | "#border.40" | "#border.41" | "#border.42" | "#border.43" | "#border.44" | "#border.45" | "#border.46" | "#border.47" | "#border.48" | "#border.49" | "#border.50" | "#border.51" | "#border.52" | "#border.53" | "#border.54" | "#border.55" | "#border.56" | "#border.57" | "#border.58" | "#border.59" | "#border.60" | "#border.61" | "#border.62" | "#border.63" | "#border.64" | "#border.65" | "#border.66" | "#border.67" | "#border.68" | "#border.69" | "#border.70" | "#border.71" | "#border.72" | "#border.73" | "#border.74" | "#border.75" | "#border.76" | "#border.77" | "#border.78" | "#border.79" | "#border.80" | "#border.81" | "#border.82" | "#border.83" | "#border.84" | "#border.85" | "#border.86" | "#border.87" | "#border.88" | "#border.89" | "#border.90" | "#border.91" | "#border.92" | "#border.93" | "#border.94" | "#border.95" | "#border.96" | "#border.97" | "#border.98" | "#border.99" | "#border.100" | "#clear" | "#clear.0" | "#clear.1" | "#clear.2" | "#clear.3" | "#clear.4" | "#clear.5" | "#clear.6" | "#clear.7" | "#clear.8" | "#clear.9" | "#clear.00" | "#clear.01" | "#clear.02" | "#clear.03" | "#clear.04" | "#clear.05" | "#clear.06" | "#clear.07" | "#clear.08" | "#clear.09" | "#clear.10" | "#clear.11" | "#clear.12" | "#clear.13" | "#clear.14" | "#clear.15" | "#clear.16" | "#clear.17" | "#clear.18" | "#clear.19" | "#clear.20" | "#clear.21" | "#clear.22" | "#clear.23" | "#clear.24" | "#clear.25" | "#clear.26" | "#clear.27" | "#clear.28" | "#clear.29" | "#clear.30" | "#clear.31" | "#clear.32" | "#clear.33" | "#clear.34" | "#clear.35" | "#clear.36" | "#clear.37" | "#clear.38" | "#clear.39" | "#clear.40" | "#clear.41" | "#clear.42" | "#clear.43" | "#clear.44" | "#clear.45" | "#clear.46" | "#clear.47" | "#clear.48" | "#clear.49" | "#clear.50" | "#clear.51" | "#clear.52" | "#clear.53" | "#clear.54" | "#clear.55" | "#clear.56" | "#clear.57" | "#clear.58" | "#clear.59" | "#clear.60" | "#clear.61" | "#clear.62" | "#clear.63" | "#clear.64" | "#clear.65" | "#clear.66" | "#clear.67" | "#clear.68" | "#clear.69" | "#clear.70" | "#clear.71" | "#clear.72" | "#clear.73" | "#clear.74" | "#clear.75" | "#clear.76" | "#clear.77" | "#clear.78" | "#clear.79" | "#clear.80" | "#clear.81" | "#clear.82" | "#clear.83" | "#clear.84" | "#clear.85" | "#clear.86" | "#clear.87" | "#clear.88" | "#clear.89" | "#clear.90" | "#clear.91" | "#clear.92" | "#clear.93" | "#clear.94" | "#clear.95" | "#clear.96" | "#clear.97" | "#clear.98" | "#clear.99" | "#clear.100" | "#shadow" | "#shadow.0" | "#shadow.1" | "#shadow.2" | "#shadow.3" | "#shadow.4" | "#shadow.5" | "#shadow.6" | "#shadow.7" | "#shadow.8" | "#shadow.9" | "#shadow.00" | "#shadow.01" | "#shadow.02" | "#shadow.03" | "#shadow.04" | "#shadow.05" | "#shadow.06" | "#shadow.07" | "#shadow.08" | "#shadow.09" | "#shadow.10" | "#shadow.11" | "#shadow.12" | "#shadow.13" | "#shadow.14" | "#shadow.15" | "#shadow.16" | "#shadow.17" | "#shadow.18" | "#shadow.19" | "#shadow.20" | "#shadow.21" | "#shadow.22" | "#shadow.23" | "#shadow.24" | "#shadow.25" | "#shadow.26" | "#shadow.27" | "#shadow.28" | "#shadow.29" | "#shadow.30" | "#shadow.31" | "#shadow.32" | "#shadow.33" | "#shadow.34" | "#shadow.35" | "#shadow.36" | "#shadow.37" | "#shadow.38" | "#shadow.39" | "#shadow.40" | "#shadow.41" | "#shadow.42" | "#shadow.43" | "#shadow.44" | "#shadow.45" | "#shadow.46" | "#shadow.47" | "#shadow.48" | "#shadow.49" | "#shadow.50" | "#shadow.51" | "#shadow.52" | "#shadow.53" | "#shadow.54" | "#shadow.55" | "#shadow.56" | "#shadow.57" | "#shadow.58" | "#shadow.59" | "#shadow.60" | "#shadow.61" | "#shadow.62" | "#shadow.63" | "#shadow.64" | "#shadow.65" | "#shadow.66" | "#shadow.67" | "#shadow.68" | "#shadow.69" | "#shadow.70" | "#shadow.71" | "#shadow.72" | "#shadow.73" | "#shadow.74" | "#shadow.75" | "#shadow.76" | "#shadow.77" | "#shadow.78" | "#shadow.79" | "#shadow.80" | "#shadow.81" | "#shadow.82" | "#shadow.83" | "#shadow.84" | "#shadow.85" | "#shadow.86" | "#shadow.87" | "#shadow.88" | "#shadow.89" | "#shadow.90" | "#shadow.91" | "#shadow.92" | "#shadow.93" | "#shadow.94" | "#shadow.95" | "#shadow.96" | "#shadow.97" | "#shadow.98" | "#shadow.99" | "#shadow.100" | "#purple" | "#purple.0" | "#purple.1" | "#purple.2" | "#purple.3" | "#purple.4" | "#purple.5" | "#purple.6" | "#purple.7" | "#purple.8" | "#purple.9" | "#purple.00" | "#purple.01" | "#purple.02" | "#purple.03" | "#purple.04" | "#purple.05" | "#purple.06" | "#purple.07" | "#purple.08" | "#purple.09" | "#purple.10" | "#purple.11" | "#purple.12" | "#purple.13" | "#purple.14" | "#purple.15" | "#purple.16" | "#purple.17" | "#purple.18" | "#purple.19" | "#purple.20" | "#purple.21" | "#purple.22" | "#purple.23" | "#purple.24" | "#purple.25" | "#purple.26" | "#purple.27" | "#purple.28" | "#purple.29" | "#purple.30" | "#purple.31" | "#purple.32" | "#purple.33" | "#purple.34" | "#purple.35" | "#purple.36" | "#purple.37" | "#purple.38" | "#purple.39" | "#purple.40" | "#purple.41" | "#purple.42" | "#purple.43" | "#purple.44" | "#purple.45" | "#purple.46" | "#purple.47" | "#purple.48" | "#purple.49" | "#purple.50" | "#purple.51" | "#purple.52" | "#purple.53" | "#purple.54" | "#purple.55" | "#purple.56" | "#purple.57" | "#purple.58" | "#purple.59" | "#purple.60" | "#purple.61" | "#purple.62" | "#purple.63" | "#purple.64" | "#purple.65" | "#purple.66" | "#purple.67" | "#purple.68" | "#purple.69" | "#purple.70" | "#purple.71" | "#purple.72" | "#purple.73" | "#purple.74" | "#purple.75" | "#purple.76" | "#purple.77" | "#purple.78" | "#purple.79" | "#purple.80" | "#purple.81" | "#purple.82" | "#purple.83" | "#purple.84" | "#purple.85" | "#purple.86" | "#purple.87" | "#purple.88" | "#purple.89" | "#purple.90" | "#purple.91" | "#purple.92" | "#purple.93" | "#purple.94" | "#purple.95" | "#purple.96" | "#purple.97" | "#purple.98" | "#purple.99" | "#purple.100" | "#purple-text" | "#purple-text.0" | "#purple-text.1" | "#purple-text.2" | "#purple-text.3" | "#purple-text.4" | "#purple-text.5" | "#purple-text.6" | "#purple-text.7" | "#purple-text.8" | "#purple-text.9" | "#purple-text.00" | "#purple-text.01" | "#purple-text.02" | "#purple-text.03" | "#purple-text.04" | "#purple-text.05" | "#purple-text.06" | "#purple-text.07" | "#purple-text.08" | "#purple-text.09" | "#purple-text.10" | "#purple-text.11" | "#purple-text.12" | "#purple-text.13" | "#purple-text.14" | "#purple-text.15" | "#purple-text.16" | "#purple-text.17" | "#purple-text.18" | "#purple-text.19" | "#purple-text.20" | "#purple-text.21" | "#purple-text.22" | "#purple-text.23" | "#purple-text.24" | "#purple-text.25" | "#purple-text.26" | "#purple-text.27" | "#purple-text.28" | "#purple-text.29" | "#purple-text.30" | "#purple-text.31" | "#purple-text.32" | "#purple-text.33" | "#purple-text.34" | "#purple-text.35" | "#purple-text.36" | "#purple-text.37" | "#purple-text.38" | "#purple-text.39" | "#purple-text.40" | "#purple-text.41" | "#purple-text.42" | "#purple-text.43" | "#purple-text.44" | "#purple-text.45" | "#purple-text.46" | "#purple-text.47" | "#purple-text.48" | "#purple-text.49" | "#purple-text.50" | "#purple-text.51" | "#purple-text.52" | "#purple-text.53" | "#purple-text.54" | "#purple-text.55" | "#purple-text.56" | "#purple-text.57" | "#purple-text.58" | "#purple-text.59" | "#purple-text.60" | "#purple-text.61" | "#purple-text.62" | "#purple-text.63" | "#purple-text.64" | "#purple-text.65" | "#purple-text.66" | "#purple-text.67" | "#purple-text.68" | "#purple-text.69" | "#purple-text.70" | "#purple-text.71" | "#purple-text.72" | "#purple-text.73" | "#purple-text.74" | "#purple-text.75" | "#purple-text.76" | "#purple-text.77" | "#purple-text.78" | "#purple-text.79" | "#purple-text.80" | "#purple-text.81" | "#purple-text.82" | "#purple-text.83" | "#purple-text.84" | "#purple-text.85" | "#purple-text.86" | "#purple-text.87" | "#purple-text.88" | "#purple-text.89" | "#purple-text.90" | "#purple-text.91" | "#purple-text.92" | "#purple-text.93" | "#purple-text.94" | "#purple-text.95" | "#purple-text.96" | "#purple-text.97" | "#purple-text.98" | "#purple-text.99" | "#purple-text.100" | "#purple-icon" | "#purple-icon.0" | "#purple-icon.1" | "#purple-icon.2" | "#purple-icon.3" | "#purple-icon.4" | "#purple-icon.5" | "#purple-icon.6" | "#purple-icon.7" | "#purple-icon.8" | "#purple-icon.9" | "#purple-icon.00" | "#purple-icon.01" | "#purple-icon.02" | "#purple-icon.03" | "#purple-icon.04" | "#purple-icon.05" | "#purple-icon.06" | "#purple-icon.07" | "#purple-icon.08" | "#purple-icon.09" | "#purple-icon.10" | "#purple-icon.11" | "#purple-icon.12" | "#purple-icon.13" | "#purple-icon.14" | "#purple-icon.15" | "#purple-icon.16" | "#purple-icon.17" | "#purple-icon.18" | "#purple-icon.19" | "#purple-icon.20" | "#purple-icon.21" | "#purple-icon.22" | "#purple-icon.23" | "#purple-icon.24" | "#purple-icon.25" | "#purple-icon.26" | "#purple-icon.27" | "#purple-icon.28" | "#purple-icon.29" | "#purple-icon.30" | "#purple-icon.31" | "#purple-icon.32" | "#purple-icon.33" | "#purple-icon.34" | "#purple-icon.35" | "#purple-icon.36" | "#purple-icon.37" | "#purple-icon.38" | "#purple-icon.39" | "#purple-icon.40" | "#purple-icon.41" | "#purple-icon.42" | "#purple-icon.43" | "#purple-icon.44" | "#purple-icon.45" | "#purple-icon.46" | "#purple-icon.47" | "#purple-icon.48" | "#purple-icon.49" | "#purple-icon.50" | "#purple-icon.51" | "#purple-icon.52" | "#purple-icon.53" | "#purple-icon.54" | "#purple-icon.55" | "#purple-icon.56" | "#purple-icon.57" | "#purple-icon.58" | "#purple-icon.59" | "#purple-icon.60" | "#purple-icon.61" | "#purple-icon.62" | "#purple-icon.63" | "#purple-icon.64" | "#purple-icon.65" | "#purple-icon.66" | "#purple-icon.67" | "#purple-icon.68" | "#purple-icon.69" | "#purple-icon.70" | "#purple-icon.71" | "#purple-icon.72" | "#purple-icon.73" | "#purple-icon.74" | "#purple-icon.75" | "#purple-icon.76" | "#purple-icon.77" | "#purple-icon.78" | "#purple-icon.79" | "#purple-icon.80" | "#purple-icon.81" | "#purple-icon.82" | "#purple-icon.83" | "#purple-icon.84" | "#purple-icon.85" | "#purple-icon.86" | "#purple-icon.87" | "#purple-icon.88" | "#purple-icon.89" | "#purple-icon.90" | "#purple-icon.91" | "#purple-icon.92" | "#purple-icon.93" | "#purple-icon.94" | "#purple-icon.95" | "#purple-icon.96" | "#purple-icon.97" | "#purple-icon.98" | "#purple-icon.99" | "#purple-icon.100" | "#purple-bg" | "#purple-bg.0" | "#purple-bg.1" | "#purple-bg.2" | "#purple-bg.3" | "#purple-bg.4" | "#purple-bg.5" | "#purple-bg.6" | "#purple-bg.7" | "#purple-bg.8" | "#purple-bg.9" | "#purple-bg.00" | "#purple-bg.01" | "#purple-bg.02" | "#purple-bg.03" | "#purple-bg.04" | "#purple-bg.05" | "#purple-bg.06" | "#purple-bg.07" | "#purple-bg.08" | "#purple-bg.09" | "#purple-bg.10" | "#purple-bg.11" | "#purple-bg.12" | "#purple-bg.13" | "#purple-bg.14" | "#purple-bg.15" | "#purple-bg.16" | "#purple-bg.17" | "#purple-bg.18" | "#purple-bg.19" | "#purple-bg.20" | "#purple-bg.21" | "#purple-bg.22" | "#purple-bg.23" | "#purple-bg.24" | "#purple-bg.25" | "#purple-bg.26" | "#purple-bg.27" | "#purple-bg.28" | "#purple-bg.29" | "#purple-bg.30" | "#purple-bg.31" | "#purple-bg.32" | "#purple-bg.33" | "#purple-bg.34" | "#purple-bg.35" | "#purple-bg.36" | "#purple-bg.37" | "#purple-bg.38" | "#purple-bg.39" | "#purple-bg.40" | "#purple-bg.41" | "#purple-bg.42" | "#purple-bg.43" | "#purple-bg.44" | "#purple-bg.45" | "#purple-bg.46" | "#purple-bg.47" | "#purple-bg.48" | "#purple-bg.49" | "#purple-bg.50" | "#purple-bg.51" | "#purple-bg.52" | "#purple-bg.53" | "#purple-bg.54" | "#purple-bg.55" | "#purple-bg.56" | "#purple-bg.57" | "#purple-bg.58" | "#purple-bg.59" | "#purple-bg.60" | "#purple-bg.61" | "#purple-bg.62" | "#purple-bg.63" | "#purple-bg.64" | "#purple-bg.65" | "#purple-bg.66" | "#purple-bg.67" | "#purple-bg.68" | "#purple-bg.69" | "#purple-bg.70" | "#purple-bg.71" | "#purple-bg.72" | "#purple-bg.73" | "#purple-bg.74" | "#purple-bg.75" | "#purple-bg.76" | "#purple-bg.77" | "#purple-bg.78" | "#purple-bg.79" | "#purple-bg.80" | "#purple-bg.81" | "#purple-bg.82" | "#purple-bg.83" | "#purple-bg.84" | "#purple-bg.85" | "#purple-bg.86" | "#purple-bg.87" | "#purple-bg.88" | "#purple-bg.89" | "#purple-bg.90" | "#purple-bg.91" | "#purple-bg.92" | "#purple-bg.93" | "#purple-bg.94" | "#purple-bg.95" | "#purple-bg.96" | "#purple-bg.97" | "#purple-bg.98" | "#purple-bg.99" | "#purple-bg.100" | "#purple-01" | "#purple-01.0" | "#purple-01.1" | "#purple-01.2" | "#purple-01.3" | "#purple-01.4" | "#purple-01.5" | "#purple-01.6" | "#purple-01.7" | "#purple-01.8" | "#purple-01.9" | "#purple-01.00" | "#purple-01.01" | "#purple-01.02" | "#purple-01.03" | "#purple-01.04" | "#purple-01.05" | "#purple-01.06" | "#purple-01.07" | "#purple-01.08" | "#purple-01.09" | "#purple-01.10" | "#purple-01.11" | "#purple-01.12" | "#purple-01.13" | "#purple-01.14" | "#purple-01.15" | "#purple-01.16" | "#purple-01.17" | "#purple-01.18" | "#purple-01.19" | "#purple-01.20" | "#purple-01.21" | "#purple-01.22" | "#purple-01.23" | "#purple-01.24" | "#purple-01.25" | "#purple-01.26" | "#purple-01.27" | "#purple-01.28" | "#purple-01.29" | "#purple-01.30" | "#purple-01.31" | "#purple-01.32" | "#purple-01.33" | "#purple-01.34" | "#purple-01.35" | "#purple-01.36" | "#purple-01.37" | "#purple-01.38" | "#purple-01.39" | "#purple-01.40" | "#purple-01.41" | "#purple-01.42" | "#purple-01.43" | "#purple-01.44" | "#purple-01.45" | "#purple-01.46" | "#purple-01.47" | "#purple-01.48" | "#purple-01.49" | "#purple-01.50" | "#purple-01.51" | "#purple-01.52" | "#purple-01.53" | "#purple-01.54" | "#purple-01.55" | "#purple-01.56" | "#purple-01.57" | "#purple-01.58" | "#purple-01.59" | "#purple-01.60" | "#purple-01.61" | "#purple-01.62" | "#purple-01.63" | "#purple-01.64" | "#purple-01.65" | "#purple-01.66" | "#purple-01.67" | "#purple-01.68" | "#purple-01.69" | "#purple-01.70" | "#purple-01.71" | "#purple-01.72" | "#purple-01.73" | "#purple-01.74" | "#purple-01.75" | "#purple-01.76" | "#purple-01.77" | "#purple-01.78" | "#purple-01.79" | "#purple-01.80" | "#purple-01.81" | "#purple-01.82" | "#purple-01.83" | "#purple-01.84" | "#purple-01.85" | "#purple-01.86" | "#purple-01.87" | "#purple-01.88" | "#purple-01.89" | "#purple-01.90" | "#purple-01.91" | "#purple-01.92" | "#purple-01.93" | "#purple-01.94" | "#purple-01.95" | "#purple-01.96" | "#purple-01.97" | "#purple-01.98" | "#purple-01.99" | "#purple-01.100" | "#purple-02" | "#purple-02.0" | "#purple-02.1" | "#purple-02.2" | "#purple-02.3" | "#purple-02.4" | "#purple-02.5" | "#purple-02.6" | "#purple-02.7" | "#purple-02.8" | "#purple-02.9" | "#purple-02.00" | "#purple-02.01" | "#purple-02.02" | "#purple-02.03" | "#purple-02.04" | "#purple-02.05" | "#purple-02.06" | "#purple-02.07" | "#purple-02.08" | "#purple-02.09" | "#purple-02.10" | "#purple-02.11" | "#purple-02.12" | "#purple-02.13" | "#purple-02.14" | "#purple-02.15" | "#purple-02.16" | "#purple-02.17" | "#purple-02.18" | "#purple-02.19" | "#purple-02.20" | "#purple-02.21" | "#purple-02.22" | "#purple-02.23" | "#purple-02.24" | "#purple-02.25" | "#purple-02.26" | "#purple-02.27" | "#purple-02.28" | "#purple-02.29" | "#purple-02.30" | "#purple-02.31" | "#purple-02.32" | "#purple-02.33" | "#purple-02.34" | "#purple-02.35" | "#purple-02.36" | "#purple-02.37" | "#purple-02.38" | "#purple-02.39" | "#purple-02.40" | "#purple-02.41" | "#purple-02.42" | "#purple-02.43" | "#purple-02.44" | "#purple-02.45" | "#purple-02.46" | "#purple-02.47" | "#purple-02.48" | "#purple-02.49" | "#purple-02.50" | "#purple-02.51" | "#purple-02.52" | "#purple-02.53" | "#purple-02.54" | "#purple-02.55" | "#purple-02.56" | "#purple-02.57" | "#purple-02.58" | "#purple-02.59" | "#purple-02.60" | "#purple-02.61" | "#purple-02.62" | "#purple-02.63" | "#purple-02.64" | "#purple-02.65" | "#purple-02.66" | "#purple-02.67" | "#purple-02.68" | "#purple-02.69" | "#purple-02.70" | "#purple-02.71" | "#purple-02.72" | "#purple-02.73" | "#purple-02.74" | "#purple-02.75" | "#purple-02.76" | "#purple-02.77" | "#purple-02.78" | "#purple-02.79" | "#purple-02.80" | "#purple-02.81" | "#purple-02.82" | "#purple-02.83" | "#purple-02.84" | "#purple-02.85" | "#purple-02.86" | "#purple-02.87" | "#purple-02.88" | "#purple-02.89" | "#purple-02.90" | "#purple-02.91" | "#purple-02.92" | "#purple-02.93" | "#purple-02.94" | "#purple-02.95" | "#purple-02.96" | "#purple-02.97" | "#purple-02.98" | "#purple-02.99" | "#purple-02.100" | "#purple-03" | "#purple-03.0" | "#purple-03.1" | "#purple-03.2" | "#purple-03.3" | "#purple-03.4" | "#purple-03.5" | "#purple-03.6" | "#purple-03.7" | "#purple-03.8" | "#purple-03.9" | "#purple-03.00" | "#purple-03.01" | "#purple-03.02" | "#purple-03.03" | "#purple-03.04" | "#purple-03.05" | "#purple-03.06" | "#purple-03.07" | "#purple-03.08" | "#purple-03.09" | "#purple-03.10" | "#purple-03.11" | "#purple-03.12" | "#purple-03.13" | "#purple-03.14" | "#purple-03.15" | "#purple-03.16" | "#purple-03.17" | "#purple-03.18" | "#purple-03.19" | "#purple-03.20" | "#purple-03.21" | "#purple-03.22" | "#purple-03.23" | "#purple-03.24" | "#purple-03.25" | "#purple-03.26" | "#purple-03.27" | "#purple-03.28" | "#purple-03.29" | "#purple-03.30" | "#purple-03.31" | "#purple-03.32" | "#purple-03.33" | "#purple-03.34" | "#purple-03.35" | "#purple-03.36" | "#purple-03.37" | "#purple-03.38" | "#purple-03.39" | "#purple-03.40" | "#purple-03.41" | "#purple-03.42" | "#purple-03.43" | "#purple-03.44" | "#purple-03.45" | "#purple-03.46" | "#purple-03.47" | "#purple-03.48" | "#purple-03.49" | "#purple-03.50" | "#purple-03.51" | "#purple-03.52" | "#purple-03.53" | "#purple-03.54" | "#purple-03.55" | "#purple-03.56" | "#purple-03.57" | "#purple-03.58" | "#purple-03.59" | "#purple-03.60" | "#purple-03.61" | "#purple-03.62" | "#purple-03.63" | "#purple-03.64" | "#purple-03.65" | "#purple-03.66" | "#purple-03.67" | "#purple-03.68" | "#purple-03.69" | "#purple-03.70" | "#purple-03.71" | "#purple-03.72" | "#purple-03.73" | "#purple-03.74" | "#purple-03.75" | "#purple-03.76" | "#purple-03.77" | "#purple-03.78" | "#purple-03.79" | "#purple-03.80" | "#purple-03.81" | "#purple-03.82" | "#purple-03.83" | "#purple-03.84" | "#purple-03.85" | "#purple-03.86" | "#purple-03.87" | "#purple-03.88" | "#purple-03.89" | "#purple-03.90" | "#purple-03.91" | "#purple-03.92" | "#purple-03.93" | "#purple-03.94" | "#purple-03.95" | "#purple-03.96" | "#purple-03.97" | "#purple-03.98" | "#purple-03.99" | "#purple-03.100" | "#purple-04" | "#purple-04.0" | "#purple-04.1" | "#purple-04.2" | "#purple-04.3" | "#purple-04.4" | "#purple-04.5" | "#purple-04.6" | "#purple-04.7" | "#purple-04.8" | "#purple-04.9" | "#purple-04.00" | "#purple-04.01" | "#purple-04.02" | "#purple-04.03" | "#purple-04.04" | "#purple-04.05" | "#purple-04.06" | "#purple-04.07" | "#purple-04.08" | "#purple-04.09" | "#purple-04.10" | "#purple-04.11" | "#purple-04.12" | "#purple-04.13" | "#purple-04.14" | "#purple-04.15" | "#purple-04.16" | "#purple-04.17" | "#purple-04.18" | "#purple-04.19" | "#purple-04.20" | "#purple-04.21" | "#purple-04.22" | "#purple-04.23" | "#purple-04.24" | "#purple-04.25" | "#purple-04.26" | "#purple-04.27" | "#purple-04.28" | "#purple-04.29" | "#purple-04.30" | "#purple-04.31" | "#purple-04.32" | "#purple-04.33" | "#purple-04.34" | "#purple-04.35" | "#purple-04.36" | "#purple-04.37" | "#purple-04.38" | "#purple-04.39" | "#purple-04.40" | "#purple-04.41" | "#purple-04.42" | "#purple-04.43" | "#purple-04.44" | "#purple-04.45" | "#purple-04.46" | "#purple-04.47" | "#purple-04.48" | "#purple-04.49" | "#purple-04.50" | "#purple-04.51" | "#purple-04.52" | "#purple-04.53" | "#purple-04.54" | "#purple-04.55" | "#purple-04.56" | "#purple-04.57" | "#purple-04.58" | "#purple-04.59" | "#purple-04.60" | "#purple-04.61" | "#purple-04.62" | "#purple-04.63" | "#purple-04.64" | "#purple-04.65" | "#purple-04.66" | "#purple-04.67" | "#purple-04.68" | "#purple-04.69" | "#purple-04.70" | "#purple-04.71" | "#purple-04.72" | "#purple-04.73" | "#purple-04.74" | "#purple-04.75" | "#purple-04.76" | "#purple-04.77" | "#purple-04.78" | "#purple-04.79" | "#purple-04.80" | "#purple-04.81" | "#purple-04.82" | "#purple-04.83" | "#purple-04.84" | "#purple-04.85" | "#purple-04.86" | "#purple-04.87" | "#purple-04.88" | "#purple-04.89" | "#purple-04.90" | "#purple-04.91" | "#purple-04.92" | "#purple-04.93" | "#purple-04.94" | "#purple-04.95" | "#purple-04.96" | "#purple-04.97" | "#purple-04.98" | "#purple-04.99" | "#purple-04.100" | "#dark" | "#dark.0" | "#dark.1" | "#dark.2" | "#dark.3" | "#dark.4" | "#dark.5" | "#dark.6" | "#dark.7" | "#dark.8" | "#dark.9" | "#dark.00" | "#dark.01" | "#dark.02" | "#dark.03" | "#dark.04" | "#dark.05" | "#dark.06" | "#dark.07" | "#dark.08" | "#dark.09" | "#dark.10" | "#dark.11" | "#dark.12" | "#dark.13" | "#dark.14" | "#dark.15" | "#dark.16" | "#dark.17" | "#dark.18" | "#dark.19" | "#dark.20" | "#dark.21" | "#dark.22" | "#dark.23" | "#dark.24" | "#dark.25" | "#dark.26" | "#dark.27" | "#dark.28" | "#dark.29" | "#dark.30" | "#dark.31" | "#dark.32" | "#dark.33" | "#dark.34" | "#dark.35" | "#dark.36" | "#dark.37" | "#dark.38" | "#dark.39" | "#dark.40" | "#dark.41" | "#dark.42" | "#dark.43" | "#dark.44" | "#dark.45" | "#dark.46" | "#dark.47" | "#dark.48" | "#dark.49" | "#dark.50" | "#dark.51" | "#dark.52" | "#dark.53" | "#dark.54" | "#dark.55" | "#dark.56" | "#dark.57" | "#dark.58" | "#dark.59" | "#dark.60" | "#dark.61" | "#dark.62" | "#dark.63" | "#dark.64" | "#dark.65" | "#dark.66" | "#dark.67" | "#dark.68" | "#dark.69" | "#dark.70" | "#dark.71" | "#dark.72" | "#dark.73" | "#dark.74" | "#dark.75" | "#dark.76" | "#dark.77" | "#dark.78" | "#dark.79" | "#dark.80" | "#dark.81" | "#dark.82" | "#dark.83" | "#dark.84" | "#dark.85" | "#dark.86" | "#dark.87" | "#dark.88" | "#dark.89" | "#dark.90" | "#dark.91" | "#dark.92" | "#dark.93" | "#dark.94" | "#dark.95" | "#dark.96" | "#dark.97" | "#dark.98" | "#dark.99" | "#dark.100" | "#dark-01" | "#dark-01.0" | "#dark-01.1" | "#dark-01.2" | "#dark-01.3" | "#dark-01.4" | "#dark-01.5" | "#dark-01.6" | "#dark-01.7" | "#dark-01.8" | "#dark-01.9" | "#dark-01.00" | "#dark-01.01" | "#dark-01.02" | "#dark-01.03" | "#dark-01.04" | "#dark-01.05" | "#dark-01.06" | "#dark-01.07" | "#dark-01.08" | "#dark-01.09" | "#dark-01.10" | "#dark-01.11" | "#dark-01.12" | "#dark-01.13" | "#dark-01.14" | "#dark-01.15" | "#dark-01.16" | "#dark-01.17" | "#dark-01.18" | "#dark-01.19" | "#dark-01.20" | "#dark-01.21" | "#dark-01.22" | "#dark-01.23" | "#dark-01.24" | "#dark-01.25" | "#dark-01.26" | "#dark-01.27" | "#dark-01.28" | "#dark-01.29" | "#dark-01.30" | "#dark-01.31" | "#dark-01.32" | "#dark-01.33" | "#dark-01.34" | "#dark-01.35" | "#dark-01.36" | "#dark-01.37" | "#dark-01.38" | "#dark-01.39" | "#dark-01.40" | "#dark-01.41" | "#dark-01.42" | "#dark-01.43" | "#dark-01.44" | "#dark-01.45" | "#dark-01.46" | "#dark-01.47" | "#dark-01.48" | "#dark-01.49" | "#dark-01.50" | "#dark-01.51" | "#dark-01.52" | "#dark-01.53" | "#dark-01.54" | "#dark-01.55" | "#dark-01.56" | "#dark-01.57" | "#dark-01.58" | "#dark-01.59" | "#dark-01.60" | "#dark-01.61" | "#dark-01.62" | "#dark-01.63" | "#dark-01.64" | "#dark-01.65" | "#dark-01.66" | "#dark-01.67" | "#dark-01.68" | "#dark-01.69" | "#dark-01.70" | "#dark-01.71" | "#dark-01.72" | "#dark-01.73" | "#dark-01.74" | "#dark-01.75" | "#dark-01.76" | "#dark-01.77" | "#dark-01.78" | "#dark-01.79" | "#dark-01.80" | "#dark-01.81" | "#dark-01.82" | "#dark-01.83" | "#dark-01.84" | "#dark-01.85" | "#dark-01.86" | "#dark-01.87" | "#dark-01.88" | "#dark-01.89" | "#dark-01.90" | "#dark-01.91" | "#dark-01.92" | "#dark-01.93" | "#dark-01.94" | "#dark-01.95" | "#dark-01.96" | "#dark-01.97" | "#dark-01.98" | "#dark-01.99" | "#dark-01.100" | "#dark-02" | "#dark-02.0" | "#dark-02.1" | "#dark-02.2" | "#dark-02.3" | "#dark-02.4" | "#dark-02.5" | "#dark-02.6" | "#dark-02.7" | "#dark-02.8" | "#dark-02.9" | "#dark-02.00" | "#dark-02.01" | "#dark-02.02" | "#dark-02.03" | "#dark-02.04" | "#dark-02.05" | "#dark-02.06" | "#dark-02.07" | "#dark-02.08" | "#dark-02.09" | "#dark-02.10" | "#dark-02.11" | "#dark-02.12" | "#dark-02.13" | "#dark-02.14" | "#dark-02.15" | "#dark-02.16" | "#dark-02.17" | "#dark-02.18" | "#dark-02.19" | "#dark-02.20" | "#dark-02.21" | "#dark-02.22" | "#dark-02.23" | "#dark-02.24" | "#dark-02.25" | "#dark-02.26" | "#dark-02.27" | "#dark-02.28" | "#dark-02.29" | "#dark-02.30" | "#dark-02.31" | "#dark-02.32" | "#dark-02.33" | "#dark-02.34" | "#dark-02.35" | "#dark-02.36" | "#dark-02.37" | "#dark-02.38" | "#dark-02.39" | "#dark-02.40" | "#dark-02.41" | "#dark-02.42" | "#dark-02.43" | "#dark-02.44" | "#dark-02.45" | "#dark-02.46" | "#dark-02.47" | "#dark-02.48" | "#dark-02.49" | "#dark-02.50" | "#dark-02.51" | "#dark-02.52" | "#dark-02.53" | "#dark-02.54" | "#dark-02.55" | "#dark-02.56" | "#dark-02.57" | "#dark-02.58" | "#dark-02.59" | "#dark-02.60" | "#dark-02.61" | "#dark-02.62" | "#dark-02.63" | "#dark-02.64" | "#dark-02.65" | "#dark-02.66" | "#dark-02.67" | "#dark-02.68" | "#dark-02.69" | "#dark-02.70" | "#dark-02.71" | "#dark-02.72" | "#dark-02.73" | "#dark-02.74" | "#dark-02.75" | "#dark-02.76" | "#dark-02.77" | "#dark-02.78" | "#dark-02.79" | "#dark-02.80" | "#dark-02.81" | "#dark-02.82" | "#dark-02.83" | "#dark-02.84" | "#dark-02.85" | "#dark-02.86" | "#dark-02.87" | "#dark-02.88" | "#dark-02.89" | "#dark-02.90" | "#dark-02.91" | "#dark-02.92" | "#dark-02.93" | "#dark-02.94" | "#dark-02.95" | "#dark-02.96" | "#dark-02.97" | "#dark-02.98" | "#dark-02.99" | "#dark-02.100" | "#dark-03" | "#dark-03.0" | "#dark-03.1" | "#dark-03.2" | "#dark-03.3" | "#dark-03.4" | "#dark-03.5" | "#dark-03.6" | "#dark-03.7" | "#dark-03.8" | "#dark-03.9" | "#dark-03.00" | "#dark-03.01" | "#dark-03.02" | "#dark-03.03" | "#dark-03.04" | "#dark-03.05" | "#dark-03.06" | "#dark-03.07" | "#dark-03.08" | "#dark-03.09" | "#dark-03.10" | "#dark-03.11" | "#dark-03.12" | "#dark-03.13" | "#dark-03.14" | "#dark-03.15" | "#dark-03.16" | "#dark-03.17" | "#dark-03.18" | "#dark-03.19" | "#dark-03.20" | "#dark-03.21" | "#dark-03.22" | "#dark-03.23" | "#dark-03.24" | "#dark-03.25" | "#dark-03.26" | "#dark-03.27" | "#dark-03.28" | "#dark-03.29" | "#dark-03.30" | "#dark-03.31" | "#dark-03.32" | "#dark-03.33" | "#dark-03.34" | "#dark-03.35" | "#dark-03.36" | "#dark-03.37" | "#dark-03.38" | "#dark-03.39" | "#dark-03.40" | "#dark-03.41" | "#dark-03.42" | "#dark-03.43" | "#dark-03.44" | "#dark-03.45" | "#dark-03.46" | "#dark-03.47" | "#dark-03.48" | "#dark-03.49" | "#dark-03.50" | "#dark-03.51" | "#dark-03.52" | "#dark-03.53" | "#dark-03.54" | "#dark-03.55" | "#dark-03.56" | "#dark-03.57" | "#dark-03.58" | "#dark-03.59" | "#dark-03.60" | "#dark-03.61" | "#dark-03.62" | "#dark-03.63" | "#dark-03.64" | "#dark-03.65" | "#dark-03.66" | "#dark-03.67" | "#dark-03.68" | "#dark-03.69" | "#dark-03.70" | "#dark-03.71" | "#dark-03.72" | "#dark-03.73" | "#dark-03.74" | "#dark-03.75" | "#dark-03.76" | "#dark-03.77" | "#dark-03.78" | "#dark-03.79" | "#dark-03.80" | "#dark-03.81" | "#dark-03.82" | "#dark-03.83" | "#dark-03.84" | "#dark-03.85" | "#dark-03.86" | "#dark-03.87" | "#dark-03.88" | "#dark-03.89" | "#dark-03.90" | "#dark-03.91" | "#dark-03.92" | "#dark-03.93" | "#dark-03.94" | "#dark-03.95" | "#dark-03.96" | "#dark-03.97" | "#dark-03.98" | "#dark-03.99" | "#dark-03.100" | "#dark-04" | "#dark-04.0" | "#dark-04.1" | "#dark-04.2" | "#dark-04.3" | "#dark-04.4" | "#dark-04.5" | "#dark-04.6" | "#dark-04.7" | "#dark-04.8" | "#dark-04.9" | "#dark-04.00" | "#dark-04.01" | "#dark-04.02" | "#dark-04.03" | "#dark-04.04" | "#dark-04.05" | "#dark-04.06" | "#dark-04.07" | "#dark-04.08" | "#dark-04.09" | "#dark-04.10" | "#dark-04.11" | "#dark-04.12" | "#dark-04.13" | "#dark-04.14" | "#dark-04.15" | "#dark-04.16" | "#dark-04.17" | "#dark-04.18" | "#dark-04.19" | "#dark-04.20" | "#dark-04.21" | "#dark-04.22" | "#dark-04.23" | "#dark-04.24" | "#dark-04.25" | "#dark-04.26" | "#dark-04.27" | "#dark-04.28" | "#dark-04.29" | "#dark-04.30" | "#dark-04.31" | "#dark-04.32" | "#dark-04.33" | "#dark-04.34" | "#dark-04.35" | "#dark-04.36" | "#dark-04.37" | "#dark-04.38" | "#dark-04.39" | "#dark-04.40" | "#dark-04.41" | "#dark-04.42" | "#dark-04.43" | "#dark-04.44" | "#dark-04.45" | "#dark-04.46" | "#dark-04.47" | "#dark-04.48" | "#dark-04.49" | "#dark-04.50" | "#dark-04.51" | "#dark-04.52" | "#dark-04.53" | "#dark-04.54" | "#dark-04.55" | "#dark-04.56" | "#dark-04.57" | "#dark-04.58" | "#dark-04.59" | "#dark-04.60" | "#dark-04.61" | "#dark-04.62" | "#dark-04.63" | "#dark-04.64" | "#dark-04.65" | "#dark-04.66" | "#dark-04.67" | "#dark-04.68" | "#dark-04.69" | "#dark-04.70" | "#dark-04.71" | "#dark-04.72" | "#dark-04.73" | "#dark-04.74" | "#dark-04.75" | "#dark-04.76" | "#dark-04.77" | "#dark-04.78" | "#dark-04.79" | "#dark-04.80" | "#dark-04.81" | "#dark-04.82" | "#dark-04.83" | "#dark-04.84" | "#dark-04.85" | "#dark-04.86" | "#dark-04.87" | "#dark-04.88" | "#dark-04.89" | "#dark-04.90" | "#dark-04.91" | "#dark-04.92" | "#dark-04.93" | "#dark-04.94" | "#dark-04.95" | "#dark-04.96" | "#dark-04.97" | "#dark-04.98" | "#dark-04.99" | "#dark-04.100" | "#dark-05" | "#dark-05.0" | "#dark-05.1" | "#dark-05.2" | "#dark-05.3" | "#dark-05.4" | "#dark-05.5" | "#dark-05.6" | "#dark-05.7" | "#dark-05.8" | "#dark-05.9" | "#dark-05.00" | "#dark-05.01" | "#dark-05.02" | "#dark-05.03" | "#dark-05.04" | "#dark-05.05" | "#dark-05.06" | "#dark-05.07" | "#dark-05.08" | "#dark-05.09" | "#dark-05.10" | "#dark-05.11" | "#dark-05.12" | "#dark-05.13" | "#dark-05.14" | "#dark-05.15" | "#dark-05.16" | "#dark-05.17" | "#dark-05.18" | "#dark-05.19" | "#dark-05.20" | "#dark-05.21" | "#dark-05.22" | "#dark-05.23" | "#dark-05.24" | "#dark-05.25" | "#dark-05.26" | "#dark-05.27" | "#dark-05.28" | "#dark-05.29" | "#dark-05.30" | "#dark-05.31" | "#dark-05.32" | "#dark-05.33" | "#dark-05.34" | "#dark-05.35" | "#dark-05.36" | "#dark-05.37" | "#dark-05.38" | "#dark-05.39" | "#dark-05.40" | "#dark-05.41" | "#dark-05.42" | "#dark-05.43" | "#dark-05.44" | "#dark-05.45" | "#dark-05.46" | "#dark-05.47" | "#dark-05.48" | "#dark-05.49" | "#dark-05.50" | "#dark-05.51" | "#dark-05.52" | "#dark-05.53" | "#dark-05.54" | "#dark-05.55" | "#dark-05.56" | "#dark-05.57" | "#dark-05.58" | "#dark-05.59" | "#dark-05.60" | "#dark-05.61" | "#dark-05.62" | "#dark-05.63" | "#dark-05.64" | "#dark-05.65" | "#dark-05.66" | "#dark-05.67" | "#dark-05.68" | "#dark-05.69" | "#dark-05.70" | "#dark-05.71" | "#dark-05.72" | "#dark-05.73" | "#dark-05.74" | "#dark-05.75" | "#dark-05.76" | "#dark-05.77" | "#dark-05.78" | "#dark-05.79" | "#dark-05.80" | "#dark-05.81" | "#dark-05.82" | "#dark-05.83" | "#dark-05.84" | "#dark-05.85" | "#dark-05.86" | "#dark-05.87" | "#dark-05.88" | "#dark-05.89" | "#dark-05.90" | "#dark-05.91" | "#dark-05.92" | "#dark-05.93" | "#dark-05.94" | "#dark-05.95" | "#dark-05.96" | "#dark-05.97" | "#dark-05.98" | "#dark-05.99" | "#dark-05.100" | "#dark-bg" | "#dark-bg.0" | "#dark-bg.1" | "#dark-bg.2" | "#dark-bg.3" | "#dark-bg.4" | "#dark-bg.5" | "#dark-bg.6" | "#dark-bg.7" | "#dark-bg.8" | "#dark-bg.9" | "#dark-bg.00" | "#dark-bg.01" | "#dark-bg.02" | "#dark-bg.03" | "#dark-bg.04" | "#dark-bg.05" | "#dark-bg.06" | "#dark-bg.07" | "#dark-bg.08" | "#dark-bg.09" | "#dark-bg.10" | "#dark-bg.11" | "#dark-bg.12" | "#dark-bg.13" | "#dark-bg.14" | "#dark-bg.15" | "#dark-bg.16" | "#dark-bg.17" | "#dark-bg.18" | "#dark-bg.19" | "#dark-bg.20" | "#dark-bg.21" | "#dark-bg.22" | "#dark-bg.23" | "#dark-bg.24" | "#dark-bg.25" | "#dark-bg.26" | "#dark-bg.27" | "#dark-bg.28" | "#dark-bg.29" | "#dark-bg.30" | "#dark-bg.31" | "#dark-bg.32" | "#dark-bg.33" | "#dark-bg.34" | "#dark-bg.35" | "#dark-bg.36" | "#dark-bg.37" | "#dark-bg.38" | "#dark-bg.39" | "#dark-bg.40" | "#dark-bg.41" | "#dark-bg.42" | "#dark-bg.43" | "#dark-bg.44" | "#dark-bg.45" | "#dark-bg.46" | "#dark-bg.47" | "#dark-bg.48" | "#dark-bg.49" | "#dark-bg.50" | "#dark-bg.51" | "#dark-bg.52" | "#dark-bg.53" | "#dark-bg.54" | "#dark-bg.55" | "#dark-bg.56" | "#dark-bg.57" | "#dark-bg.58" | "#dark-bg.59" | "#dark-bg.60" | "#dark-bg.61" | "#dark-bg.62" | "#dark-bg.63" | "#dark-bg.64" | "#dark-bg.65" | "#dark-bg.66" | "#dark-bg.67" | "#dark-bg.68" | "#dark-bg.69" | "#dark-bg.70" | "#dark-bg.71" | "#dark-bg.72" | "#dark-bg.73" | "#dark-bg.74" | "#dark-bg.75" | "#dark-bg.76" | "#dark-bg.77" | "#dark-bg.78" | "#dark-bg.79" | "#dark-bg.80" | "#dark-bg.81" | "#dark-bg.82" | "#dark-bg.83" | "#dark-bg.84" | "#dark-bg.85" | "#dark-bg.86" | "#dark-bg.87" | "#dark-bg.88" | "#dark-bg.89" | "#dark-bg.90" | "#dark-bg.91" | "#dark-bg.92" | "#dark-bg.93" | "#dark-bg.94" | "#dark-bg.95" | "#dark-bg.96" | "#dark-bg.97" | "#dark-bg.98" | "#dark-bg.99" | "#dark-bg.100" | "#text" | "#text.0" | "#text.1" | "#text.2" | "#text.3" | "#text.4" | "#text.5" | "#text.6" | "#text.7" | "#text.8" | "#text.9" | "#text.00" | "#text.01" | "#text.02" | "#text.03" | "#text.04" | "#text.05" | "#text.06" | "#text.07" | "#text.08" | "#text.09" | "#text.10" | "#text.11" | "#text.12" | "#text.13" | "#text.14" | "#text.15" | "#text.16" | "#text.17" | "#text.18" | "#text.19" | "#text.20" | "#text.21" | "#text.22" | "#text.23" | "#text.24" | "#text.25" | "#text.26" | "#text.27" | "#text.28" | "#text.29" | "#text.30" | "#text.31" | "#text.32" | "#text.33" | "#text.34" | "#text.35" | "#text.36" | "#text.37" | "#text.38" | "#text.39" | "#text.40" | "#text.41" | "#text.42" | "#text.43" | "#text.44" | "#text.45" | "#text.46" | "#text.47" | "#text.48" | "#text.49" | "#text.50" | "#text.51" | "#text.52" | "#text.53" | "#text.54" | "#text.55" | "#text.56" | "#text.57" | "#text.58" | "#text.59" | "#text.60" | "#text.61" | "#text.62" | "#text.63" | "#text.64" | "#text.65" | "#text.66" | "#text.67" | "#text.68" | "#text.69" | "#text.70" | "#text.71" | "#text.72" | "#text.73" | "#text.74" | "#text.75" | "#text.76" | "#text.77" | "#text.78" | "#text.79" | "#text.80" | "#text.81" | "#text.82" | "#text.83" | "#text.84" | "#text.85" | "#text.86" | "#text.87" | "#text.88" | "#text.89" | "#text.90" | "#text.91" | "#text.92" | "#text.93" | "#text.94" | "#text.95" | "#text.96" | "#text.97" | "#text.98" | "#text.99" | "#text.100" | "#primary" | "#primary.0" | "#primary.1" | "#primary.2" | "#primary.3" | "#primary.4" | "#primary.5" | "#primary.6" | "#primary.7" | "#primary.8" | "#primary.9" | "#primary.00" | "#primary.01" | "#primary.02" | "#primary.03" | "#primary.04" | "#primary.05" | "#primary.06" | "#primary.07" | "#primary.08" | "#primary.09" | "#primary.10" | "#primary.11" | "#primary.12" | "#primary.13" | "#primary.14" | "#primary.15" | "#primary.16" | "#primary.17" | "#primary.18" | "#primary.19" | "#primary.20" | "#primary.21" | "#primary.22" | "#primary.23" | "#primary.24" | "#primary.25" | "#primary.26" | "#primary.27" | "#primary.28" | "#primary.29" | "#primary.30" | "#primary.31" | "#primary.32" | "#primary.33" | "#primary.34" | "#primary.35" | "#primary.36" | "#primary.37" | "#primary.38" | "#primary.39" | "#primary.40" | "#primary.41" | "#primary.42" | "#primary.43" | "#primary.44" | "#primary.45" | "#primary.46" | "#primary.47" | "#primary.48" | "#primary.49" | "#primary.50" | "#primary.51" | "#primary.52" | "#primary.53" | "#primary.54" | "#primary.55" | "#primary.56" | "#primary.57" | "#primary.58" | "#primary.59" | "#primary.60" | "#primary.61" | "#primary.62" | "#primary.63" | "#primary.64" | "#primary.65" | "#primary.66" | "#primary.67" | "#primary.68" | "#primary.69" | "#primary.70" | "#primary.71" | "#primary.72" | "#primary.73" | "#primary.74" | "#primary.75" | "#primary.76" | "#primary.77" | "#primary.78" | "#primary.79" | "#primary.80" | "#primary.81" | "#primary.82" | "#primary.83" | "#primary.84" | "#primary.85" | "#primary.86" | "#primary.87" | "#primary.88" | "#primary.89" | "#primary.90" | "#primary.91" | "#primary.92" | "#primary.93" | "#primary.94" | "#primary.95" | "#primary.96" | "#primary.97" | "#primary.98" | "#primary.99" | "#primary.100" | "#disabled" | "#disabled.0" | "#disabled.1" | "#disabled.2" | "#disabled.3" | "#disabled.4" | "#disabled.5" | "#disabled.6" | "#disabled.7" | "#disabled.8" | "#disabled.9" | "#disabled.00" | "#disabled.01" | "#disabled.02" | "#disabled.03" | "#disabled.04" | "#disabled.05" | "#disabled.06" | "#disabled.07" | "#disabled.08" | "#disabled.09" | "#disabled.10" | "#disabled.11" | "#disabled.12" | "#disabled.13" | "#disabled.14" | "#disabled.15" | "#disabled.16" | "#disabled.17" | "#disabled.18" | "#disabled.19" | "#disabled.20" | "#disabled.21" | "#disabled.22" | "#disabled.23" | "#disabled.24" | "#disabled.25" | "#disabled.26" | "#disabled.27" | "#disabled.28" | "#disabled.29" | "#disabled.30" | "#disabled.31" | "#disabled.32" | "#disabled.33" | "#disabled.34" | "#disabled.35" | "#disabled.36" | "#disabled.37" | "#disabled.38" | "#disabled.39" | "#disabled.40" | "#disabled.41" | "#disabled.42" | "#disabled.43" | "#disabled.44" | "#disabled.45" | "#disabled.46" | "#disabled.47" | "#disabled.48" | "#disabled.49" | "#disabled.50" | "#disabled.51" | "#disabled.52" | "#disabled.53" | "#disabled.54" | "#disabled.55" | "#disabled.56" | "#disabled.57" | "#disabled.58" | "#disabled.59" | "#disabled.60" | "#disabled.61" | "#disabled.62" | "#disabled.63" | "#disabled.64" | "#disabled.65" | "#disabled.66" | "#disabled.67" | "#disabled.68" | "#disabled.69" | "#disabled.70" | "#disabled.71" | "#disabled.72" | "#disabled.73" | "#disabled.74" | "#disabled.75" | "#disabled.76" | "#disabled.77" | "#disabled.78" | "#disabled.79" | "#disabled.80" | "#disabled.81" | "#disabled.82" | "#disabled.83" | "#disabled.84" | "#disabled.85" | "#disabled.86" | "#disabled.87" | "#disabled.88" | "#disabled.89" | "#disabled.90" | "#disabled.91" | "#disabled.92" | "#disabled.93" | "#disabled.94" | "#disabled.95" | "#disabled.96" | "#disabled.97" | "#disabled.98" | "#disabled.99" | "#disabled.100" | "#disabled-bg" | "#disabled-bg.0" | "#disabled-bg.1" | "#disabled-bg.2" | "#disabled-bg.3" | "#disabled-bg.4" | "#disabled-bg.5" | "#disabled-bg.6" | "#disabled-bg.7" | "#disabled-bg.8" | "#disabled-bg.9" | "#disabled-bg.00" | "#disabled-bg.01" | "#disabled-bg.02" | "#disabled-bg.03" | "#disabled-bg.04" | "#disabled-bg.05" | "#disabled-bg.06" | "#disabled-bg.07" | "#disabled-bg.08" | "#disabled-bg.09" | "#disabled-bg.10" | "#disabled-bg.11" | "#disabled-bg.12" | "#disabled-bg.13" | "#disabled-bg.14" | "#disabled-bg.15" | "#disabled-bg.16" | "#disabled-bg.17" | "#disabled-bg.18" | "#disabled-bg.19" | "#disabled-bg.20" | "#disabled-bg.21" | "#disabled-bg.22" | "#disabled-bg.23" | "#disabled-bg.24" | "#disabled-bg.25" | "#disabled-bg.26" | "#disabled-bg.27" | "#disabled-bg.28" | "#disabled-bg.29" | "#disabled-bg.30" | "#disabled-bg.31" | "#disabled-bg.32" | "#disabled-bg.33" | "#disabled-bg.34" | "#disabled-bg.35" | "#disabled-bg.36" | "#disabled-bg.37" | "#disabled-bg.38" | "#disabled-bg.39" | "#disabled-bg.40" | "#disabled-bg.41" | "#disabled-bg.42" | "#disabled-bg.43" | "#disabled-bg.44" | "#disabled-bg.45" | "#disabled-bg.46" | "#disabled-bg.47" | "#disabled-bg.48" | "#disabled-bg.49" | "#disabled-bg.50" | "#disabled-bg.51" | "#disabled-bg.52" | "#disabled-bg.53" | "#disabled-bg.54" | "#disabled-bg.55" | "#disabled-bg.56" | "#disabled-bg.57" | "#disabled-bg.58" | "#disabled-bg.59" | "#disabled-bg.60" | "#disabled-bg.61" | "#disabled-bg.62" | "#disabled-bg.63" | "#disabled-bg.64" | "#disabled-bg.65" | "#disabled-bg.66" | "#disabled-bg.67" | "#disabled-bg.68" | "#disabled-bg.69" | "#disabled-bg.70" | "#disabled-bg.71" | "#disabled-bg.72" | "#disabled-bg.73" | "#disabled-bg.74" | "#disabled-bg.75" | "#disabled-bg.76" | "#disabled-bg.77" | "#disabled-bg.78" | "#disabled-bg.79" | "#disabled-bg.80" | "#disabled-bg.81" | "#disabled-bg.82" | "#disabled-bg.83" | "#disabled-bg.84" | "#disabled-bg.85" | "#disabled-bg.86" | "#disabled-bg.87" | "#disabled-bg.88" | "#disabled-bg.89" | "#disabled-bg.90" | "#disabled-bg.91" | "#disabled-bg.92" | "#disabled-bg.93" | "#disabled-bg.94" | "#disabled-bg.95" | "#disabled-bg.96" | "#disabled-bg.97" | "#disabled-bg.98" | "#disabled-bg.99" | "#disabled-bg.100" | "#disabled-text" | "#disabled-text.0" | "#disabled-text.1" | "#disabled-text.2" | "#disabled-text.3" | "#disabled-text.4" | "#disabled-text.5" | "#disabled-text.6" | "#disabled-text.7" | "#disabled-text.8" | "#disabled-text.9" | "#disabled-text.00" | "#disabled-text.01" | "#disabled-text.02" | "#disabled-text.03" | "#disabled-text.04" | "#disabled-text.05" | "#disabled-text.06" | "#disabled-text.07" | "#disabled-text.08" | "#disabled-text.09" | "#disabled-text.10" | "#disabled-text.11" | "#disabled-text.12" | "#disabled-text.13" | "#disabled-text.14" | "#disabled-text.15" | "#disabled-text.16" | "#disabled-text.17" | "#disabled-text.18" | "#disabled-text.19" | "#disabled-text.20" | "#disabled-text.21" | "#disabled-text.22" | "#disabled-text.23" | "#disabled-text.24" | "#disabled-text.25" | "#disabled-text.26" | "#disabled-text.27" | "#disabled-text.28" | "#disabled-text.29" | "#disabled-text.30" | "#disabled-text.31" | "#disabled-text.32" | "#disabled-text.33" | "#disabled-text.34" | "#disabled-text.35" | "#disabled-text.36" | "#disabled-text.37" | "#disabled-text.38" | "#disabled-text.39" | "#disabled-text.40" | "#disabled-text.41" | "#disabled-text.42" | "#disabled-text.43" | "#disabled-text.44" | "#disabled-text.45" | "#disabled-text.46" | "#disabled-text.47" | "#disabled-text.48" | "#disabled-text.49" | "#disabled-text.50" | "#disabled-text.51" | "#disabled-text.52" | "#disabled-text.53" | "#disabled-text.54" | "#disabled-text.55" | "#disabled-text.56" | "#disabled-text.57" | "#disabled-text.58" | "#disabled-text.59" | "#disabled-text.60" | "#disabled-text.61" | "#disabled-text.62" | "#disabled-text.63" | "#disabled-text.64" | "#disabled-text.65" | "#disabled-text.66" | "#disabled-text.67" | "#disabled-text.68" | "#disabled-text.69" | "#disabled-text.70" | "#disabled-text.71" | "#disabled-text.72" | "#disabled-text.73" | "#disabled-text.74" | "#disabled-text.75" | "#disabled-text.76" | "#disabled-text.77" | "#disabled-text.78" | "#disabled-text.79" | "#disabled-text.80" | "#disabled-text.81" | "#disabled-text.82" | "#disabled-text.83" | "#disabled-text.84" | "#disabled-text.85" | "#disabled-text.86" | "#disabled-text.87" | "#disabled-text.88" | "#disabled-text.89" | "#disabled-text.90" | "#disabled-text.91" | "#disabled-text.92" | "#disabled-text.93" | "#disabled-text.94" | "#disabled-text.95" | "#disabled-text.96" | "#disabled-text.97" | "#disabled-text.98" | "#disabled-text.99" | "#disabled-text.100" | "#danger" | "#danger.0" | "#danger.1" | "#danger.2" | "#danger.3" | "#danger.4" | "#danger.5" | "#danger.6" | "#danger.7" | "#danger.8" | "#danger.9" | "#danger.00" | "#danger.01" | "#danger.02" | "#danger.03" | "#danger.04" | "#danger.05" | "#danger.06" | "#danger.07" | "#danger.08" | "#danger.09" | "#danger.10" | "#danger.11" | "#danger.12" | "#danger.13" | "#danger.14" | "#danger.15" | "#danger.16" | "#danger.17" | "#danger.18" | "#danger.19" | "#danger.20" | "#danger.21" | "#danger.22" | "#danger.23" | "#danger.24" | "#danger.25" | "#danger.26" | "#danger.27" | "#danger.28" | "#danger.29" | "#danger.30" | "#danger.31" | "#danger.32" | "#danger.33" | "#danger.34" | "#danger.35" | "#danger.36" | "#danger.37" | "#danger.38" | "#danger.39" | "#danger.40" | "#danger.41" | "#danger.42" | "#danger.43" | "#danger.44" | "#danger.45" | "#danger.46" | "#danger.47" | "#danger.48" | "#danger.49" | "#danger.50" | "#danger.51" | "#danger.52" | "#danger.53" | "#danger.54" | "#danger.55" | "#danger.56" | "#danger.57" | "#danger.58" | "#danger.59" | "#danger.60" | "#danger.61" | "#danger.62" | "#danger.63" | "#danger.64" | "#danger.65" | "#danger.66" | "#danger.67" | "#danger.68" | "#danger.69" | "#danger.70" | "#danger.71" | "#danger.72" | "#danger.73" | "#danger.74" | "#danger.75" | "#danger.76" | "#danger.77" | "#danger.78" | "#danger.79" | "#danger.80" | "#danger.81" | "#danger.82" | "#danger.83" | "#danger.84" | "#danger.85" | "#danger.86" | "#danger.87" | "#danger.88" | "#danger.89" | "#danger.90" | "#danger.91" | "#danger.92" | "#danger.93" | "#danger.94" | "#danger.95" | "#danger.96" | "#danger.97" | "#danger.98" | "#danger.99" | "#danger.100" | "#danger-bg" | "#danger-bg.0" | "#danger-bg.1" | "#danger-bg.2" | "#danger-bg.3" | "#danger-bg.4" | "#danger-bg.5" | "#danger-bg.6" | "#danger-bg.7" | "#danger-bg.8" | "#danger-bg.9" | "#danger-bg.00" | "#danger-bg.01" | "#danger-bg.02" | "#danger-bg.03" | "#danger-bg.04" | "#danger-bg.05" | "#danger-bg.06" | "#danger-bg.07" | "#danger-bg.08" | "#danger-bg.09" | "#danger-bg.10" | "#danger-bg.11" | "#danger-bg.12" | "#danger-bg.13" | "#danger-bg.14" | "#danger-bg.15" | "#danger-bg.16" | "#danger-bg.17" | "#danger-bg.18" | "#danger-bg.19" | "#danger-bg.20" | "#danger-bg.21" | "#danger-bg.22" | "#danger-bg.23" | "#danger-bg.24" | "#danger-bg.25" | "#danger-bg.26" | "#danger-bg.27" | "#danger-bg.28" | "#danger-bg.29" | "#danger-bg.30" | "#danger-bg.31" | "#danger-bg.32" | "#danger-bg.33" | "#danger-bg.34" | "#danger-bg.35" | "#danger-bg.36" | "#danger-bg.37" | "#danger-bg.38" | "#danger-bg.39" | "#danger-bg.40" | "#danger-bg.41" | "#danger-bg.42" | "#danger-bg.43" | "#danger-bg.44" | "#danger-bg.45" | "#danger-bg.46" | "#danger-bg.47" | "#danger-bg.48" | "#danger-bg.49" | "#danger-bg.50" | "#danger-bg.51" | "#danger-bg.52" | "#danger-bg.53" | "#danger-bg.54" | "#danger-bg.55" | "#danger-bg.56" | "#danger-bg.57" | "#danger-bg.58" | "#danger-bg.59" | "#danger-bg.60" | "#danger-bg.61" | "#danger-bg.62" | "#danger-bg.63" | "#danger-bg.64" | "#danger-bg.65" | "#danger-bg.66" | "#danger-bg.67" | "#danger-bg.68" | "#danger-bg.69" | "#danger-bg.70" | "#danger-bg.71" | "#danger-bg.72" | "#danger-bg.73" | "#danger-bg.74" | "#danger-bg.75" | "#danger-bg.76" | "#danger-bg.77" | "#danger-bg.78" | "#danger-bg.79" | "#danger-bg.80" | "#danger-bg.81" | "#danger-bg.82" | "#danger-bg.83" | "#danger-bg.84" | "#danger-bg.85" | "#danger-bg.86" | "#danger-bg.87" | "#danger-bg.88" | "#danger-bg.89" | "#danger-bg.90" | "#danger-bg.91" | "#danger-bg.92" | "#danger-bg.93" | "#danger-bg.94" | "#danger-bg.95" | "#danger-bg.96" | "#danger-bg.97" | "#danger-bg.98" | "#danger-bg.99" | "#danger-bg.100" | "#danger-text" | "#danger-text.0" | "#danger-text.1" | "#danger-text.2" | "#danger-text.3" | "#danger-text.4" | "#danger-text.5" | "#danger-text.6" | "#danger-text.7" | "#danger-text.8" | "#danger-text.9" | "#danger-text.00" | "#danger-text.01" | "#danger-text.02" | "#danger-text.03" | "#danger-text.04" | "#danger-text.05" | "#danger-text.06" | "#danger-text.07" | "#danger-text.08" | "#danger-text.09" | "#danger-text.10" | "#danger-text.11" | "#danger-text.12" | "#danger-text.13" | "#danger-text.14" | "#danger-text.15" | "#danger-text.16" | "#danger-text.17" | "#danger-text.18" | "#danger-text.19" | "#danger-text.20" | "#danger-text.21" | "#danger-text.22" | "#danger-text.23" | "#danger-text.24" | "#danger-text.25" | "#danger-text.26" | "#danger-text.27" | "#danger-text.28" | "#danger-text.29" | "#danger-text.30" | "#danger-text.31" | "#danger-text.32" | "#danger-text.33" | "#danger-text.34" | "#danger-text.35" | "#danger-text.36" | "#danger-text.37" | "#danger-text.38" | "#danger-text.39" | "#danger-text.40" | "#danger-text.41" | "#danger-text.42" | "#danger-text.43" | "#danger-text.44" | "#danger-text.45" | "#danger-text.46" | "#danger-text.47" | "#danger-text.48" | "#danger-text.49" | "#danger-text.50" | "#danger-text.51" | "#danger-text.52" | "#danger-text.53" | "#danger-text.54" | "#danger-text.55" | "#danger-text.56" | "#danger-text.57" | "#danger-text.58" | "#danger-text.59" | "#danger-text.60" | "#danger-text.61" | "#danger-text.62" | "#danger-text.63" | "#danger-text.64" | "#danger-text.65" | "#danger-text.66" | "#danger-text.67" | "#danger-text.68" | "#danger-text.69" | "#danger-text.70" | "#danger-text.71" | "#danger-text.72" | "#danger-text.73" | "#danger-text.74" | "#danger-text.75" | "#danger-text.76" | "#danger-text.77" | "#danger-text.78" | "#danger-text.79" | "#danger-text.80" | "#danger-text.81" | "#danger-text.82" | "#danger-text.83" | "#danger-text.84" | "#danger-text.85" | "#danger-text.86" | "#danger-text.87" | "#danger-text.88" | "#danger-text.89" | "#danger-text.90" | "#danger-text.91" | "#danger-text.92" | "#danger-text.93" | "#danger-text.94" | "#danger-text.95" | "#danger-text.96" | "#danger-text.97" | "#danger-text.98" | "#danger-text.99" | "#danger-text.100" | "#danger-icon" | "#danger-icon.0" | "#danger-icon.1" | "#danger-icon.2" | "#danger-icon.3" | "#danger-icon.4" | "#danger-icon.5" | "#danger-icon.6" | "#danger-icon.7" | "#danger-icon.8" | "#danger-icon.9" | "#danger-icon.00" | "#danger-icon.01" | "#danger-icon.02" | "#danger-icon.03" | "#danger-icon.04" | "#danger-icon.05" | "#danger-icon.06" | "#danger-icon.07" | "#danger-icon.08" | "#danger-icon.09" | "#danger-icon.10" | "#danger-icon.11" | "#danger-icon.12" | "#danger-icon.13" | "#danger-icon.14" | "#danger-icon.15" | "#danger-icon.16" | "#danger-icon.17" | "#danger-icon.18" | "#danger-icon.19" | "#danger-icon.20" | "#danger-icon.21" | "#danger-icon.22" | "#danger-icon.23" | "#danger-icon.24" | "#danger-icon.25" | "#danger-icon.26" | "#danger-icon.27" | "#danger-icon.28" | "#danger-icon.29" | "#danger-icon.30" | "#danger-icon.31" | "#danger-icon.32" | "#danger-icon.33" | "#danger-icon.34" | "#danger-icon.35" | "#danger-icon.36" | "#danger-icon.37" | "#danger-icon.38" | "#danger-icon.39" | "#danger-icon.40" | "#danger-icon.41" | "#danger-icon.42" | "#danger-icon.43" | "#danger-icon.44" | "#danger-icon.45" | "#danger-icon.46" | "#danger-icon.47" | "#danger-icon.48" | "#danger-icon.49" | "#danger-icon.50" | "#danger-icon.51" | "#danger-icon.52" | "#danger-icon.53" | "#danger-icon.54" | "#danger-icon.55" | "#danger-icon.56" | "#danger-icon.57" | "#danger-icon.58" | "#danger-icon.59" | "#danger-icon.60" | "#danger-icon.61" | "#danger-icon.62" | "#danger-icon.63" | "#danger-icon.64" | "#danger-icon.65" | "#danger-icon.66" | "#danger-icon.67" | "#danger-icon.68" | "#danger-icon.69" | "#danger-icon.70" | "#danger-icon.71" | "#danger-icon.72" | "#danger-icon.73" | "#danger-icon.74" | "#danger-icon.75" | "#danger-icon.76" | "#danger-icon.77" | "#danger-icon.78" | "#danger-icon.79" | "#danger-icon.80" | "#danger-icon.81" | "#danger-icon.82" | "#danger-icon.83" | "#danger-icon.84" | "#danger-icon.85" | "#danger-icon.86" | "#danger-icon.87" | "#danger-icon.88" | "#danger-icon.89" | "#danger-icon.90" | "#danger-icon.91" | "#danger-icon.92" | "#danger-icon.93" | "#danger-icon.94" | "#danger-icon.95" | "#danger-icon.96" | "#danger-icon.97" | "#danger-icon.98" | "#danger-icon.99" | "#danger-icon.100" | "#success" | "#success.0" | "#success.1" | "#success.2" | "#success.3" | "#success.4" | "#success.5" | "#success.6" | "#success.7" | "#success.8" | "#success.9" | "#success.00" | "#success.01" | "#success.02" | "#success.03" | "#success.04" | "#success.05" | "#success.06" | "#success.07" | "#success.08" | "#success.09" | "#success.10" | "#success.11" | "#success.12" | "#success.13" | "#success.14" | "#success.15" | "#success.16" | "#success.17" | "#success.18" | "#success.19" | "#success.20" | "#success.21" | "#success.22" | "#success.23" | "#success.24" | "#success.25" | "#success.26" | "#success.27" | "#success.28" | "#success.29" | "#success.30" | "#success.31" | "#success.32" | "#success.33" | "#success.34" | "#success.35" | "#success.36" | "#success.37" | "#success.38" | "#success.39" | "#success.40" | "#success.41" | "#success.42" | "#success.43" | "#success.44" | "#success.45" | "#success.46" | "#success.47" | "#success.48" | "#success.49" | "#success.50" | "#success.51" | "#success.52" | "#success.53" | "#success.54" | "#success.55" | "#success.56" | "#success.57" | "#success.58" | "#success.59" | "#success.60" | "#success.61" | "#success.62" | "#success.63" | "#success.64" | "#success.65" | "#success.66" | "#success.67" | "#success.68" | "#success.69" | "#success.70" | "#success.71" | "#success.72" | "#success.73" | "#success.74" | "#success.75" | "#success.76" | "#success.77" | "#success.78" | "#success.79" | "#success.80" | "#success.81" | "#success.82" | "#success.83" | "#success.84" | "#success.85" | "#success.86" | "#success.87" | "#success.88" | "#success.89" | "#success.90" | "#success.91" | "#success.92" | "#success.93" | "#success.94" | "#success.95" | "#success.96" | "#success.97" | "#success.98" | "#success.99" | "#success.100" | "#success-bg" | "#success-bg.0" | "#success-bg.1" | "#success-bg.2" | "#success-bg.3" | "#success-bg.4" | "#success-bg.5" | "#success-bg.6" | "#success-bg.7" | "#success-bg.8" | "#success-bg.9" | "#success-bg.00" | "#success-bg.01" | "#success-bg.02" | "#success-bg.03" | "#success-bg.04" | "#success-bg.05" | "#success-bg.06" | "#success-bg.07" | "#success-bg.08" | "#success-bg.09" | "#success-bg.10" | "#success-bg.11" | "#success-bg.12" | "#success-bg.13" | "#success-bg.14" | "#success-bg.15" | "#success-bg.16" | "#success-bg.17" | "#success-bg.18" | "#success-bg.19" | "#success-bg.20" | "#success-bg.21" | "#success-bg.22" | "#success-bg.23" | "#success-bg.24" | "#success-bg.25" | "#success-bg.26" | "#success-bg.27" | "#success-bg.28" | "#success-bg.29" | "#success-bg.30" | "#success-bg.31" | "#success-bg.32" | "#success-bg.33" | "#success-bg.34" | "#success-bg.35" | "#success-bg.36" | "#success-bg.37" | "#success-bg.38" | "#success-bg.39" | "#success-bg.40" | "#success-bg.41" | "#success-bg.42" | "#success-bg.43" | "#success-bg.44" | "#success-bg.45" | "#success-bg.46" | "#success-bg.47" | "#success-bg.48" | "#success-bg.49" | "#success-bg.50" | "#success-bg.51" | "#success-bg.52" | "#success-bg.53" | "#success-bg.54" | "#success-bg.55" | "#success-bg.56" | "#success-bg.57" | "#success-bg.58" | "#success-bg.59" | "#success-bg.60" | "#success-bg.61" | "#success-bg.62" | "#success-bg.63" | "#success-bg.64" | "#success-bg.65" | "#success-bg.66" | "#success-bg.67" | "#success-bg.68" | "#success-bg.69" | "#success-bg.70" | "#success-bg.71" | "#success-bg.72" | "#success-bg.73" | "#success-bg.74" | "#success-bg.75" | "#success-bg.76" | "#success-bg.77" | "#success-bg.78" | "#success-bg.79" | "#success-bg.80" | "#success-bg.81" | "#success-bg.82" | "#success-bg.83" | "#success-bg.84" | "#success-bg.85" | "#success-bg.86" | "#success-bg.87" | "#success-bg.88" | "#success-bg.89" | "#success-bg.90" | "#success-bg.91" | "#success-bg.92" | "#success-bg.93" | "#success-bg.94" | "#success-bg.95" | "#success-bg.96" | "#success-bg.97" | "#success-bg.98" | "#success-bg.99" | "#success-bg.100" | "#success-text" | "#success-text.0" | "#success-text.1" | "#success-text.2" | "#success-text.3" | "#success-text.4" | "#success-text.5" | "#success-text.6" | "#success-text.7" | "#success-text.8" | "#success-text.9" | "#success-text.00" | "#success-text.01" | "#success-text.02" | "#success-text.03" | "#success-text.04" | "#success-text.05" | "#success-text.06" | "#success-text.07" | "#success-text.08" | "#success-text.09" | "#success-text.10" | "#success-text.11" | "#success-text.12" | "#success-text.13" | "#success-text.14" | "#success-text.15" | "#success-text.16" | "#success-text.17" | "#success-text.18" | "#success-text.19" | "#success-text.20" | "#success-text.21" | "#success-text.22" | "#success-text.23" | "#success-text.24" | "#success-text.25" | "#success-text.26" | "#success-text.27" | "#success-text.28" | "#success-text.29" | "#success-text.30" | "#success-text.31" | "#success-text.32" | "#success-text.33" | "#success-text.34" | "#success-text.35" | "#success-text.36" | "#success-text.37" | "#success-text.38" | "#success-text.39" | "#success-text.40" | "#success-text.41" | "#success-text.42" | "#success-text.43" | "#success-text.44" | "#success-text.45" | "#success-text.46" | "#success-text.47" | "#success-text.48" | "#success-text.49" | "#success-text.50" | "#success-text.51" | "#success-text.52" | "#success-text.53" | "#success-text.54" | "#success-text.55" | "#success-text.56" | "#success-text.57" | "#success-text.58" | "#success-text.59" | "#success-text.60" | "#success-text.61" | "#success-text.62" | "#success-text.63" | "#success-text.64" | "#success-text.65" | "#success-text.66" | "#success-text.67" | "#success-text.68" | "#success-text.69" | "#success-text.70" | "#success-text.71" | "#success-text.72" | "#success-text.73" | "#success-text.74" | "#success-text.75" | "#success-text.76" | "#success-text.77" | "#success-text.78" | "#success-text.79" | "#success-text.80" | "#success-text.81" | "#success-text.82" | "#success-text.83" | "#success-text.84" | "#success-text.85" | "#success-text.86" | "#success-text.87" | "#success-text.88" | "#success-text.89" | "#success-text.90" | "#success-text.91" | "#success-text.92" | "#success-text.93" | "#success-text.94" | "#success-text.95" | "#success-text.96" | "#success-text.97" | "#success-text.98" | "#success-text.99" | "#success-text.100" | "#success-icon" | "#success-icon.0" | "#success-icon.1" | "#success-icon.2" | "#success-icon.3" | "#success-icon.4" | "#success-icon.5" | "#success-icon.6" | "#success-icon.7" | "#success-icon.8" | "#success-icon.9" | "#success-icon.00" | "#success-icon.01" | "#success-icon.02" | "#success-icon.03" | "#success-icon.04" | "#success-icon.05" | "#success-icon.06" | "#success-icon.07" | "#success-icon.08" | "#success-icon.09" | "#success-icon.10" | "#success-icon.11" | "#success-icon.12" | "#success-icon.13" | "#success-icon.14" | "#success-icon.15" | "#success-icon.16" | "#success-icon.17" | "#success-icon.18" | "#success-icon.19" | "#success-icon.20" | "#success-icon.21" | "#success-icon.22" | "#success-icon.23" | "#success-icon.24" | "#success-icon.25" | "#success-icon.26" | "#success-icon.27" | "#success-icon.28" | "#success-icon.29" | "#success-icon.30" | "#success-icon.31" | "#success-icon.32" | "#success-icon.33" | "#success-icon.34" | "#success-icon.35" | "#success-icon.36" | "#success-icon.37" | "#success-icon.38" | "#success-icon.39" | "#success-icon.40" | "#success-icon.41" | "#success-icon.42" | "#success-icon.43" | "#success-icon.44" | "#success-icon.45" | "#success-icon.46" | "#success-icon.47" | "#success-icon.48" | "#success-icon.49" | "#success-icon.50" | "#success-icon.51" | "#success-icon.52" | "#success-icon.53" | "#success-icon.54" | "#success-icon.55" | "#success-icon.56" | "#success-icon.57" | "#success-icon.58" | "#success-icon.59" | "#success-icon.60" | "#success-icon.61" | "#success-icon.62" | "#success-icon.63" | "#success-icon.64" | "#success-icon.65" | "#success-icon.66" | "#success-icon.67" | "#success-icon.68" | "#success-icon.69" | "#success-icon.70" | "#success-icon.71" | "#success-icon.72" | "#success-icon.73" | "#success-icon.74" | "#success-icon.75" | "#success-icon.76" | "#success-icon.77" | "#success-icon.78" | "#success-icon.79" | "#success-icon.80" | "#success-icon.81" | "#success-icon.82" | "#success-icon.83" | "#success-icon.84" | "#success-icon.85" | "#success-icon.86" | "#success-icon.87" | "#success-icon.88" | "#success-icon.89" | "#success-icon.90" | "#success-icon.91" | "#success-icon.92" | "#success-icon.93" | "#success-icon.94" | "#success-icon.95" | "#success-icon.96" | "#success-icon.97" | "#success-icon.98" | "#success-icon.99" | "#success-icon.100" | "#note" | "#note.0" | "#note.1" | "#note.2" | "#note.3" | "#note.4" | "#note.5" | "#note.6" | "#note.7" | "#note.8" | "#note.9" | "#note.00" | "#note.01" | "#note.02" | "#note.03" | "#note.04" | "#note.05" | "#note.06" | "#note.07" | "#note.08" | "#note.09" | "#note.10" | "#note.11" | "#note.12" | "#note.13" | "#note.14" | "#note.15" | "#note.16" | "#note.17" | "#note.18" | "#note.19" | "#note.20" | "#note.21" | "#note.22" | "#note.23" | "#note.24" | "#note.25" | "#note.26" | "#note.27" | "#note.28" | "#note.29" | "#note.30" | "#note.31" | "#note.32" | "#note.33" | "#note.34" | "#note.35" | "#note.36" | "#note.37" | "#note.38" | "#note.39" | "#note.40" | "#note.41" | "#note.42" | "#note.43" | "#note.44" | "#note.45" | "#note.46" | "#note.47" | "#note.48" | "#note.49" | "#note.50" | "#note.51" | "#note.52" | "#note.53" | "#note.54" | "#note.55" | "#note.56" | "#note.57" | "#note.58" | "#note.59" | "#note.60" | "#note.61" | "#note.62" | "#note.63" | "#note.64" | "#note.65" | "#note.66" | "#note.67" | "#note.68" | "#note.69" | "#note.70" | "#note.71" | "#note.72" | "#note.73" | "#note.74" | "#note.75" | "#note.76" | "#note.77" | "#note.78" | "#note.79" | "#note.80" | "#note.81" | "#note.82" | "#note.83" | "#note.84" | "#note.85" | "#note.86" | "#note.87" | "#note.88" | "#note.89" | "#note.90" | "#note.91" | "#note.92" | "#note.93" | "#note.94" | "#note.95" | "#note.96" | "#note.97" | "#note.98" | "#note.99" | "#note.100" | "#note-bg" | "#note-bg.0" | "#note-bg.1" | "#note-bg.2" | "#note-bg.3" | "#note-bg.4" | "#note-bg.5" | "#note-bg.6" | "#note-bg.7" | "#note-bg.8" | "#note-bg.9" | "#note-bg.00" | "#note-bg.01" | "#note-bg.02" | "#note-bg.03" | "#note-bg.04" | "#note-bg.05" | "#note-bg.06" | "#note-bg.07" | "#note-bg.08" | "#note-bg.09" | "#note-bg.10" | "#note-bg.11" | "#note-bg.12" | "#note-bg.13" | "#note-bg.14" | "#note-bg.15" | "#note-bg.16" | "#note-bg.17" | "#note-bg.18" | "#note-bg.19" | "#note-bg.20" | "#note-bg.21" | "#note-bg.22" | "#note-bg.23" | "#note-bg.24" | "#note-bg.25" | "#note-bg.26" | "#note-bg.27" | "#note-bg.28" | "#note-bg.29" | "#note-bg.30" | "#note-bg.31" | "#note-bg.32" | "#note-bg.33" | "#note-bg.34" | "#note-bg.35" | "#note-bg.36" | "#note-bg.37" | "#note-bg.38" | "#note-bg.39" | "#note-bg.40" | "#note-bg.41" | "#note-bg.42" | "#note-bg.43" | "#note-bg.44" | "#note-bg.45" | "#note-bg.46" | "#note-bg.47" | "#note-bg.48" | "#note-bg.49" | "#note-bg.50" | "#note-bg.51" | "#note-bg.52" | "#note-bg.53" | "#note-bg.54" | "#note-bg.55" | "#note-bg.56" | "#note-bg.57" | "#note-bg.58" | "#note-bg.59" | "#note-bg.60" | "#note-bg.61" | "#note-bg.62" | "#note-bg.63" | "#note-bg.64" | "#note-bg.65" | "#note-bg.66" | "#note-bg.67" | "#note-bg.68" | "#note-bg.69" | "#note-bg.70" | "#note-bg.71" | "#note-bg.72" | "#note-bg.73" | "#note-bg.74" | "#note-bg.75" | "#note-bg.76" | "#note-bg.77" | "#note-bg.78" | "#note-bg.79" | "#note-bg.80" | "#note-bg.81" | "#note-bg.82" | "#note-bg.83" | "#note-bg.84" | "#note-bg.85" | "#note-bg.86" | "#note-bg.87" | "#note-bg.88" | "#note-bg.89" | "#note-bg.90" | "#note-bg.91" | "#note-bg.92" | "#note-bg.93" | "#note-bg.94" | "#note-bg.95" | "#note-bg.96" | "#note-bg.97" | "#note-bg.98" | "#note-bg.99" | "#note-bg.100" | "#note-text" | "#note-text.0" | "#note-text.1" | "#note-text.2" | "#note-text.3" | "#note-text.4" | "#note-text.5" | "#note-text.6" | "#note-text.7" | "#note-text.8" | "#note-text.9" | "#note-text.00" | "#note-text.01" | "#note-text.02" | "#note-text.03" | "#note-text.04" | "#note-text.05" | "#note-text.06" | "#note-text.07" | "#note-text.08" | "#note-text.09" | "#note-text.10" | "#note-text.11" | "#note-text.12" | "#note-text.13" | "#note-text.14" | "#note-text.15" | "#note-text.16" | "#note-text.17" | "#note-text.18" | "#note-text.19" | "#note-text.20" | "#note-text.21" | "#note-text.22" | "#note-text.23" | "#note-text.24" | "#note-text.25" | "#note-text.26" | "#note-text.27" | "#note-text.28" | "#note-text.29" | "#note-text.30" | "#note-text.31" | "#note-text.32" | "#note-text.33" | "#note-text.34" | "#note-text.35" | "#note-text.36" | "#note-text.37" | "#note-text.38" | "#note-text.39" | "#note-text.40" | "#note-text.41" | "#note-text.42" | "#note-text.43" | "#note-text.44" | "#note-text.45" | "#note-text.46" | "#note-text.47" | "#note-text.48" | "#note-text.49" | "#note-text.50" | "#note-text.51" | "#note-text.52" | "#note-text.53" | "#note-text.54" | "#note-text.55" | "#note-text.56" | "#note-text.57" | "#note-text.58" | "#note-text.59" | "#note-text.60" | "#note-text.61" | "#note-text.62" | "#note-text.63" | "#note-text.64" | "#note-text.65" | "#note-text.66" | "#note-text.67" | "#note-text.68" | "#note-text.69" | "#note-text.70" | "#note-text.71" | "#note-text.72" | "#note-text.73" | "#note-text.74" | "#note-text.75" | "#note-text.76" | "#note-text.77" | "#note-text.78" | "#note-text.79" | "#note-text.80" | "#note-text.81" | "#note-text.82" | "#note-text.83" | "#note-text.84" | "#note-text.85" | "#note-text.86" | "#note-text.87" | "#note-text.88" | "#note-text.89" | "#note-text.90" | "#note-text.91" | "#note-text.92" | "#note-text.93" | "#note-text.94" | "#note-text.95" | "#note-text.96" | "#note-text.97" | "#note-text.98" | "#note-text.99" | "#note-text.100" | "#note-icon" | "#note-icon.0" | "#note-icon.1" | "#note-icon.2" | "#note-icon.3" | "#note-icon.4" | "#note-icon.5" | "#note-icon.6" | "#note-icon.7" | "#note-icon.8" | "#note-icon.9" | "#note-icon.00" | "#note-icon.01" | "#note-icon.02" | "#note-icon.03" | "#note-icon.04" | "#note-icon.05" | "#note-icon.06" | "#note-icon.07" | "#note-icon.08" | "#note-icon.09" | "#note-icon.10" | "#note-icon.11" | "#note-icon.12" | "#note-icon.13" | "#note-icon.14" | "#note-icon.15" | "#note-icon.16" | "#note-icon.17" | "#note-icon.18" | "#note-icon.19" | "#note-icon.20" | "#note-icon.21" | "#note-icon.22" | "#note-icon.23" | "#note-icon.24" | "#note-icon.25" | "#note-icon.26" | "#note-icon.27" | "#note-icon.28" | "#note-icon.29" | "#note-icon.30" | "#note-icon.31" | "#note-icon.32" | "#note-icon.33" | "#note-icon.34" | "#note-icon.35" | "#note-icon.36" | "#note-icon.37" | "#note-icon.38" | "#note-icon.39" | "#note-icon.40" | "#note-icon.41" | "#note-icon.42" | "#note-icon.43" | "#note-icon.44" | "#note-icon.45" | "#note-icon.46" | "#note-icon.47" | "#note-icon.48" | "#note-icon.49" | "#note-icon.50" | "#note-icon.51" | "#note-icon.52" | "#note-icon.53" | "#note-icon.54" | "#note-icon.55" | "#note-icon.56" | "#note-icon.57" | "#note-icon.58" | "#note-icon.59" | "#note-icon.60" | "#note-icon.61" | "#note-icon.62" | "#note-icon.63" | "#note-icon.64" | "#note-icon.65" | "#note-icon.66" | "#note-icon.67" | "#note-icon.68" | "#note-icon.69" | "#note-icon.70" | "#note-icon.71" | "#note-icon.72" | "#note-icon.73" | "#note-icon.74" | "#note-icon.75" | "#note-icon.76" | "#note-icon.77" | "#note-icon.78" | "#note-icon.79" | "#note-icon.80" | "#note-icon.81" | "#note-icon.82" | "#note-icon.83" | "#note-icon.84" | "#note-icon.85" | "#note-icon.86" | "#note-icon.87" | "#note-icon.88" | "#note-icon.89" | "#note-icon.90" | "#note-icon.91" | "#note-icon.92" | "#note-icon.93" | "#note-icon.94" | "#note-icon.95" | "#note-icon.96" | "#note-icon.97" | "#note-icon.98" | "#note-icon.99" | "#note-icon.100" | "#white" | "#white.0" | "#white.1" | "#white.2" | "#white.3" | "#white.4" | "#white.5" | "#white.6" | "#white.7" | "#white.8" | "#white.9" | "#white.00" | "#white.01" | "#white.02" | "#white.03" | "#white.04" | "#white.05" | "#white.06" | "#white.07" | "#white.08" | "#white.09" | "#white.10" | "#white.11" | "#white.12" | "#white.13" | "#white.14" | "#white.15" | "#white.16" | "#white.17" | "#white.18" | "#white.19" | "#white.20" | "#white.21" | "#white.22" | "#white.23" | "#white.24" | "#white.25" | "#white.26" | "#white.27" | "#white.28" | "#white.29" | "#white.30" | "#white.31" | "#white.32" | "#white.33" | "#white.34" | "#white.35" | "#white.36" | "#white.37" | "#white.38" | "#white.39" | "#white.40" | "#white.41" | "#white.42" | "#white.43" | "#white.44" | "#white.45" | "#white.46" | "#white.47" | "#white.48" | "#white.49" | "#white.50" | "#white.51" | "#white.52" | "#white.53" | "#white.54" | "#white.55" | "#white.56" | "#white.57" | "#white.58" | "#white.59" | "#white.60" | "#white.61" | "#white.62" | "#white.63" | "#white.64" | "#white.65" | "#white.66" | "#white.67" | "#white.68" | "#white.69" | "#white.70" | "#white.71" | "#white.72" | "#white.73" | "#white.74" | "#white.75" | "#white.76" | "#white.77" | "#white.78" | "#white.79" | "#white.80" | "#white.81" | "#white.82" | "#white.83" | "#white.84" | "#white.85" | "#white.86" | "#white.87" | "#white.88" | "#white.89" | "#white.90" | "#white.91" | "#white.92" | "#white.93" | "#white.94" | "#white.95" | "#white.96" | "#white.97" | "#white.98" | "#white.99" | "#white.100" | "#light" | "#light.0" | "#light.1" | "#light.2" | "#light.3" | "#light.4" | "#light.5" | "#light.6" | "#light.7" | "#light.8" | "#light.9" | "#light.00" | "#light.01" | "#light.02" | "#light.03" | "#light.04" | "#light.05" | "#light.06" | "#light.07" | "#light.08" | "#light.09" | "#light.10" | "#light.11" | "#light.12" | "#light.13" | "#light.14" | "#light.15" | "#light.16" | "#light.17" | "#light.18" | "#light.19" | "#light.20" | "#light.21" | "#light.22" | "#light.23" | "#light.24" | "#light.25" | "#light.26" | "#light.27" | "#light.28" | "#light.29" | "#light.30" | "#light.31" | "#light.32" | "#light.33" | "#light.34" | "#light.35" | "#light.36" | "#light.37" | "#light.38" | "#light.39" | "#light.40" | "#light.41" | "#light.42" | "#light.43" | "#light.44" | "#light.45" | "#light.46" | "#light.47" | "#light.48" | "#light.49" | "#light.50" | "#light.51" | "#light.52" | "#light.53" | "#light.54" | "#light.55" | "#light.56" | "#light.57" | "#light.58" | "#light.59" | "#light.60" | "#light.61" | "#light.62" | "#light.63" | "#light.64" | "#light.65" | "#light.66" | "#light.67" | "#light.68" | "#light.69" | "#light.70" | "#light.71" | "#light.72" | "#light.73" | "#light.74" | "#light.75" | "#light.76" | "#light.77" | "#light.78" | "#light.79" | "#light.80" | "#light.81" | "#light.82" | "#light.83" | "#light.84" | "#light.85" | "#light.86" | "#light.87" | "#light.88" | "#light.89" | "#light.90" | "#light.91" | "#light.92" | "#light.93" | "#light.94" | "#light.95" | "#light.96" | "#light.97" | "#light.98" | "#light.99" | "#light.100" | "#light-grey" | "#light-grey.0" | "#light-grey.1" | "#light-grey.2" | "#light-grey.3" | "#light-grey.4" | "#light-grey.5" | "#light-grey.6" | "#light-grey.7" | "#light-grey.8" | "#light-grey.9" | "#light-grey.00" | "#light-grey.01" | "#light-grey.02" | "#light-grey.03" | "#light-grey.04" | "#light-grey.05" | "#light-grey.06" | "#light-grey.07" | "#light-grey.08" | "#light-grey.09" | "#light-grey.10" | "#light-grey.11" | "#light-grey.12" | "#light-grey.13" | "#light-grey.14" | "#light-grey.15" | "#light-grey.16" | "#light-grey.17" | "#light-grey.18" | "#light-grey.19" | "#light-grey.20" | "#light-grey.21" | "#light-grey.22" | "#light-grey.23" | "#light-grey.24" | "#light-grey.25" | "#light-grey.26" | "#light-grey.27" | "#light-grey.28" | "#light-grey.29" | "#light-grey.30" | "#light-grey.31" | "#light-grey.32" | "#light-grey.33" | "#light-grey.34" | "#light-grey.35" | "#light-grey.36" | "#light-grey.37" | "#light-grey.38" | "#light-grey.39" | "#light-grey.40" | "#light-grey.41" | "#light-grey.42" | "#light-grey.43" | "#light-grey.44" | "#light-grey.45" | "#light-grey.46" | "#light-grey.47" | "#light-grey.48" | "#light-grey.49" | "#light-grey.50" | "#light-grey.51" | "#light-grey.52" | "#light-grey.53" | "#light-grey.54" | "#light-grey.55" | "#light-grey.56" | "#light-grey.57" | "#light-grey.58" | "#light-grey.59" | "#light-grey.60" | "#light-grey.61" | "#light-grey.62" | "#light-grey.63" | "#light-grey.64" | "#light-grey.65" | "#light-grey.66" | "#light-grey.67" | "#light-grey.68" | "#light-grey.69" | "#light-grey.70" | "#light-grey.71" | "#light-grey.72" | "#light-grey.73" | "#light-grey.74" | "#light-grey.75" | "#light-grey.76" | "#light-grey.77" | "#light-grey.78" | "#light-grey.79" | "#light-grey.80" | "#light-grey.81" | "#light-grey.82" | "#light-grey.83" | "#light-grey.84" | "#light-grey.85" | "#light-grey.86" | "#light-grey.87" | "#light-grey.88" | "#light-grey.89" | "#light-grey.90" | "#light-grey.91" | "#light-grey.92" | "#light-grey.93" | "#light-grey.94" | "#light-grey.95" | "#light-grey.96" | "#light-grey.97" | "#light-grey.98" | "#light-grey.99" | "#light-grey.100" | "#black" | "#black.0" | "#black.1" | "#black.2" | "#black.3" | "#black.4" | "#black.5" | "#black.6" | "#black.7" | "#black.8" | "#black.9" | "#black.00" | "#black.01" | "#black.02" | "#black.03" | "#black.04" | "#black.05" | "#black.06" | "#black.07" | "#black.08" | "#black.09" | "#black.10" | "#black.11" | "#black.12" | "#black.13" | "#black.14" | "#black.15" | "#black.16" | "#black.17" | "#black.18" | "#black.19" | "#black.20" | "#black.21" | "#black.22" | "#black.23" | "#black.24" | "#black.25" | "#black.26" | "#black.27" | "#black.28" | "#black.29" | "#black.30" | "#black.31" | "#black.32" | "#black.33" | "#black.34" | "#black.35" | "#black.36" | "#black.37" | "#black.38" | "#black.39" | "#black.40" | "#black.41" | "#black.42" | "#black.43" | "#black.44" | "#black.45" | "#black.46" | "#black.47" | "#black.48" | "#black.49" | "#black.50" | "#black.51" | "#black.52" | "#black.53" | "#black.54" | "#black.55" | "#black.56" | "#black.57" | "#black.58" | "#black.59" | "#black.60" | "#black.61" | "#black.62" | "#black.63" | "#black.64" | "#black.65" | "#black.66" | "#black.67" | "#black.68" | "#black.69" | "#black.70" | "#black.71" | "#black.72" | "#black.73" | "#black.74" | "#black.75" | "#black.76" | "#black.77" | "#black.78" | "#black.79" | "#black.80" | "#black.81" | "#black.82" | "#black.83" | "#black.84" | "#black.85" | "#black.86" | "#black.87" | "#black.88" | "#black.89" | "#black.90" | "#black.91" | "#black.92" | "#black.93" | "#black.94" | "#black.95" | "#black.96" | "#black.97" | "#black.98" | "#black.99" | "#black.100" | "#pink" | "#pink.0" | "#pink.1" | "#pink.2" | "#pink.3" | "#pink.4" | "#pink.5" | "#pink.6" | "#pink.7" | "#pink.8" | "#pink.9" | "#pink.00" | "#pink.01" | "#pink.02" | "#pink.03" | "#pink.04" | "#pink.05" | "#pink.06" | "#pink.07" | "#pink.08" | "#pink.09" | "#pink.10" | "#pink.11" | "#pink.12" | "#pink.13" | "#pink.14" | "#pink.15" | "#pink.16" | "#pink.17" | "#pink.18" | "#pink.19" | "#pink.20" | "#pink.21" | "#pink.22" | "#pink.23" | "#pink.24" | "#pink.25" | "#pink.26" | "#pink.27" | "#pink.28" | "#pink.29" | "#pink.30" | "#pink.31" | "#pink.32" | "#pink.33" | "#pink.34" | "#pink.35" | "#pink.36" | "#pink.37" | "#pink.38" | "#pink.39" | "#pink.40" | "#pink.41" | "#pink.42" | "#pink.43" | "#pink.44" | "#pink.45" | "#pink.46" | "#pink.47" | "#pink.48" | "#pink.49" | "#pink.50" | "#pink.51" | "#pink.52" | "#pink.53" | "#pink.54" | "#pink.55" | "#pink.56" | "#pink.57" | "#pink.58" | "#pink.59" | "#pink.60" | "#pink.61" | "#pink.62" | "#pink.63" | "#pink.64" | "#pink.65" | "#pink.66" | "#pink.67" | "#pink.68" | "#pink.69" | "#pink.70" | "#pink.71" | "#pink.72" | "#pink.73" | "#pink.74" | "#pink.75" | "#pink.76" | "#pink.77" | "#pink.78" | "#pink.79" | "#pink.80" | "#pink.81" | "#pink.82" | "#pink.83" | "#pink.84" | "#pink.85" | "#pink.86" | "#pink.87" | "#pink.88" | "#pink.89" | "#pink.90" | "#pink.91" | "#pink.92" | "#pink.93" | "#pink.94" | "#pink.95" | "#pink.96" | "#pink.97" | "#pink.98" | "#pink.99" | "#pink.100" | "#pink-01" | "#pink-01.0" | "#pink-01.1" | "#pink-01.2" | "#pink-01.3" | "#pink-01.4" | "#pink-01.5" | "#pink-01.6" | "#pink-01.7" | "#pink-01.8" | "#pink-01.9" | "#pink-01.00" | "#pink-01.01" | "#pink-01.02" | "#pink-01.03" | "#pink-01.04" | "#pink-01.05" | "#pink-01.06" | "#pink-01.07" | "#pink-01.08" | "#pink-01.09" | "#pink-01.10" | "#pink-01.11" | "#pink-01.12" | "#pink-01.13" | "#pink-01.14" | "#pink-01.15" | "#pink-01.16" | "#pink-01.17" | "#pink-01.18" | "#pink-01.19" | "#pink-01.20" | "#pink-01.21" | "#pink-01.22" | "#pink-01.23" | "#pink-01.24" | "#pink-01.25" | "#pink-01.26" | "#pink-01.27" | "#pink-01.28" | "#pink-01.29" | "#pink-01.30" | "#pink-01.31" | "#pink-01.32" | "#pink-01.33" | "#pink-01.34" | "#pink-01.35" | "#pink-01.36" | "#pink-01.37" | "#pink-01.38" | "#pink-01.39" | "#pink-01.40" | "#pink-01.41" | "#pink-01.42" | "#pink-01.43" | "#pink-01.44" | "#pink-01.45" | "#pink-01.46" | "#pink-01.47" | "#pink-01.48" | "#pink-01.49" | "#pink-01.50" | "#pink-01.51" | "#pink-01.52" | "#pink-01.53" | "#pink-01.54" | "#pink-01.55" | "#pink-01.56" | "#pink-01.57" | "#pink-01.58" | "#pink-01.59" | "#pink-01.60" | "#pink-01.61" | "#pink-01.62" | "#pink-01.63" | "#pink-01.64" | "#pink-01.65" | "#pink-01.66" | "#pink-01.67" | "#pink-01.68" | "#pink-01.69" | "#pink-01.70" | "#pink-01.71" | "#pink-01.72" | "#pink-01.73" | "#pink-01.74" | "#pink-01.75" | "#pink-01.76" | "#pink-01.77" | "#pink-01.78" | "#pink-01.79" | "#pink-01.80" | "#pink-01.81" | "#pink-01.82" | "#pink-01.83" | "#pink-01.84" | "#pink-01.85" | "#pink-01.86" | "#pink-01.87" | "#pink-01.88" | "#pink-01.89" | "#pink-01.90" | "#pink-01.91" | "#pink-01.92" | "#pink-01.93" | "#pink-01.94" | "#pink-01.95" | "#pink-01.96" | "#pink-01.97" | "#pink-01.98" | "#pink-01.99" | "#pink-01.100" | "#pink-02" | "#pink-02.0" | "#pink-02.1" | "#pink-02.2" | "#pink-02.3" | "#pink-02.4" | "#pink-02.5" | "#pink-02.6" | "#pink-02.7" | "#pink-02.8" | "#pink-02.9" | "#pink-02.00" | "#pink-02.01" | "#pink-02.02" | "#pink-02.03" | "#pink-02.04" | "#pink-02.05" | "#pink-02.06" | "#pink-02.07" | "#pink-02.08" | "#pink-02.09" | "#pink-02.10" | "#pink-02.11" | "#pink-02.12" | "#pink-02.13" | "#pink-02.14" | "#pink-02.15" | "#pink-02.16" | "#pink-02.17" | "#pink-02.18" | "#pink-02.19" | "#pink-02.20" | "#pink-02.21" | "#pink-02.22" | "#pink-02.23" | "#pink-02.24" | "#pink-02.25" | "#pink-02.26" | "#pink-02.27" | "#pink-02.28" | "#pink-02.29" | "#pink-02.30" | "#pink-02.31" | "#pink-02.32" | "#pink-02.33" | "#pink-02.34" | "#pink-02.35" | "#pink-02.36" | "#pink-02.37" | "#pink-02.38" | "#pink-02.39" | "#pink-02.40" | "#pink-02.41" | "#pink-02.42" | "#pink-02.43" | "#pink-02.44" | "#pink-02.45" | "#pink-02.46" | "#pink-02.47" | "#pink-02.48" | "#pink-02.49" | "#pink-02.50" | "#pink-02.51" | "#pink-02.52" | "#pink-02.53" | "#pink-02.54" | "#pink-02.55" | "#pink-02.56" | "#pink-02.57" | "#pink-02.58" | "#pink-02.59" | "#pink-02.60" | "#pink-02.61" | "#pink-02.62" | "#pink-02.63" | "#pink-02.64" | "#pink-02.65" | "#pink-02.66" | "#pink-02.67" | "#pink-02.68" | "#pink-02.69" | "#pink-02.70" | "#pink-02.71" | "#pink-02.72" | "#pink-02.73" | "#pink-02.74" | "#pink-02.75" | "#pink-02.76" | "#pink-02.77" | "#pink-02.78" | "#pink-02.79" | "#pink-02.80" | "#pink-02.81" | "#pink-02.82" | "#pink-02.83" | "#pink-02.84" | "#pink-02.85" | "#pink-02.86" | "#pink-02.87" | "#pink-02.88" | "#pink-02.89" | "#pink-02.90" | "#pink-02.91" | "#pink-02.92" | "#pink-02.93" | "#pink-02.94" | "#pink-02.95" | "#pink-02.96" | "#pink-02.97" | "#pink-02.98" | "#pink-02.99" | "#pink-02.100" | "#draft" | "#draft.0" | "#draft.1" | "#draft.2" | "#draft.3" | "#draft.4" | "#draft.5" | "#draft.6" | "#draft.7" | "#draft.8" | "#draft.9" | "#draft.00" | "#draft.01" | "#draft.02" | "#draft.03" | "#draft.04" | "#draft.05" | "#draft.06" | "#draft.07" | "#draft.08" | "#draft.09" | "#draft.10" | "#draft.11" | "#draft.12" | "#draft.13" | "#draft.14" | "#draft.15" | "#draft.16" | "#draft.17" | "#draft.18" | "#draft.19" | "#draft.20" | "#draft.21" | "#draft.22" | "#draft.23" | "#draft.24" | "#draft.25" | "#draft.26" | "#draft.27" | "#draft.28" | "#draft.29" | "#draft.30" | "#draft.31" | "#draft.32" | "#draft.33" | "#draft.34" | "#draft.35" | "#draft.36" | "#draft.37" | "#draft.38" | "#draft.39" | "#draft.40" | "#draft.41" | "#draft.42" | "#draft.43" | "#draft.44" | "#draft.45" | "#draft.46" | "#draft.47" | "#draft.48" | "#draft.49" | "#draft.50" | "#draft.51" | "#draft.52" | "#draft.53" | "#draft.54" | "#draft.55" | "#draft.56" | "#draft.57" | "#draft.58" | "#draft.59" | "#draft.60" | "#draft.61" | "#draft.62" | "#draft.63" | "#draft.64" | "#draft.65" | "#draft.66" | "#draft.67" | "#draft.68" | "#draft.69" | "#draft.70" | "#draft.71" | "#draft.72" | "#draft.73" | "#draft.74" | "#draft.75" | "#draft.76" | "#draft.77" | "#draft.78" | "#draft.79" | "#draft.80" | "#draft.81" | "#draft.82" | "#draft.83" | "#draft.84" | "#draft.85" | "#draft.86" | "#draft.87" | "#draft.88" | "#draft.89" | "#draft.90" | "#draft.91" | "#draft.92" | "#draft.93" | "#draft.94" | "#draft.95" | "#draft.96" | "#draft.97" | "#draft.98" | "#draft.99" | "#draft.100" | "#minor" | "#minor.0" | "#minor.1" | "#minor.2" | "#minor.3" | "#minor.4" | "#minor.5" | "#minor.6" | "#minor.7" | "#minor.8" | "#minor.9" | "#minor.00" | "#minor.01" | "#minor.02" | "#minor.03" | "#minor.04" | "#minor.05" | "#minor.06" | "#minor.07" | "#minor.08" | "#minor.09" | "#minor.10" | "#minor.11" | "#minor.12" | "#minor.13" | "#minor.14" | "#minor.15" | "#minor.16" | "#minor.17" | "#minor.18" | "#minor.19" | "#minor.20" | "#minor.21" | "#minor.22" | "#minor.23" | "#minor.24" | "#minor.25" | "#minor.26" | "#minor.27" | "#minor.28" | "#minor.29" | "#minor.30" | "#minor.31" | "#minor.32" | "#minor.33" | "#minor.34" | "#minor.35" | "#minor.36" | "#minor.37" | "#minor.38" | "#minor.39" | "#minor.40" | "#minor.41" | "#minor.42" | "#minor.43" | "#minor.44" | "#minor.45" | "#minor.46" | "#minor.47" | "#minor.48" | "#minor.49" | "#minor.50" | "#minor.51" | "#minor.52" | "#minor.53" | "#minor.54" | "#minor.55" | "#minor.56" | "#minor.57" | "#minor.58" | "#minor.59" | "#minor.60" | "#minor.61" | "#minor.62" | "#minor.63" | "#minor.64" | "#minor.65" | "#minor.66" | "#minor.67" | "#minor.68" | "#minor.69" | "#minor.70" | "#minor.71" | "#minor.72" | "#minor.73" | "#minor.74" | "#minor.75" | "#minor.76" | "#minor.77" | "#minor.78" | "#minor.79" | "#minor.80" | "#minor.81" | "#minor.82" | "#minor.83" | "#minor.84" | "#minor.85" | "#minor.86" | "#minor.87" | "#minor.88" | "#minor.89" | "#minor.90" | "#minor.91" | "#minor.92" | "#minor.93" | "#minor.94" | "#minor.95" | "#minor.96" | "#minor.97" | "#minor.98" | "#minor.99" | "#minor.100" | `rgb(${string})` | `rgba(${string})` | undefined>;
819
+ fade?: import("../../../tasty/index").StyleValue<string | undefined> | import("../../../tasty/index").StyleValueStateMap<string | undefined>;
820
+ reset?: import("../../../tasty/index").StyleValue<"input" | "button" | undefined> | import("../../../tasty/index").StyleValueStateMap<"input" | "button" | undefined>;
821
+ styledScrollbar?: import("../../../tasty/index").StyleValue<boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | undefined>;
822
+ scrollbar?: import("../../../tasty/index").StyleValue<string | number | boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<string | number | boolean | undefined>;
823
+ boldFontWeight?: import("../../../tasty/index").StyleValue<number | undefined> | import("../../../tasty/index").StyleValueStateMap<number | undefined>;
824
+ hide?: import("../../../tasty/index").StyleValue<boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<boolean | undefined>;
825
+ shadow?: import("../../../tasty/index").StyleValue<string | boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<string | boolean | undefined>;
826
+ radius?: import("../../../tasty/index").StyleValue<string | true | undefined> | import("../../../tasty/index").StyleValueStateMap<string | true | undefined>;
827
+ groupRadius?: import("../../../tasty/index").StyleValue<string | boolean | undefined> | import("../../../tasty/index").StyleValueStateMap<string | boolean | undefined>;
828
+ flow?: import("../../../tasty/index").StyleValue<string | (string & {}) | undefined> | import("../../../tasty/index").StyleValueStateMap<string | (string & {}) | undefined>;
829
+ gridAreas?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateAreas | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateAreas | undefined>;
830
+ gridColumns?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
831
+ gridRows?: import("../../../tasty/index").StyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined> | import("../../../tasty/index").StyleValueStateMap<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
832
+ preset?: import("../../../tasty/index").StyleValue<string | undefined> | import("../../../tasty/index").StyleValueStateMap<string | undefined>;
833
+ align?: import("../../../tasty/index").StyleValue<"stretch" | "initial" | (string & {}) | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | undefined> | import("../../../tasty/index").StyleValueStateMap<"stretch" | "initial" | (string & {}) | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | undefined>;
834
+ justify?: import("../../../tasty/index").StyleValue<"stretch" | "initial" | "right" | "left" | (string & {}) | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | "legacy" | undefined> | import("../../../tasty/index").StyleValueStateMap<"stretch" | "initial" | "right" | "left" | (string & {}) | "-moz-initial" | "inherit" | "revert" | "revert-layer" | "unset" | "normal" | "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start" | "baseline" | "space-around" | "space-between" | "space-evenly" | "legacy" | undefined>;
835
+ place?: import("../../../tasty/index").StyleValue<string | (string & {}) | undefined> | import("../../../tasty/index").StyleValueStateMap<string | (string & {}) | undefined>;
836
+ "@keyframes"?: import("../../../tasty/index").StyleValue<Record<string, import("../../../tasty/index").KeyframesSteps> | undefined> | import("../../../tasty/index").StyleValueStateMap<Record<string, import("../../../tasty/index").KeyframesSteps> | undefined>;
837
+ } & BaseStyleProps & import("../../../tasty/tasty").WithVariant<import("../../../tasty/tasty").VariantMap> & Omit<Omit<React.AllHTMLAttributes<HTMLElement>, keyof React.ClassAttributes<HTMLUListElement> | keyof React.HTMLAttributes<HTMLUListElement>> & React.ClassAttributes<HTMLUListElement> & React.HTMLAttributes<HTMLUListElement>, "color" | "filter" | "fill" | "top" | "right" | "bottom" | "left" | "font" | "outline" | "gap" | "padding" | "margin" | "width" | "height" | "border" | "transition" | "placeContent" | "placeItems" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimeline" | "animationTimingFunction" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "colorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "containerName" | "containerType" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontSmooth" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "letterSpacing" | "lineBreak" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "motionDistance" | "motionPath" | "motionRotation" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "offsetRotation" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflowAnchor" | "overflowBlock" | "overflowClipBox" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "printColorAdjust" | "quotes" | "resize" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollBehavior" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "scrollSnapMarginTop" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "verticalAlign" | "viewTransitionName" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex" | "zoom" | "all" | "animation" | "background" | "backgroundPosition" | "borderBlock" | "borderBlockEnd" | "borderBlockStart" | "borderBottom" | "borderColor" | "borderImage" | "borderInline" | "borderInlineEnd" | "borderInlineStart" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "caret" | "columnRule" | "columns" | "containIntrinsicSize" | "container" | "flex" | "flexFlow" | "grid" | "gridArea" | "gridColumn" | "gridRow" | "gridTemplate" | "inset" | "insetBlock" | "insetInline" | "lineClamp" | "listStyle" | "marginBlock" | "marginInline" | "mask" | "maskBorder" | "motion" | "offset" | "overflow" | "overscrollBehavior" | "paddingBlock" | "paddingInline" | "placeSelf" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginInline" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingInline" | "scrollSnapMargin" | "scrollTimeline" | "textDecoration" | "textEmphasis" | "MozAnimationDelay" | "MozAnimationDirection" | "MozAnimationDuration" | "MozAnimationFillMode" | "MozAnimationIterationCount" | "MozAnimationName" | "MozAnimationPlayState" | "MozAnimationTimingFunction" | "MozAppearance" | "MozBackfaceVisibility" | "MozBinding" | "MozBorderBottomColors" | "MozBorderEndColor" | "MozBorderEndStyle" | "MozBorderEndWidth" | "MozBorderLeftColors" | "MozBorderRightColors" | "MozBorderStartColor" | "MozBorderStartStyle" | "MozBorderTopColors" | "MozBoxSizing" | "MozColumnCount" | "MozColumnFill" | "MozColumnRuleColor" | "MozColumnRuleStyle" | "MozColumnRuleWidth" | "MozColumnWidth" | "MozContextProperties" | "MozFontFeatureSettings" | "MozFontLanguageOverride" | "MozHyphens" | "MozImageRegion" | "MozMarginEnd" | "MozMarginStart" | "MozOrient" | "MozOsxFontSmoothing" | "MozPaddingEnd" | "MozPaddingStart" | "MozPerspective" | "MozPerspectiveOrigin" | "MozStackSizing" | "MozTabSize" | "MozTextBlink" | "MozTextSizeAdjust" | "MozTransformOrigin" | "MozTransformStyle" | "MozTransitionDelay" | "MozTransitionDuration" | "MozTransitionProperty" | "MozTransitionTimingFunction" | "MozUserFocus" | "MozUserModify" | "MozUserSelect" | "MozWindowDragging" | "MozWindowShadow" | "msAccelerator" | "msBlockProgression" | "msContentZoomChaining" | "msContentZoomLimitMax" | "msContentZoomLimitMin" | "msContentZoomSnapPoints" | "msContentZoomSnapType" | "msContentZooming" | "msFilter" | "msFlexDirection" | "msFlexPositive" | "msFlowFrom" | "msFlowInto" | "msGridColumns" | "msGridRows" | "msHighContrastAdjust" | "msHyphenateLimitChars" | "msHyphenateLimitLines" | "msHyphenateLimitZone" | "msHyphens" | "msImeAlign" | "msLineBreak" | "msOrder" | "msOverflowStyle" | "msOverflowX" | "msOverflowY" | "msScrollChaining" | "msScrollLimitXMax" | "msScrollLimitXMin" | "msScrollLimitYMax" | "msScrollLimitYMin" | "msScrollRails" | "msScrollSnapPointsX" | "msScrollSnapPointsY" | "msScrollSnapType" | "msScrollTranslation" | "msScrollbar3dlightColor" | "msScrollbarArrowColor" | "msScrollbarBaseColor" | "msScrollbarDarkshadowColor" | "msScrollbarFaceColor" | "msScrollbarHighlightColor" | "msScrollbarShadowColor" | "msScrollbarTrackColor" | "msTextAutospace" | "msTextCombineHorizontal" | "msTextOverflow" | "msTouchAction" | "msTouchSelect" | "msTransform" | "msTransformOrigin" | "msTransitionDelay" | "msTransitionDuration" | "msTransitionProperty" | "msTransitionTimingFunction" | "msUserSelect" | "msWordBreak" | "msWrapFlow" | "msWrapMargin" | "msWrapThrough" | "msWritingMode" | "WebkitAlignContent" | "WebkitAlignItems" | "WebkitAlignSelf" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "WebkitAppearance" | "WebkitBackdropFilter" | "WebkitBackfaceVisibility" | "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "WebkitBorderBeforeColor" | "WebkitBorderBeforeStyle" | "WebkitBorderBeforeWidth" | "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderImageSlice" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "WebkitBoxDecorationBreak" | "WebkitBoxReflect" | "WebkitBoxShadow" | "WebkitBoxSizing" | "WebkitClipPath" | "WebkitColumnCount" | "WebkitColumnFill" | "WebkitColumnRuleColor" | "WebkitColumnRuleStyle" | "WebkitColumnRuleWidth" | "WebkitColumnSpan" | "WebkitColumnWidth" | "WebkitFilter" | "WebkitFlexBasis" | "WebkitFlexDirection" | "WebkitFlexGrow" | "WebkitFlexShrink" | "WebkitFlexWrap" | "WebkitFontFeatureSettings" | "WebkitFontKerning" | "WebkitFontSmoothing" | "WebkitFontVariantLigatures" | "WebkitHyphenateCharacter" | "WebkitHyphens" | "WebkitInitialLetter" | "WebkitJustifyContent" | "WebkitLineBreak" | "WebkitLineClamp" | "WebkitMarginEnd" | "WebkitMarginStart" | "WebkitMaskAttachment" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskPositionX" | "WebkitMaskPositionY" | "WebkitMaskRepeat" | "WebkitMaskRepeatX" | "WebkitMaskRepeatY" | "WebkitMaskSize" | "WebkitMaxInlineSize" | "WebkitOrder" | "WebkitOverflowScrolling" | "WebkitPaddingEnd" | "WebkitPaddingStart" | "WebkitPerspective" | "WebkitPerspectiveOrigin" | "WebkitPrintColorAdjust" | "WebkitRubyPosition" | "WebkitScrollSnapType" | "WebkitShapeMargin" | "WebkitTapHighlightColor" | "WebkitTextCombine" | "WebkitTextDecorationColor" | "WebkitTextDecorationLine" | "WebkitTextDecorationSkip" | "WebkitTextDecorationStyle" | "WebkitTextEmphasisColor" | "WebkitTextEmphasisPosition" | "WebkitTextEmphasisStyle" | "WebkitTextFillColor" | "WebkitTextOrientation" | "WebkitTextSizeAdjust" | "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "WebkitTextUnderlinePosition" | "WebkitTouchCallout" | "WebkitTransform" | "WebkitTransformOrigin" | "WebkitTransformStyle" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "WebkitUserModify" | "WebkitUserSelect" | "WebkitWritingMode" | "MozAnimation" | "MozBorderImage" | "MozColumnRule" | "MozColumns" | "MozTransition" | "msContentZoomLimit" | "msContentZoomSnap" | "msFlex" | "msScrollLimit" | "msScrollSnapX" | "msScrollSnapY" | "msTransition" | "WebkitAnimation" | "WebkitBorderBefore" | "WebkitBorderImage" | "WebkitBorderRadius" | "WebkitColumnRule" | "WebkitColumns" | "WebkitFlex" | "WebkitFlexFlow" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitTextEmphasis" | "WebkitTextStroke" | "WebkitTransition" | "azimuth" | "boxAlign" | "boxDirection" | "boxFlex" | "boxFlexGroup" | "boxLines" | "boxOrdinalGroup" | "boxOrient" | "boxPack" | "clip" | "gridColumnGap" | "gridGap" | "gridRowGap" | "imeMode" | "offsetBlock" | "offsetBlockEnd" | "offsetBlockStart" | "offsetInline" | "offsetInlineEnd" | "offsetInlineStart" | "scrollSnapCoordinate" | "scrollSnapDestination" | "scrollSnapPointsX" | "scrollSnapPointsY" | "scrollSnapTypeX" | "scrollSnapTypeY" | "KhtmlBoxAlign" | "KhtmlBoxDirection" | "KhtmlBoxFlex" | "KhtmlBoxFlexGroup" | "KhtmlBoxLines" | "KhtmlBoxOrdinalGroup" | "KhtmlBoxOrient" | "KhtmlBoxPack" | "KhtmlLineBreak" | "KhtmlOpacity" | "KhtmlUserSelect" | "MozBackgroundClip" | "MozBackgroundInlinePolicy" | "MozBackgroundOrigin" | "MozBackgroundSize" | "MozBorderRadius" | "MozBorderRadiusBottomleft" | "MozBorderRadiusBottomright" | "MozBorderRadiusTopleft" | "MozBorderRadiusTopright" | "MozBoxAlign" | "MozBoxDirection" | "MozBoxFlex" | "MozBoxOrdinalGroup" | "MozBoxOrient" | "MozBoxPack" | "MozBoxShadow" | "MozFloatEdge" | "MozForceBrokenImageIcon" | "MozOpacity" | "MozOutline" | "MozOutlineColor" | "MozOutlineRadius" | "MozOutlineRadiusBottomleft" | "MozOutlineRadiusBottomright" | "MozOutlineRadiusTopleft" | "MozOutlineRadiusTopright" | "MozOutlineStyle" | "MozOutlineWidth" | "MozTextAlignLast" | "MozTextDecorationColor" | "MozTextDecorationLine" | "MozTextDecorationStyle" | "MozUserInput" | "msImeMode" | "OAnimation" | "OAnimationDelay" | "OAnimationDirection" | "OAnimationDuration" | "OAnimationFillMode" | "OAnimationIterationCount" | "OAnimationName" | "OAnimationPlayState" | "OAnimationTimingFunction" | "OBackgroundSize" | "OBorderImage" | "OObjectFit" | "OObjectPosition" | "OTabSize" | "OTextOverflow" | "OTransform" | "OTransformOrigin" | "OTransition" | "OTransitionDelay" | "OTransitionDuration" | "OTransitionProperty" | "OTransitionTimingFunction" | "WebkitBoxAlign" | "WebkitBoxDirection" | "WebkitBoxFlex" | "WebkitBoxFlexGroup" | "WebkitBoxLines" | "WebkitBoxOrdinalGroup" | "WebkitBoxOrient" | "WebkitBoxPack" | "WebkitScrollSnapPointsX" | "WebkitScrollSnapPointsY" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "marker" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "svgFill" | "fade" | "reset" | "styledScrollbar" | "scrollbar" | "boldFontWeight" | "hide" | "shadow" | "radius" | "groupRadius" | "flow" | "gridAreas" | "gridColumns" | "gridRows" | "preset" | "align" | "justify" | "place" | "@keyframes" | "block" | "style" | "inline" | "element" | "styles" | "mods" | "as" | "qa" | "qaVal" | "breakpoints" | "isHidden" | "isDisabled" | "css" | "theme" | "tokens" | "ref"> & React.RefAttributes<unknown>> & {};
836
838
  export interface CubeSelectBaseProps<T> extends BasePropsWithoutChildren, AriaLabelingProps, BaseStyleProps, OuterStyleProps, ColorStyleProps, Omit<FieldBaseProps, 'tooltip'>, CollectionBase<T>, Omit<AriaSelectProps<T>, 'errorMessage'> {
837
839
  icon?: ReactElement;
838
840
  rightIcon?: ReactNode;