@cube-dev/ui-kit 0.97.0 → 0.98.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 (570) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/es/_internal/hooks/index.js +1 -1
  3. package/es/_internal/hooks/use-chained-callback.js +1 -1
  4. package/es/_internal/hooks/use-debounced-value.js +1 -1
  5. package/es/_internal/hooks/use-deprecation-warning.js +1 -1
  6. package/es/_internal/hooks/use-effect-once.js +1 -1
  7. package/es/_internal/hooks/use-event.js +1 -1
  8. package/es/_internal/hooks/use-is-first-render.js +1 -1
  9. package/es/_internal/hooks/use-sync-ref.js +1 -1
  10. package/es/_internal/hooks/use-timer/index.js +1 -1
  11. package/es/_internal/hooks/use-timer/timer.js +1 -1
  12. package/es/_internal/hooks/use-timer/use-timer.js +1 -1
  13. package/es/_internal/hooks/use-update-effect.js +1 -1
  14. package/es/_internal/hooks/use-warn.js +1 -1
  15. package/es/_internal/index.js +1 -1
  16. package/es/components/Block.js +1 -1
  17. package/es/components/CollectionItem.js +1 -1
  18. package/es/components/GlobalStyles.js +1 -1
  19. package/es/components/GridProvider.js +1 -1
  20. package/es/components/HiddenInput.js +1 -1
  21. package/es/components/OpenTrasition.js +1 -1
  22. package/es/components/Root.js +1 -1
  23. package/es/components/actions/Action/Action.js +1 -1
  24. package/es/components/actions/Button/Button.js +197 -64
  25. package/es/components/actions/Button/index.js +1 -1
  26. package/es/components/actions/ButtonGroup/ButtonGroup.js +1 -1
  27. package/es/components/actions/CommandMenu/CommandMenu.js +1 -1
  28. package/es/components/actions/CommandMenu/index.js +1 -1
  29. package/es/components/actions/CommandMenu/styled.js +1 -1
  30. package/es/components/actions/ItemAction/ItemAction.js +1 -1
  31. package/es/components/actions/ItemAction/index.js +1 -1
  32. package/es/components/actions/ItemActionContext.js +5 -2
  33. package/es/components/actions/ItemButton/ItemButton.js +28 -11
  34. package/es/components/actions/ItemButton/index.js +1 -1
  35. package/es/components/actions/Link/Link.js +2 -2
  36. package/es/components/actions/Menu/Menu.js +1 -1
  37. package/es/components/actions/Menu/MenuItem.js +1 -1
  38. package/es/components/actions/Menu/MenuSection.js +1 -1
  39. package/es/components/actions/Menu/MenuTrigger.js +1 -1
  40. package/es/components/actions/Menu/SubMenuTrigger.js +1 -1
  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 +1 -1
  44. package/es/components/actions/Menu/styled.js +1 -1
  45. package/es/components/actions/index.js +1 -1
  46. package/es/components/actions/use-action.js +1 -1
  47. package/es/components/actions/use-anchored-menu.js +1 -1
  48. package/es/components/actions/use-context-menu.js +1 -1
  49. package/es/components/content/ActiveZone/ActiveZone.js +1 -1
  50. package/es/components/content/Alert/Alert.js +1 -1
  51. package/es/components/content/Alert/index.js +1 -1
  52. package/es/components/content/Alert/types.js +1 -1
  53. package/es/components/content/Alert/use-alert.js +1 -1
  54. package/es/components/content/Avatar/Avatar.js +1 -1
  55. package/es/components/content/Badge/Badge.js +8 -1
  56. package/es/components/content/Card/Card.js +1 -1
  57. package/es/components/content/Content.js +1 -1
  58. package/es/components/content/CopyPasteBlock/CopyPasteBlock.js +1 -1
  59. package/es/components/content/CopyPasteBlock/index.js +1 -1
  60. package/es/components/content/CopySnippet/CopySnippet.js +1 -1
  61. package/es/components/content/CopySnippet/index.js +1 -1
  62. package/es/components/content/Disclosure/Disclosure.js +8 -3
  63. package/es/components/content/Disclosure/index.js +1 -1
  64. package/es/components/content/Divider.js +1 -1
  65. package/es/components/content/Footer.js +1 -1
  66. package/es/components/content/Header.js +1 -1
  67. package/es/components/content/HotKeys/HotKeys.js +1 -1
  68. package/es/components/content/HotKeys/index.js +1 -1
  69. package/es/components/content/Item/Item.js +179 -60
  70. package/es/components/content/Item/index.js +1 -1
  71. package/es/components/content/ItemBadge/ItemBadge.js +1 -1
  72. package/es/components/content/ItemBadge/index.js +1 -1
  73. package/es/components/content/Layout/GridLayout.js +1 -1
  74. package/es/components/content/Layout/Layout.js +23 -4
  75. package/es/components/content/Layout/LayoutBlock.js +1 -1
  76. package/es/components/content/Layout/LayoutCenter.js +1 -1
  77. package/es/components/content/Layout/LayoutContainer.js +11 -4
  78. package/es/components/content/Layout/LayoutContent.js +14 -8
  79. package/es/components/content/Layout/LayoutContext.js +1 -1
  80. package/es/components/content/Layout/LayoutFlex.js +1 -1
  81. package/es/components/content/Layout/LayoutFooter.js +7 -2
  82. package/es/components/content/Layout/LayoutGrid.js +1 -1
  83. package/es/components/content/Layout/LayoutHeader.js +2 -1
  84. package/es/components/content/Layout/LayoutPane.js +9 -7
  85. package/es/components/content/Layout/LayoutPanel.js +10 -4
  86. package/es/components/content/Layout/LayoutPanelHeader.js +3 -6
  87. package/es/components/content/Layout/LayoutToolbar.js +2 -1
  88. package/es/components/content/Layout/hooks/useTinyScrollbar.js +15 -5
  89. package/es/components/content/Layout/index.js +1 -1
  90. package/es/components/content/Layout/utils.js +1 -1
  91. package/es/components/content/List/SectionHeading.js +1 -1
  92. package/es/components/content/List/index.js +1 -1
  93. package/es/components/content/Paragraph.js +1 -1
  94. package/es/components/content/Placeholder/Placeholder.js +1 -1
  95. package/es/components/content/PrismCode/PrismCode.js +1 -1
  96. package/es/components/content/PrismCode/prismSetup.js +1 -1
  97. package/es/components/content/PrismDiffCode/PrismDiffCode.js +1 -1
  98. package/es/components/content/Result/Result.js +1 -1
  99. package/es/components/content/Skeleton/Skeleton.js +1 -1
  100. package/es/components/content/Tag/Tag.js +15 -25
  101. package/es/components/content/Text.js +3 -2
  102. package/es/components/content/TextItem/TextItem.js +1 -1
  103. package/es/components/content/TextItem/index.js +1 -1
  104. package/es/components/content/Title.js +1 -1
  105. package/es/components/content/highlightText.js +1 -1
  106. package/es/components/content/use-auto-tooltip.js +1 -1
  107. package/es/components/fields/Checkbox/Checkbox.js +1 -1
  108. package/es/components/fields/Checkbox/CheckboxGroup.js +1 -1
  109. package/es/components/fields/Checkbox/context.js +1 -1
  110. package/es/components/fields/Checkbox/index.js +1 -1
  111. package/es/components/fields/ComboBox/ComboBox.js +1 -1
  112. package/es/components/fields/ComboBox/index.js +1 -1
  113. package/es/components/fields/DatePicker/DateInput.js +1 -1
  114. package/es/components/fields/DatePicker/DateInputBase.js +1 -1
  115. package/es/components/fields/DatePicker/DatePicker.js +1 -1
  116. package/es/components/fields/DatePicker/DatePickerButton.js +1 -1
  117. package/es/components/fields/DatePicker/DatePickerElement.js +1 -1
  118. package/es/components/fields/DatePicker/DatePickerInput.js +1 -1
  119. package/es/components/fields/DatePicker/DatePickerSegment.js +1 -1
  120. package/es/components/fields/DatePicker/DateRangePicker.js +1 -1
  121. package/es/components/fields/DatePicker/DateRangeSeparatedPicker.js +1 -1
  122. package/es/components/fields/DatePicker/TimeInput.js +1 -1
  123. package/es/components/fields/DatePicker/index.js +1 -1
  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 +1 -1
  130. package/es/components/fields/FilterListBox/FilterListBox.js +6 -7
  131. package/es/components/fields/FilterListBox/index.js +1 -1
  132. package/es/components/fields/FilterPicker/FilterPicker.js +3 -3
  133. package/es/components/fields/FilterPicker/index.js +1 -1
  134. package/es/components/fields/Input/Input.js +1 -1
  135. package/es/components/fields/Input/index.js +1 -1
  136. package/es/components/fields/ListBox/ListBox.js +1 -1
  137. package/es/components/fields/ListBox/index.js +1 -1
  138. package/es/components/fields/NumberInput/NumberInput.js +1 -1
  139. package/es/components/fields/NumberInput/StepButton.js +8 -11
  140. package/es/components/fields/PasswordInput/PasswordInput.js +1 -1
  141. package/es/components/fields/Picker/Picker.js +3 -3
  142. package/es/components/fields/Picker/index.js +1 -1
  143. package/es/components/fields/RadioGroup/Radio.js +1 -1
  144. package/es/components/fields/RadioGroup/RadioGroup.js +1 -1
  145. package/es/components/fields/RadioGroup/context.js +1 -1
  146. package/es/components/fields/RadioGroup/index.js +1 -1
  147. package/es/components/fields/SearchInput/SearchInput.js +1 -1
  148. package/es/components/fields/SearchInput/index.js +1 -1
  149. package/es/components/fields/Select/Select.js +4 -4
  150. package/es/components/fields/Select/index.js +1 -1
  151. package/es/components/fields/Slider/Gradation.js +1 -1
  152. package/es/components/fields/Slider/Header.js +1 -1
  153. package/es/components/fields/Slider/RangeSlider.js +1 -1
  154. package/es/components/fields/Slider/Slider.js +1 -1
  155. package/es/components/fields/Slider/SliderBase.js +1 -1
  156. package/es/components/fields/Slider/SliderInput.js +1 -1
  157. package/es/components/fields/Slider/SliderThumb.js +1 -1
  158. package/es/components/fields/Slider/SliderTrack.js +1 -1
  159. package/es/components/fields/Slider/elements.js +1 -1
  160. package/es/components/fields/Slider/index.js +1 -1
  161. package/es/components/fields/Slider/types.js +1 -1
  162. package/es/components/fields/Switch/Switch.js +1 -1
  163. package/es/components/fields/Switch/index.js +1 -1
  164. package/es/components/fields/TextArea/TextArea.js +1 -1
  165. package/es/components/fields/TextArea/index.js +1 -1
  166. package/es/components/fields/TextInput/TextInput.js +1 -1
  167. package/es/components/fields/TextInput/TextInputBase.js +1 -1
  168. package/es/components/fields/TextInput/index.js +1 -1
  169. package/es/components/fields/TextInputMapper/TextInputMapper.js +1 -1
  170. package/es/components/fields/TextInputMapper/index.js +1 -1
  171. package/es/components/fields/index.js +1 -1
  172. package/es/components/form/FieldWrapper/FieldWrapper.js +3 -3
  173. package/es/components/form/FieldWrapper/extract-field-wrapper-props.js +1 -1
  174. package/es/components/form/FieldWrapper/index.js +1 -1
  175. package/es/components/form/FieldWrapper/types.js +1 -1
  176. package/es/components/form/Form/Field.js +1 -1
  177. package/es/components/form/Form/Form.js +1 -1
  178. package/es/components/form/Form/ResetButton/ResetButton.js +1 -1
  179. package/es/components/form/Form/ResetButton/index.js +1 -1
  180. package/es/components/form/Form/SubmitButton/SubmitButton.js +1 -1
  181. package/es/components/form/Form/SubmitButton/index.js +1 -1
  182. package/es/components/form/Form/SubmitError.js +1 -1
  183. package/es/components/form/Form/index.js +1 -1
  184. package/es/components/form/Form/types.js +1 -1
  185. package/es/components/form/Form/use-field/index.js +1 -1
  186. package/es/components/form/Form/use-field/types.js +1 -1
  187. package/es/components/form/Form/use-field/use-field-props.js +1 -1
  188. package/es/components/form/Form/use-field/use-field.js +1 -1
  189. package/es/components/form/Form/use-form.js +1 -1
  190. package/es/components/form/Form/validation.js +1 -1
  191. package/es/components/form/Label.js +1 -1
  192. package/es/components/form/index.js +1 -1
  193. package/es/components/form/wrapper.js +1 -1
  194. package/es/components/helpers/DisplayTransition/DisplayTransition.js +33 -8
  195. package/es/components/helpers/DisplayTransition/index.js +10 -0
  196. package/es/components/helpers/IconSwitch/IconSwitch.js +143 -0
  197. package/es/components/helpers/index.js +2 -1
  198. package/es/components/layout/Flex.js +1 -1
  199. package/es/components/layout/Flow.js +1 -1
  200. package/es/components/layout/Grid.js +1 -1
  201. package/es/components/layout/Panel.js +1 -1
  202. package/es/components/layout/Prefix.js +1 -1
  203. package/es/components/layout/ResizablePanel.js +2 -2
  204. package/es/components/layout/Space.js +1 -1
  205. package/es/components/layout/Suffix.js +1 -1
  206. package/es/components/navigation/LegacyTabs/LegacyTabs.js +1 -1
  207. package/es/components/organisms/FileTabs/FileTabs.js +1 -1
  208. package/es/components/organisms/StatsCard/StatsCard.js +1 -1
  209. package/es/components/other/Base64Upload/Base64Upload.js +3 -2
  210. package/es/components/other/Calendar/Calendar.js +1 -1
  211. package/es/components/other/Calendar/CalendarCell.js +1 -1
  212. package/es/components/other/Calendar/CalendarGrid.js +1 -1
  213. package/es/components/other/Calendar/RangeCalendar.js +1 -1
  214. package/es/components/other/CloudLogo/CloudLogo.js +1 -1
  215. package/es/components/overlays/AlertDialog/AlertDialog.js +1 -1
  216. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +1 -1
  217. package/es/components/overlays/AlertDialog/AlertDialogZone.js +1 -1
  218. package/es/components/overlays/AlertDialog/index.js +1 -1
  219. package/es/components/overlays/AlertDialog/types.js +1 -1
  220. package/es/components/overlays/Dialog/Dialog.js +8 -8
  221. package/es/components/overlays/Dialog/DialogContainer.js +1 -1
  222. package/es/components/overlays/Dialog/DialogForm.js +1 -1
  223. package/es/components/overlays/Dialog/DialogTrigger.js +1 -1
  224. package/es/components/overlays/Dialog/context.js +1 -1
  225. package/es/components/overlays/Dialog/index.js +1 -1
  226. package/es/components/overlays/Dialog/use-dialog-container.js +1 -1
  227. package/es/components/overlays/Modal/Modal.js +3 -3
  228. package/es/components/overlays/Modal/OpenTransition.js +1 -1
  229. package/es/components/overlays/Modal/Overlay.js +1 -1
  230. package/es/components/overlays/Modal/Popover.js +1 -1
  231. package/es/components/overlays/Modal/Tray.js +1 -1
  232. package/es/components/overlays/Modal/Underlay.js +1 -1
  233. package/es/components/overlays/Modal/index.js +1 -1
  234. package/es/components/overlays/Modal/types.js +1 -1
  235. package/es/components/overlays/NewNotifications/Bar/FloatingNotification.js +1 -1
  236. package/es/components/overlays/NewNotifications/Bar/NotificationsBar.js +1 -1
  237. package/es/components/overlays/NewNotifications/Bar/TransitionComponent.js +1 -1
  238. package/es/components/overlays/NewNotifications/Bar/index.js +1 -1
  239. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogContext.js +1 -1
  240. package/es/components/overlays/NewNotifications/Dialog/NotificationsDialogTrigger.js +1 -1
  241. package/es/components/overlays/NewNotifications/Dialog/index.js +1 -1
  242. package/es/components/overlays/NewNotifications/Notification.js +1 -1
  243. package/es/components/overlays/NewNotifications/NotificationView/NotificationAction.js +1 -1
  244. package/es/components/overlays/NewNotifications/NotificationView/NotificationCloseButton.js +2 -2
  245. package/es/components/overlays/NewNotifications/NotificationView/NotificationDescription.js +1 -1
  246. package/es/components/overlays/NewNotifications/NotificationView/NotificationFooter.js +1 -1
  247. package/es/components/overlays/NewNotifications/NotificationView/NotificationHeader.js +1 -1
  248. package/es/components/overlays/NewNotifications/NotificationView/NotificationIcon.js +1 -1
  249. package/es/components/overlays/NewNotifications/NotificationView/NotificationProvider.js +1 -1
  250. package/es/components/overlays/NewNotifications/NotificationView/NotificationView.js +1 -1
  251. package/es/components/overlays/NewNotifications/NotificationView/index.js +1 -1
  252. package/es/components/overlays/NewNotifications/NotificationView/types.js +1 -1
  253. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsContext.js +1 -1
  254. package/es/components/overlays/NewNotifications/NotificationsContext/NotificationsProvider.js +1 -1
  255. package/es/components/overlays/NewNotifications/NotificationsContext/index.js +1 -1
  256. package/es/components/overlays/NewNotifications/NotificationsContext/use-notifications.js +1 -1
  257. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsList.js +1 -1
  258. package/es/components/overlays/NewNotifications/NotificationsList/NotificationsListItem.js +1 -1
  259. package/es/components/overlays/NewNotifications/NotificationsList/index.js +1 -1
  260. package/es/components/overlays/NewNotifications/NotificationsList/types.js +1 -1
  261. package/es/components/overlays/NewNotifications/hooks/index.js +1 -1
  262. package/es/components/overlays/NewNotifications/hooks/types.js +1 -1
  263. package/es/components/overlays/NewNotifications/hooks/use-notification-list-item.js +1 -1
  264. package/es/components/overlays/NewNotifications/hooks/use-notifications-api.js +1 -1
  265. package/es/components/overlays/NewNotifications/hooks/use-notifications-list.js +1 -1
  266. package/es/components/overlays/NewNotifications/hooks/use-notifications-observer.js +1 -1
  267. package/es/components/overlays/NewNotifications/index.js +1 -1
  268. package/es/components/overlays/NewNotifications/types.js +1 -1
  269. package/es/components/overlays/Notification/Notification.js +1 -1
  270. package/es/components/overlays/OverlayWrapper.js +1 -1
  271. package/es/components/overlays/Toasts/Toast.js +1 -1
  272. package/es/components/overlays/Toasts/index.js +1 -1
  273. package/es/components/overlays/Toasts/types.js +1 -1
  274. package/es/components/overlays/Toasts/use-toasts-api.js +1 -1
  275. package/es/components/overlays/Tooltip/Tooltip.js +1 -1
  276. package/es/components/overlays/Tooltip/TooltipProvider.js +1 -1
  277. package/es/components/overlays/Tooltip/TooltipTrigger.js +1 -1
  278. package/es/components/overlays/Tooltip/context.js +1 -1
  279. package/es/components/overlays/Tooltip/index.js +1 -1
  280. package/es/components/portal/Portal.js +1 -1
  281. package/es/components/portal/PortalProvider.js +1 -1
  282. package/es/components/portal/index.js +1 -1
  283. package/es/components/portal/types.js +1 -1
  284. package/es/components/portal/usePortal.js +1 -1
  285. package/es/components/shared/InvalidIcon.js +1 -1
  286. package/es/components/shared/ValidIcon.js +1 -1
  287. package/es/components/status/LoadingAnimation/LoadingAnimation.js +1 -1
  288. package/es/components/status/LoadingAnimation/index.js +1 -1
  289. package/es/components/status/Spin/Cube.js +1 -1
  290. package/es/components/status/Spin/InternalSpinner.js +1 -1
  291. package/es/components/status/Spin/Spin.js +1 -1
  292. package/es/components/status/Spin/SpinsContainer.js +1 -1
  293. package/es/components/status/Spin/index.js +1 -1
  294. package/es/components/status/Spin/types.js +1 -1
  295. package/es/components/status/index.js +1 -1
  296. package/es/data/item-themes.js +23 -1
  297. package/es/data/themes.js +1 -1
  298. package/es/icons/AdjustmentsHorizontalIcon.js +1 -1
  299. package/es/icons/AdjustmentsIcon.js +1 -1
  300. package/es/icons/AiIcon.js +1 -1
  301. package/es/icons/AreaChartIcon.js +1 -1
  302. package/es/icons/BackwardIcon.js +1 -1
  303. package/es/icons/BarChartIcon.js +1 -1
  304. package/es/icons/BellFilledIcon.js +1 -1
  305. package/es/icons/BellIcon.js +1 -1
  306. package/es/icons/BooleanIcon.js +1 -1
  307. package/es/icons/CalendarEditIcon.js +1 -1
  308. package/es/icons/CalendarIcon.js +1 -1
  309. package/es/icons/CaretDownIcon.js +1 -1
  310. package/es/icons/CaretUpIcon.js +1 -1
  311. package/es/icons/ChartAreaStackedIcon.js +1 -1
  312. package/es/icons/ChartAreaStackedPercentageIcon.js +1 -1
  313. package/es/icons/ChartBarGroupedHorizontalIcon.js +1 -1
  314. package/es/icons/ChartBarGroupedIcon.js +1 -1
  315. package/es/icons/ChartBarHorizontalIcon.js +1 -1
  316. package/es/icons/ChartBarLineIcon.js +1 -1
  317. package/es/icons/ChartBarStackedHorizontalIcon.js +1 -1
  318. package/es/icons/ChartBarStackedIcon.js +1 -1
  319. package/es/icons/ChartBarStackedPercentageHorizontalIcon.js +1 -1
  320. package/es/icons/ChartBarStackedPercentageIcon.js +1 -1
  321. package/es/icons/ChartBoxPlot2Icon.js +1 -1
  322. package/es/icons/ChartBoxPlotIcon.js +1 -1
  323. package/es/icons/ChartBubbleIcon.js +1 -1
  324. package/es/icons/ChartDonut2Icon.js +1 -1
  325. package/es/icons/ChartFunnelIcon.js +1 -1
  326. package/es/icons/ChartHeatmapIcon.js +1 -1
  327. package/es/icons/ChartKPIIcon.js +1 -1
  328. package/es/icons/ChartPie2Icon.js +1 -1
  329. package/es/icons/ChartScatterIcon.js +1 -1
  330. package/es/icons/CheckCircleFilledIcon.js +1 -1
  331. package/es/icons/CheckCircleIcon.js +1 -1
  332. package/es/icons/CheckIcon.js +1 -1
  333. package/es/icons/CircleFilledIcon.js +1 -1
  334. package/es/icons/ClearIcon.js +1 -1
  335. package/es/icons/CloseCircleFilledIcon.js +1 -1
  336. package/es/icons/CloseCircleIcon.js +1 -1
  337. package/es/icons/CloseIcon.js +1 -1
  338. package/es/icons/CodeIcon.js +1 -1
  339. package/es/icons/CopyIcon.js +1 -1
  340. package/es/icons/CountIcon.js +1 -1
  341. package/es/icons/CubeIcon.js +1 -1
  342. package/es/icons/CubePauseIcon.js +1 -1
  343. package/es/icons/CubePlayIcon.js +1 -1
  344. package/es/icons/CurrencyDollarIcon.js +1 -1
  345. package/es/icons/DangerIcon.js +1 -1
  346. package/es/icons/DashboardIcon.js +1 -1
  347. package/es/icons/DatabaseIcon.js +1 -1
  348. package/es/icons/DecimalDecreaseIcon.js +1 -1
  349. package/es/icons/DecimalIncreaseIcon.js +1 -1
  350. package/es/icons/DirectionIcon.js +1 -1
  351. package/es/icons/DonutIcon.js +1 -1
  352. package/es/icons/DownIcon.js +1 -1
  353. package/es/icons/EditIcon.js +1 -1
  354. package/es/icons/ExclamationCircleFilledIcon.js +1 -1
  355. package/es/icons/ExclamationCircleIcon.js +1 -1
  356. package/es/icons/ExclamationIcon.js +1 -1
  357. package/es/icons/EyeIcon.js +1 -1
  358. package/es/icons/EyeInvisibleIcon.js +1 -1
  359. package/es/icons/FilterIcon.js +1 -1
  360. package/es/icons/FolderFilledIcon.js +1 -1
  361. package/es/icons/FolderIcon.js +1 -1
  362. package/es/icons/FolderOpenFilledIcon.js +1 -1
  363. package/es/icons/FolderOpenIcon.js +1 -1
  364. package/es/icons/ForwardIcon.js +1 -1
  365. package/es/icons/HierarchyIcon.js +1 -1
  366. package/es/icons/HierarchyOpenIcon.js +1 -1
  367. package/es/icons/Icon.js +1 -1
  368. package/es/icons/InfoCircleIcon.js +1 -1
  369. package/es/icons/InfoIcon.js +1 -1
  370. package/es/icons/KeyIcon.js +1 -1
  371. package/es/icons/LeftIcon.js +1 -1
  372. package/es/icons/LineChartIcon.js +1 -1
  373. package/es/icons/LoadingIcon.js +1 -1
  374. package/es/icons/LockFilledIcon.js +1 -1
  375. package/es/icons/LockIcon.js +1 -1
  376. package/es/icons/MoreIcon.js +1 -1
  377. package/es/icons/NotAllowedIcon.js +1 -1
  378. package/es/icons/Number123Icon.js +1 -1
  379. package/es/icons/NumberIcon.js +1 -1
  380. package/es/icons/PauseCircleFilledIcon.js +1 -1
  381. package/es/icons/PauseCircleIcon.js +1 -1
  382. package/es/icons/PauseIcon.js +1 -1
  383. package/es/icons/PercentageIcon.js +1 -1
  384. package/es/icons/PieChartIcon.js +1 -1
  385. package/es/icons/PlayCircleIcon.js +1 -1
  386. package/es/icons/PlayIcon.js +1 -1
  387. package/es/icons/PlusIcon.js +1 -1
  388. package/es/icons/ProgressBarIcon.js +1 -1
  389. package/es/icons/ReloadIcon.js +1 -1
  390. package/es/icons/ReportIcon.js +1 -1
  391. package/es/icons/ReturnIcon.js +1 -1
  392. package/es/icons/RightIcon.js +1 -1
  393. package/es/icons/SchemeIcon.js +1 -1
  394. package/es/icons/SearchIcon.js +1 -1
  395. package/es/icons/SettingsIcon.js +1 -1
  396. package/es/icons/ShieldFilledIcon.js +1 -1
  397. package/es/icons/ShieldIcon.js +1 -1
  398. package/es/icons/SlashIcon.js +1 -1
  399. package/es/icons/SparklesIcon.js +1 -1
  400. package/es/icons/SqlIcon.js +1 -1
  401. package/es/icons/StatsIcon.js +1 -1
  402. package/es/icons/StopIcon.js +1 -1
  403. package/es/icons/StringIcon.js +1 -1
  404. package/es/icons/SwitchIcon.js +1 -1
  405. package/es/icons/TableIcon.js +1 -1
  406. package/es/icons/ThumbsDownIcon.js +1 -1
  407. package/es/icons/ThumbsUpIcon.js +1 -1
  408. package/es/icons/ThunderboltCrossedIcon.js +1 -1
  409. package/es/icons/ThunderboltFilledIcon.js +1 -1
  410. package/es/icons/ThunderboltIcon.js +1 -1
  411. package/es/icons/TimeIcon.js +1 -1
  412. package/es/icons/TrashIcon.js +1 -1
  413. package/es/icons/UnlockIcon.js +1 -1
  414. package/es/icons/UpIcon.js +1 -1
  415. package/es/icons/UserGroupIcon.js +1 -1
  416. package/es/icons/UserIcon.js +1 -1
  417. package/es/icons/UserLockIcon.js +1 -1
  418. package/es/icons/ViewIcon.js +1 -1
  419. package/es/icons/WarningFilledIcon.js +1 -1
  420. package/es/icons/WarningIcon.js +1 -1
  421. package/es/icons/add-new-icon.js +1 -1
  422. package/es/icons/index.js +1 -1
  423. package/es/icons/wrap-icon.js +1 -1
  424. package/es/index.js +1 -1
  425. package/es/provider.js +1 -1
  426. package/es/providers/TrackingProvider.js +1 -1
  427. package/es/providers/navigation.types.js +1 -1
  428. package/es/providers/navigationAdapter.default.js +1 -1
  429. package/es/services/notification.js +1 -1
  430. package/es/shared/form.js +1 -1
  431. package/es/shared/index.js +1 -1
  432. package/es/stories/Form.legacy-stories.js +1 -1
  433. package/es/stories/FormFieldArgs.js +1 -1
  434. package/es/stories/SimpleLayout.stories.js +1 -1
  435. package/es/stories/Tasty.stories.js +1 -1
  436. package/es/stories/components/ConfirmDeletionDialogForm.js +1 -1
  437. package/es/stories/components/DialogFormApp.js +1 -1
  438. package/es/stories/components/StyledButton.js +1 -1
  439. package/es/stories/lists/baseProps.js +1 -1
  440. package/es/tasty/debug.js +1 -1
  441. package/es/tasty/index.js +2 -1
  442. package/es/tasty/injector/index.js +1 -1
  443. package/es/tasty/injector/injector.js +1 -1
  444. package/es/tasty/injector/sheet-manager.js +1 -1
  445. package/es/tasty/injector/types.js +1 -1
  446. package/es/tasty/parser/classify.js +1 -1
  447. package/es/tasty/parser/const.js +1 -1
  448. package/es/tasty/parser/lru.js +1 -1
  449. package/es/tasty/parser/parser.js +1 -1
  450. package/es/tasty/parser/tokenizer.js +1 -1
  451. package/es/tasty/parser/types.js +1 -1
  452. package/es/tasty/providers/BreakpointsProvider.js +1 -1
  453. package/es/tasty/styles/align.js +1 -1
  454. package/es/tasty/styles/border.js +1 -1
  455. package/es/tasty/styles/boxShadow.combinator.js +1 -1
  456. package/es/tasty/styles/color.js +1 -1
  457. package/es/tasty/styles/createStyle.js +1 -1
  458. package/es/tasty/styles/dimension.js +2 -2
  459. package/es/tasty/styles/display.js +1 -1
  460. package/es/tasty/styles/fade.js +1 -1
  461. package/es/tasty/styles/fill.js +1 -1
  462. package/es/tasty/styles/flow.js +1 -1
  463. package/es/tasty/styles/font.js +1 -1
  464. package/es/tasty/styles/fontStyle.js +1 -1
  465. package/es/tasty/styles/gap.js +1 -1
  466. package/es/tasty/styles/groupRadius.js +1 -1
  467. package/es/tasty/styles/height.js +1 -1
  468. package/es/tasty/styles/index.js +1 -1
  469. package/es/tasty/styles/inset.js +1 -1
  470. package/es/tasty/styles/justify.js +1 -1
  471. package/es/tasty/styles/list.js +3 -2
  472. package/es/tasty/styles/margin.js +1 -1
  473. package/es/tasty/styles/outline.js +1 -1
  474. package/es/tasty/styles/padding.js +1 -1
  475. package/es/tasty/styles/place.js +1 -1
  476. package/es/tasty/styles/predefined.js +1 -1
  477. package/es/tasty/styles/preset.js +6 -2
  478. package/es/tasty/styles/radius.js +1 -1
  479. package/es/tasty/styles/reset.js +1 -1
  480. package/es/tasty/styles/scrollbar.js +1 -1
  481. package/es/tasty/styles/shadow.js +1 -1
  482. package/es/tasty/styles/styledScrollbar.js +1 -1
  483. package/es/tasty/styles/transition.js +1 -1
  484. package/es/tasty/styles/types.js +1 -1
  485. package/es/tasty/styles/width.js +1 -1
  486. package/es/tasty/tasty.js +32 -3
  487. package/es/tasty/types.js +1 -1
  488. package/es/tasty/utils/cache-wrapper.js +1 -1
  489. package/es/tasty/utils/case-converter.js +1 -1
  490. package/es/tasty/utils/colors.js +1 -1
  491. package/es/tasty/utils/dotize.js +1 -1
  492. package/es/tasty/utils/filterBaseProps.js +1 -1
  493. package/es/tasty/utils/getDisplayName.js +1 -1
  494. package/es/tasty/utils/getModCombinations.js +1 -1
  495. package/es/tasty/utils/isDevEnv.js +1 -1
  496. package/es/tasty/utils/mergeStyles.js +1 -1
  497. package/es/tasty/utils/modAttrs.js +1 -1
  498. package/es/tasty/utils/processTokens.js +124 -0
  499. package/es/tasty/utils/renderStyles.js +1 -1
  500. package/es/tasty/utils/responsive.js +1 -1
  501. package/es/tasty/utils/string.js +1 -1
  502. package/es/tasty/utils/styles.js +1 -1
  503. package/es/tasty/utils/warnings.js +1 -1
  504. package/es/tokens.js +1 -1
  505. package/es/utils/ResizeSensor.js +1 -1
  506. package/es/utils/index.js +1 -1
  507. package/es/utils/modules.js +1 -1
  508. package/es/utils/promise.js +1 -1
  509. package/es/utils/raf.js +1 -1
  510. package/es/utils/random.js +1 -1
  511. package/es/utils/range.js +1 -1
  512. package/es/utils/react/RenderCache.js +1 -1
  513. package/es/utils/react/Slots.js +1 -1
  514. package/es/utils/react/chain.js +1 -1
  515. package/es/utils/react/forwardRefWithGenerics.js +1 -1
  516. package/es/utils/react/index.js +2 -1
  517. package/es/utils/react/interactions.js +1 -1
  518. package/es/utils/react/isTextOnly.js +1 -1
  519. package/es/utils/react/mapProps.js +1 -1
  520. package/es/utils/react/mergeProps.js +1 -1
  521. package/es/utils/react/nullableValue.js +1 -1
  522. package/es/utils/react/resolveIcon.js +34 -0
  523. package/es/utils/react/sharedStore.js +1 -1
  524. package/es/utils/react/useCombinedRefs.js +1 -1
  525. package/es/utils/react/useControlledFocusVisible.js +1 -1
  526. package/es/utils/react/useEventBus.js +1 -1
  527. package/es/utils/react/useId.js +1 -1
  528. package/es/utils/react/useIsDarwin.js +1 -1
  529. package/es/utils/react/useKeySymbols.js +1 -1
  530. package/es/utils/react/useLayoutEffect.js +1 -1
  531. package/es/utils/react/useLocalStorage.js +1 -1
  532. package/es/utils/react/useQaProps.js +1 -1
  533. package/es/utils/react/useViewportSize.js +1 -1
  534. package/es/utils/react/wrapNodeIfPlain.js +1 -1
  535. package/es/utils/tree.js +1 -1
  536. package/es/utils/warnings.js +1 -1
  537. package/es/version.js +2 -2
  538. package/package.json +2 -2
  539. package/types/components/HiddenInput.d.ts +827 -1
  540. package/types/components/actions/Button/Button.d.ts +1750 -33
  541. package/types/components/actions/CommandMenu/styled.d.ts +4135 -5
  542. package/types/components/actions/Menu/styled.d.ts +4165 -23
  543. package/types/components/actions/use-action.d.ts +1 -1
  544. package/types/components/content/Item/Item.d.ts +41 -15
  545. package/types/components/content/Layout/Layout.d.ts +5 -1
  546. package/types/components/content/Layout/LayoutContainer.d.ts +5 -1
  547. package/types/components/content/Layout/LayoutContent.d.ts +5 -1
  548. package/types/components/content/Layout/LayoutPane.d.ts +5 -1
  549. package/types/components/content/Layout/LayoutPanelHeader.d.ts +2 -4
  550. package/types/components/content/List/SectionHeading.d.ts +10 -6
  551. package/types/components/content/Tag/Tag.d.ts +1 -3
  552. package/types/components/content/Text.d.ts +77 -42
  553. package/types/components/fields/DatePicker/DatePickerElement.d.ts +10 -6
  554. package/types/components/fields/FilterPicker/FilterPicker.d.ts +1 -1
  555. package/types/components/fields/Picker/Picker.d.ts +1 -1
  556. package/types/components/fields/Select/Select.d.ts +836 -5
  557. package/types/components/fields/Slider/elements.d.ts +4962 -6
  558. package/types/components/form/FieldWrapper/types.d.ts +1 -1
  559. package/types/components/helpers/DisplayTransition/DisplayTransition.d.ts +3 -1
  560. package/types/components/helpers/DisplayTransition/index.d.ts +2 -0
  561. package/types/components/helpers/IconSwitch/IconSwitch.d.ts +20 -0
  562. package/types/components/helpers/index.d.ts +1 -0
  563. package/types/data/item-themes.d.ts +5 -1
  564. package/types/tasty/index.d.ts +3 -2
  565. package/types/tasty/styles/list.d.ts +6 -6
  566. package/types/tasty/tasty.d.ts +859 -7
  567. package/types/tasty/types.d.ts +30 -7
  568. package/types/tasty/utils/processTokens.d.ts +15 -0
  569. package/types/utils/react/index.d.ts +2 -0
  570. package/types/utils/react/resolveIcon.d.ts +23 -0
@@ -1,26 +1,52 @@
1
- import { ReactElement } from 'react';
1
+ import { OverlayProps } from 'react-aria';
2
+ import { Mods } from '../../../tasty';
3
+ import { DynamicIcon } from '../../../utils/react';
4
+ import { CubeTooltipProviderProps } from '../../overlays/Tooltip/TooltipProvider';
2
5
  import { CubeActionProps } from '../Action/Action';
6
+ /** Known modifiers for Button component */
7
+ export type ButtonMods = Mods<{
8
+ loading?: boolean;
9
+ selected?: boolean;
10
+ 'has-icons'?: boolean;
11
+ 'has-icon'?: boolean;
12
+ 'has-right-icon'?: boolean;
13
+ 'single-icon'?: boolean;
14
+ 'text-only'?: boolean;
15
+ 'raw-children'?: boolean;
16
+ }>;
3
17
  export interface CubeButtonProps extends CubeActionProps {
4
- icon?: ReactElement;
5
- rightIcon?: ReactElement;
18
+ icon?: DynamicIcon<ButtonMods>;
19
+ rightIcon?: DynamicIcon<ButtonMods>;
6
20
  isLoading?: boolean;
7
21
  isSelected?: boolean;
8
22
  type?: 'primary' | 'secondary' | 'danger' | 'link' | 'clear' | 'outline' | 'neutral' | (string & {});
9
- size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | (string & {});
23
+ size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'inline' | number | (string & {});
24
+ /**
25
+ * Tooltip content and configuration:
26
+ * - string: simple tooltip text
27
+ * - true: auto tooltip on overflow (shows children as tooltip when truncated)
28
+ * - object: advanced configuration with optional auto property
29
+ */
30
+ tooltip?: string | boolean | (Omit<CubeTooltipProviderProps, 'children'> & {
31
+ auto?: boolean;
32
+ });
33
+ /**
34
+ * @private
35
+ * Default tooltip placement for the button.
36
+ * @default "top"
37
+ */
38
+ defaultTooltipPlacement?: OverlayProps['placement'];
10
39
  }
11
40
  export type ButtonVariant = 'default.primary' | 'default.secondary' | 'default.outline' | 'default.neutral' | 'default.clear' | 'default.link' | 'danger.primary' | 'danger.secondary' | 'danger.outline' | 'danger.neutral' | 'danger.clear' | 'danger.link' | 'success.primary' | 'success.secondary' | 'success.outline' | 'success.neutral' | 'success.clear' | 'success.link' | 'special.primary' | 'special.secondary' | 'special.outline' | 'special.neutral' | 'special.clear' | 'special.link';
12
41
  export declare const DEFAULT_BUTTON_STYLES: {
13
42
  readonly display: "inline-grid";
14
- readonly flow: "column";
15
- readonly placeItems: "center start";
16
- readonly placeContent: {
17
- readonly '': "center";
18
- readonly 'right-icon | suffix': "center stretch";
19
- };
20
- readonly gridColumns: {
21
- readonly '': "initial";
22
- readonly 'left-icon | loading | prefix': "max-content";
43
+ readonly flow: "column dense";
44
+ readonly gap: 0;
45
+ readonly placeItems: {
46
+ readonly '': "stretch";
47
+ readonly 'raw-children': "center stretch";
23
48
  };
49
+ readonly placeContent: "center stretch";
24
50
  readonly position: "relative";
25
51
  readonly margin: 0;
26
52
  readonly boxSizing: "border-box";
@@ -30,31 +56,23 @@ export declare const DEFAULT_BUTTON_STYLES: {
30
56
  readonly ':is(button)': "$pointer";
31
57
  readonly disabled: "not-allowed";
32
58
  };
33
- readonly gap: {
34
- readonly '': ".75x";
35
- readonly 'size=small': ".5x";
36
- };
37
59
  readonly preset: {
38
60
  readonly '': "t3m";
39
61
  readonly 'size=xsmall': "t4";
40
62
  readonly 'size=xlarge': "t2m";
41
63
  };
42
64
  readonly textDecoration: "none";
43
- readonly transition: "theme";
44
65
  readonly reset: "button";
45
66
  readonly outline: 0;
46
67
  readonly outlineOffset: 1;
47
68
  readonly padding: {
48
- readonly '': ".5x (1.5x - 1bw)";
49
- readonly 'size=small | size=xsmall': ".5x (1.25x - 1bw)";
50
- readonly 'size=medium': ".5x (1.5x - 1bw)";
51
- readonly 'size=large': ".5x (1.75x - 1bw)";
52
- readonly 'size=xlarge': ".5x (2x - 1bw)";
53
- readonly 'single-icon | type=link': 0;
69
+ readonly '': 0;
70
+ readonly 'raw-children & !has-icons': "$block-padding $inline-padding $block-padding $inline-padding";
71
+ readonly 'type=link': "0";
54
72
  };
55
73
  readonly width: {
56
74
  readonly '': "min $size";
57
- readonly 'left-icon & right-icon': "min ($size * 2 - 2bw)";
75
+ readonly 'has-icon & has-right-icon': "min ($size * 2 - 2bw)";
58
76
  readonly 'single-icon': "fixed $size";
59
77
  readonly 'type=link': "min 1ch";
60
78
  };
@@ -67,6 +85,8 @@ export declare const DEFAULT_BUTTON_STYLES: {
67
85
  readonly '': true;
68
86
  readonly 'type=link & !focused': 0;
69
87
  };
88
+ readonly transition: "theme, grid-template, padding";
89
+ readonly verticalAlign: "bottom";
70
90
  readonly $size: {
71
91
  readonly '': "$size-md";
72
92
  readonly 'size=xsmall': "$size-xs";
@@ -74,17 +94,1714 @@ export declare const DEFAULT_BUTTON_STYLES: {
74
94
  readonly 'size=medium': "$size-md";
75
95
  readonly 'size=large': "$size-lg";
76
96
  readonly 'size=xlarge': "$size-xl";
97
+ readonly 'size=inline': "(1lh + 2bw)";
98
+ };
99
+ readonly '$inline-padding': {
100
+ readonly '': "max($min-inline-padding, (($size - 1lh - 2bw) / 2 + $inline-compensation))";
101
+ };
102
+ readonly '$block-padding': {
103
+ readonly '': ".5x";
104
+ readonly 'size=xsmall | size=small': ".25x";
105
+ };
106
+ readonly '$inline-compensation': ".5x";
107
+ readonly '$min-inline-padding': "(1x - 1bw)";
108
+ readonly '$left-padding': {
109
+ readonly '': "$inline-padding";
110
+ readonly 'is-icon-shown': "0px";
111
+ };
112
+ readonly '$right-padding': {
113
+ readonly '': "$inline-padding";
114
+ readonly 'is-right-icon-shown': "0px";
77
115
  };
78
- readonly ButtonIcon: {
79
- readonly width: "min 1fs";
116
+ readonly Icon: {
117
+ readonly width: {
118
+ readonly '': "fixed 0px";
119
+ readonly 'is-icon-shown': "fixed ($size - 2bw)";
120
+ };
121
+ readonly opacity: {
122
+ readonly '': 0;
123
+ readonly 'is-icon-shown': 1;
124
+ };
125
+ readonly translate: {
126
+ readonly '': "($size * 1 / 4) 0";
127
+ readonly 'is-icon-shown': "0 0";
128
+ };
129
+ readonly flexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
130
+ readonly grid?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Grid | undefined>;
131
+ readonly flex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
132
+ readonly fill?: import("../../../tasty").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>;
133
+ readonly color?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
134
+ readonly fade?: import("../../../tasty").ResponsiveStyleValue<string | undefined>;
135
+ readonly reset?: import("../../../tasty").ResponsiveStyleValue<"input" | "button" | undefined>;
136
+ readonly styledScrollbar?: import("../../../tasty").ResponsiveStyleValue<boolean | undefined>;
137
+ readonly scrollbar?: import("../../../tasty").ResponsiveStyleValue<string | number | boolean | undefined>;
138
+ readonly boldFontWeight?: import("../../../tasty").ResponsiveStyleValue<number | undefined>;
139
+ readonly gap?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Gap<string | number> | undefined>;
140
+ readonly padding?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Padding<string | number> | undefined>;
141
+ readonly margin?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Margin<string | number> | undefined>;
142
+ readonly height?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Height<string | number> | undefined>;
143
+ readonly border?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Border<string | number> | undefined>;
144
+ readonly transition?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
145
+ readonly hide?: import("../../../tasty").ResponsiveStyleValue<boolean | undefined>;
146
+ readonly shadow?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
147
+ readonly radius?: import("../../../tasty").ResponsiveStyleValue<string | true | undefined>;
148
+ readonly groupRadius?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
149
+ readonly flow?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
150
+ readonly gridAreas?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
151
+ readonly gridColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
152
+ readonly gridRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
153
+ readonly gridTemplate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplate | undefined>;
154
+ readonly font?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.FontFamily | undefined>;
155
+ readonly outline?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
156
+ readonly preset?: import("../../../tasty").ResponsiveStyleValue<string | undefined>;
157
+ readonly align?: import("../../../tasty").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>;
158
+ readonly justify?: import("../../../tasty").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>;
159
+ readonly place?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
160
+ readonly placeContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceContent | undefined>;
161
+ readonly placeItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceItems | undefined>;
162
+ readonly inset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Inset<string | number> | undefined>;
163
+ readonly filter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
164
+ readonly clear?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Clear | undefined>;
165
+ readonly accentColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AccentColor | undefined>;
166
+ readonly alignContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
167
+ readonly alignItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
168
+ readonly alignSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
169
+ readonly alignTracks?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignTracks | undefined>;
170
+ readonly animationComposition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationComposition | undefined>;
171
+ readonly animationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
172
+ readonly animationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
173
+ readonly animationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
174
+ readonly animationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
175
+ readonly animationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
176
+ readonly animationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
177
+ readonly animationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
178
+ readonly animationTimeline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimeline | undefined>;
179
+ readonly animationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
180
+ readonly appearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Appearance | undefined>;
181
+ readonly aspectRatio?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AspectRatio | undefined>;
182
+ readonly backdropFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
183
+ readonly backfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
184
+ readonly backgroundAttachment?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundAttachment | undefined>;
185
+ readonly backgroundBlendMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundBlendMode | undefined>;
186
+ readonly backgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
187
+ readonly backgroundColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | undefined>;
188
+ readonly backgroundImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundImage | undefined>;
189
+ readonly backgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
190
+ readonly backgroundPositionX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
191
+ readonly backgroundPositionY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | undefined>;
192
+ readonly backgroundRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundRepeat | undefined>;
193
+ readonly backgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
194
+ readonly blockOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BlockOverflow | undefined>;
195
+ readonly blockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | undefined>;
196
+ readonly borderBlockColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockColor | undefined>;
197
+ readonly borderBlockEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndColor | undefined>;
198
+ readonly borderBlockEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | undefined>;
199
+ readonly borderBlockEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>;
200
+ readonly borderBlockStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartColor | undefined>;
201
+ readonly borderBlockStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | undefined>;
202
+ readonly borderBlockStartWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>;
203
+ readonly borderBlockStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStyle | undefined>;
204
+ readonly borderBlockWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | undefined>;
205
+ readonly borderBottomColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomColor | undefined>;
206
+ readonly borderBottomLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
207
+ readonly borderBottomRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
208
+ readonly borderBottomStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomStyle | undefined>;
209
+ readonly borderBottomWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomWidth<string | number> | undefined>;
210
+ readonly borderCollapse?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderCollapse | undefined>;
211
+ readonly borderEndEndRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>;
212
+ readonly borderEndStartRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>;
213
+ readonly borderImageOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageOutset<string | number> | undefined>;
214
+ readonly borderImageRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageRepeat | undefined>;
215
+ readonly borderImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
216
+ readonly borderImageSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSource | undefined>;
217
+ readonly borderImageWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | undefined>;
218
+ readonly borderInlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineColor | undefined>;
219
+ readonly borderInlineEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
220
+ readonly borderInlineEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
221
+ readonly borderInlineEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
222
+ readonly borderInlineStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
223
+ readonly borderInlineStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
224
+ readonly borderInlineStartWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>;
225
+ readonly borderInlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStyle | undefined>;
226
+ readonly borderInlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | undefined>;
227
+ readonly borderLeftColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftColor | undefined>;
228
+ readonly borderLeftStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | undefined>;
229
+ readonly borderLeftWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | undefined>;
230
+ readonly borderRightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightColor | undefined>;
231
+ readonly borderRightStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightStyle | undefined>;
232
+ readonly borderRightWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightWidth<string | number> | undefined>;
233
+ readonly borderSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderSpacing<string | number> | undefined>;
234
+ readonly borderStartEndRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>;
235
+ readonly borderStartStartRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>;
236
+ readonly borderTopColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopColor | undefined>;
237
+ readonly borderTopLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
238
+ readonly borderTopRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
239
+ readonly borderTopStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopStyle | undefined>;
240
+ readonly borderTopWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopWidth<string | number> | undefined>;
241
+ readonly bottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | undefined>;
242
+ readonly boxDecorationBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
243
+ readonly boxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
244
+ readonly boxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
245
+ readonly breakAfter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakAfter | undefined>;
246
+ readonly breakBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakBefore | undefined>;
247
+ readonly breakInside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakInside | undefined>;
248
+ readonly captionSide?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaptionSide | undefined>;
249
+ readonly caretColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaretColor | undefined>;
250
+ readonly caretShape?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaretShape | undefined>;
251
+ readonly clipPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
252
+ readonly colorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
253
+ readonly colorScheme?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorScheme | undefined>;
254
+ readonly columnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
255
+ readonly columnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
256
+ readonly columnGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | undefined>;
257
+ readonly columnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
258
+ readonly columnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
259
+ readonly columnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
260
+ readonly columnSpan?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
261
+ readonly columnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
262
+ readonly contain?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Contain | undefined>;
263
+ readonly containIntrinsicBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>;
264
+ readonly containIntrinsicHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>;
265
+ readonly containIntrinsicInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>;
266
+ readonly containIntrinsicWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>;
267
+ readonly containerName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainerName | undefined>;
268
+ readonly containerType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainerType | undefined>;
269
+ readonly content?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Content | undefined>;
270
+ readonly contentVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | undefined>;
271
+ readonly counterIncrement?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterIncrement | undefined>;
272
+ readonly counterReset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterReset | undefined>;
273
+ readonly counterSet?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterSet | undefined>;
274
+ readonly cursor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Cursor | undefined>;
275
+ readonly direction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Direction | undefined>;
276
+ readonly display?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Display | undefined>;
277
+ readonly emptyCells?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.EmptyCells | undefined>;
278
+ readonly flexBasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
279
+ readonly flexGrow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
280
+ readonly flexShrink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
281
+ readonly flexWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
282
+ readonly float?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Float | undefined>;
283
+ readonly fontFamily?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFamily | undefined>;
284
+ readonly fontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
285
+ readonly fontKerning?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
286
+ readonly fontLanguageOverride?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
287
+ readonly fontOpticalSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontOpticalSizing | undefined>;
288
+ readonly fontPalette?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontPalette | undefined>;
289
+ readonly fontSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | undefined>;
290
+ readonly fontSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | undefined>;
291
+ readonly fontSmooth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
292
+ readonly fontStretch?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontStretch | undefined>;
293
+ readonly fontStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontStyle | undefined>;
294
+ readonly fontSynthesis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSynthesis | undefined>;
295
+ readonly fontVariant?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariant | undefined>;
296
+ readonly fontVariantAlternates?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantAlternates | undefined>;
297
+ readonly fontVariantCaps?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantCaps | undefined>;
298
+ readonly fontVariantEastAsian?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantEastAsian | undefined>;
299
+ readonly fontVariantEmoji?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantEmoji | undefined>;
300
+ readonly fontVariantLigatures?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
301
+ readonly fontVariantNumeric?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantNumeric | undefined>;
302
+ readonly fontVariantPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | undefined>;
303
+ readonly fontVariationSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariationSettings | undefined>;
304
+ readonly fontWeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontWeight | undefined>;
305
+ readonly forcedColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | undefined>;
306
+ readonly gridAutoColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | undefined>;
307
+ readonly gridAutoFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoFlow | undefined>;
308
+ readonly gridAutoRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | undefined>;
309
+ readonly gridColumnEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnEnd | undefined>;
310
+ readonly gridColumnStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnStart | undefined>;
311
+ readonly gridRowEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowEnd | undefined>;
312
+ readonly gridRowStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowStart | undefined>;
313
+ readonly gridTemplateAreas?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
314
+ readonly gridTemplateColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
315
+ readonly gridTemplateRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
316
+ readonly hangingPunctuation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HangingPunctuation | undefined>;
317
+ readonly hyphenateCharacter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
318
+ readonly hyphenateLimitChars?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateLimitChars | undefined>;
319
+ readonly hyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
320
+ readonly imageOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageOrientation | undefined>;
321
+ readonly imageRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageRendering | undefined>;
322
+ readonly imageResolution?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageResolution | undefined>;
323
+ readonly initialLetter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
324
+ readonly inlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | undefined>;
325
+ readonly inputSecurity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InputSecurity | undefined>;
326
+ readonly insetBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
327
+ readonly insetBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
328
+ readonly insetInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
329
+ readonly insetInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
330
+ readonly isolation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Isolation | undefined>;
331
+ readonly justifyContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
332
+ readonly justifyItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyItems | undefined>;
333
+ readonly justifySelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifySelf | undefined>;
334
+ readonly justifyTracks?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyTracks | undefined>;
335
+ readonly left?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | undefined>;
336
+ readonly letterSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | undefined>;
337
+ readonly lineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
338
+ readonly lineHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | undefined>;
339
+ readonly lineHeightStep?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | undefined>;
340
+ readonly listStyleImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyleImage | undefined>;
341
+ readonly listStylePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStylePosition | undefined>;
342
+ readonly listStyleType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyleType | undefined>;
343
+ readonly marginBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
344
+ readonly marginBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
345
+ readonly marginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
346
+ readonly marginInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
347
+ readonly marginInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
348
+ readonly marginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
349
+ readonly marginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | undefined>;
350
+ readonly marginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | undefined>;
351
+ readonly marginTrim?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginTrim | undefined>;
352
+ readonly maskBorderMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | undefined>;
353
+ readonly maskBorderOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
354
+ readonly maskBorderRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
355
+ readonly maskBorderSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
356
+ readonly maskBorderSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
357
+ readonly maskBorderWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
358
+ readonly maskClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskClip | undefined>;
359
+ readonly maskComposite?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskComposite | undefined>;
360
+ readonly maskImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskImage | undefined>;
361
+ readonly maskMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskMode | undefined>;
362
+ readonly maskOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskOrigin | undefined>;
363
+ readonly maskPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskPosition<string | number> | undefined>;
364
+ readonly maskRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskRepeat | undefined>;
365
+ readonly maskSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskSize<string | number> | undefined>;
366
+ readonly maskType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskType | undefined>;
367
+ readonly mathDepth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathDepth | undefined>;
368
+ readonly mathShift?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathShift | undefined>;
369
+ readonly mathStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathStyle | undefined>;
370
+ readonly maxBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxBlockSize<string | number> | undefined>;
371
+ readonly maxHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | undefined>;
372
+ readonly maxInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
373
+ readonly maxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxLines | undefined>;
374
+ readonly maxWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | undefined>;
375
+ readonly minBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinBlockSize<string | number> | undefined>;
376
+ readonly minHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | undefined>;
377
+ readonly minInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinInlineSize<string | number> | undefined>;
378
+ readonly minWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | undefined>;
379
+ readonly mixBlendMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MixBlendMode | undefined>;
380
+ readonly motionDistance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
381
+ readonly motionPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
382
+ readonly motionRotation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
383
+ readonly objectFit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
384
+ readonly objectPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
385
+ readonly offsetAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | undefined>;
386
+ readonly offsetDistance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
387
+ readonly offsetPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
388
+ readonly offsetPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPosition<string | number> | undefined>;
389
+ readonly offsetRotate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
390
+ readonly offsetRotation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
391
+ readonly order?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
392
+ readonly orphans?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Orphans | undefined>;
393
+ readonly outlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
394
+ readonly outlineOffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | undefined>;
395
+ readonly outlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
396
+ readonly outlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
397
+ readonly overflowAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | undefined>;
398
+ readonly overflowBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | undefined>;
399
+ readonly overflowClipBox?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowClipBox | undefined>;
400
+ readonly overflowClipMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowClipMargin<string | number> | undefined>;
401
+ readonly overflowInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowInline | undefined>;
402
+ readonly overflowWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowWrap | undefined>;
403
+ readonly overflowX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
404
+ readonly overflowY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
405
+ readonly overscrollBehaviorBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorBlock | undefined>;
406
+ readonly overscrollBehaviorInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorInline | undefined>;
407
+ readonly overscrollBehaviorX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorX | undefined>;
408
+ readonly overscrollBehaviorY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorY | undefined>;
409
+ readonly paddingBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
410
+ readonly paddingBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
411
+ readonly paddingBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
412
+ readonly paddingInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
413
+ readonly paddingInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
414
+ readonly paddingLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
415
+ readonly paddingRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
416
+ readonly paddingTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
417
+ readonly page?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Page | undefined>;
418
+ readonly pageBreakAfter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | undefined>;
419
+ readonly pageBreakBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | undefined>;
420
+ readonly pageBreakInside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | undefined>;
421
+ readonly paintOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaintOrder | undefined>;
422
+ readonly perspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
423
+ readonly perspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
424
+ readonly pointerEvents?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PointerEvents | undefined>;
425
+ readonly position?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Position | undefined>;
426
+ readonly printColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
427
+ readonly quotes?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Quotes | undefined>;
428
+ readonly resize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Resize | undefined>;
429
+ readonly right?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | undefined>;
430
+ readonly rotate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Rotate | undefined>;
431
+ readonly rowGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | undefined>;
432
+ readonly rubyAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyAlign | undefined>;
433
+ readonly rubyMerge?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyMerge | undefined>;
434
+ readonly rubyPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
435
+ readonly scale?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Scale | undefined>;
436
+ readonly scrollBehavior?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | undefined>;
437
+ readonly scrollMarginBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>;
438
+ readonly scrollMarginBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>;
439
+ readonly scrollMarginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
440
+ readonly scrollMarginInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>;
441
+ readonly scrollMarginInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>;
442
+ readonly scrollMarginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
443
+ readonly scrollMarginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
444
+ readonly scrollMarginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
445
+ readonly scrollPaddingBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>;
446
+ readonly scrollPaddingBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>;
447
+ readonly scrollPaddingBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>;
448
+ readonly scrollPaddingInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>;
449
+ readonly scrollPaddingInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>;
450
+ readonly scrollPaddingLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
451
+ readonly scrollPaddingRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>;
452
+ readonly scrollPaddingTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
453
+ readonly scrollSnapAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapAlign | undefined>;
454
+ readonly scrollSnapMarginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
455
+ readonly scrollSnapMarginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
456
+ readonly scrollSnapMarginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
457
+ readonly scrollSnapMarginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
458
+ readonly scrollSnapStop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapStop | undefined>;
459
+ readonly scrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
460
+ readonly scrollTimelineAxis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineAxis | undefined>;
461
+ readonly scrollTimelineName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineName | undefined>;
462
+ readonly scrollbarColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarColor | undefined>;
463
+ readonly scrollbarGutter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarGutter | undefined>;
464
+ readonly scrollbarWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarWidth | undefined>;
465
+ readonly shapeImageThreshold?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | undefined>;
466
+ readonly shapeMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
467
+ readonly shapeOutside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeOutside | undefined>;
468
+ readonly tabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
469
+ readonly tableLayout?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TableLayout | undefined>;
470
+ readonly textAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlign | undefined>;
471
+ readonly textAlignLast?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
472
+ readonly textCombineUpright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
473
+ readonly textDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
474
+ readonly textDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
475
+ readonly textDecorationSkip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
476
+ readonly textDecorationSkipInk?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkipInk | undefined>;
477
+ readonly textDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
478
+ readonly textDecorationThickness?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationThickness<string | number> | undefined>;
479
+ readonly textEmphasisColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
480
+ readonly textEmphasisPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
481
+ readonly textEmphasisStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
482
+ readonly textIndent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextIndent<string | number> | undefined>;
483
+ readonly textJustify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextJustify | undefined>;
484
+ readonly textOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
485
+ readonly textOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
486
+ readonly textRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextRendering | undefined>;
487
+ readonly textShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextShadow | undefined>;
488
+ readonly textSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
489
+ readonly textTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextTransform | undefined>;
490
+ readonly textUnderlineOffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>;
491
+ readonly textUnderlinePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
492
+ readonly top?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | undefined>;
493
+ readonly touchAction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
494
+ readonly transform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
495
+ readonly transformBox?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformBox | undefined>;
496
+ readonly transformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
497
+ readonly transformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
498
+ readonly transitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
499
+ readonly transitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
500
+ readonly transitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
501
+ readonly transitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
502
+ readonly unicodeBidi?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | undefined>;
503
+ readonly userSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
504
+ readonly verticalAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | undefined>;
505
+ readonly viewTransitionName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ViewTransitionName | undefined>;
506
+ readonly visibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Visibility | undefined>;
507
+ readonly whiteSpace?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WhiteSpace | undefined>;
508
+ readonly widows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Widows | undefined>;
509
+ readonly willChange?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WillChange | undefined>;
510
+ readonly wordBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
511
+ readonly wordSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | undefined>;
512
+ readonly wordWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordWrap | undefined>;
513
+ readonly writingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
514
+ readonly zIndex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ZIndex | undefined>;
515
+ readonly zoom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Zoom | undefined>;
516
+ readonly all?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Globals | undefined>;
517
+ readonly animation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
518
+ readonly background?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | undefined>;
519
+ readonly backgroundPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | undefined>;
520
+ readonly borderBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | undefined>;
521
+ readonly borderBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | undefined>;
522
+ readonly borderBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | undefined>;
523
+ readonly borderBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | undefined>;
524
+ readonly borderColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderColor | undefined>;
525
+ readonly borderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
526
+ readonly borderInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | undefined>;
527
+ readonly borderInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | undefined>;
528
+ readonly borderInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | undefined>;
529
+ readonly borderLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | undefined>;
530
+ readonly borderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
531
+ readonly borderRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | undefined>;
532
+ readonly borderStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStyle | undefined>;
533
+ readonly borderTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | undefined>;
534
+ readonly borderWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderWidth<string | number> | undefined>;
535
+ readonly caret?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Caret | undefined>;
536
+ readonly columnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
537
+ readonly columns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
538
+ readonly containIntrinsicSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>;
539
+ readonly container?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Container | undefined>;
540
+ readonly flexFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
541
+ readonly gridArea?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridArea | undefined>;
542
+ readonly gridColumn?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumn | undefined>;
543
+ readonly gridRow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRow | undefined>;
544
+ readonly insetBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
545
+ readonly insetInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
546
+ readonly lineClamp?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineClamp | undefined>;
547
+ readonly listStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyle | undefined>;
548
+ readonly marginBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | undefined>;
549
+ readonly marginInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | undefined>;
550
+ readonly mask?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Mask<string | number> | undefined>;
551
+ readonly maskBorder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
552
+ readonly motion?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
553
+ readonly offset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
554
+ readonly overflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Overflow | undefined>;
555
+ readonly overscrollBehavior?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehavior | undefined>;
556
+ readonly paddingBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | undefined>;
557
+ readonly paddingInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | undefined>;
558
+ readonly placeSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceSelf | undefined>;
559
+ readonly scrollMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
560
+ readonly scrollMarginBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>;
561
+ readonly scrollMarginInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | undefined>;
562
+ readonly scrollPadding?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPadding<string | number> | undefined>;
563
+ readonly scrollPaddingBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>;
564
+ readonly scrollPaddingInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>;
565
+ readonly scrollSnapMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
566
+ readonly scrollTimeline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimeline | undefined>;
567
+ readonly textDecoration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | undefined>;
568
+ readonly textEmphasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
569
+ readonly MozAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
570
+ readonly MozAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
571
+ readonly MozAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
572
+ readonly MozAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
573
+ readonly MozAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
574
+ readonly MozAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
575
+ readonly MozAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
576
+ readonly MozAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
577
+ readonly MozAppearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozAppearance | undefined>;
578
+ readonly MozBackfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
579
+ readonly MozBinding?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBinding | undefined>;
580
+ readonly MozBorderBottomColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderBottomColors | undefined>;
581
+ readonly MozBorderEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
582
+ readonly MozBorderEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
583
+ readonly MozBorderEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
584
+ readonly MozBorderLeftColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderLeftColors | undefined>;
585
+ readonly MozBorderRightColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderRightColors | undefined>;
586
+ readonly MozBorderStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
587
+ readonly MozBorderStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
588
+ readonly MozBorderTopColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderTopColors | undefined>;
589
+ readonly MozBoxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
590
+ readonly MozColumnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
591
+ readonly MozColumnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
592
+ readonly MozColumnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
593
+ readonly MozColumnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
594
+ readonly MozColumnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
595
+ readonly MozColumnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
596
+ readonly MozContextProperties?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozContextProperties | undefined>;
597
+ readonly MozFontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
598
+ readonly MozFontLanguageOverride?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
599
+ readonly MozHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
600
+ readonly MozImageRegion?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozImageRegion | undefined>;
601
+ readonly MozMarginEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
602
+ readonly MozMarginStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
603
+ readonly MozOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOrient | undefined>;
604
+ readonly MozOsxFontSmoothing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
605
+ readonly MozPaddingEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
606
+ readonly MozPaddingStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
607
+ readonly MozPerspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
608
+ readonly MozPerspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
609
+ readonly MozStackSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | undefined>;
610
+ readonly MozTabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
611
+ readonly MozTextBlink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | undefined>;
612
+ readonly MozTextSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
613
+ readonly MozTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
614
+ readonly MozTransformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
615
+ readonly MozTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
616
+ readonly MozTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
617
+ readonly MozTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
618
+ readonly MozTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
619
+ readonly MozUserFocus?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | undefined>;
620
+ readonly MozUserModify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserModify | undefined>;
621
+ readonly MozUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
622
+ readonly MozWindowDragging?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | undefined>;
623
+ readonly MozWindowShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozWindowShadow | undefined>;
624
+ readonly msAccelerator?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsAccelerator | undefined>;
625
+ readonly msBlockProgression?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsBlockProgression | undefined>;
626
+ readonly msContentZoomChaining?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomChaining | undefined>;
627
+ readonly msContentZoomLimitMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMax | undefined>;
628
+ readonly msContentZoomLimitMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMin | undefined>;
629
+ readonly msContentZoomSnapPoints?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapPoints | undefined>;
630
+ readonly msContentZoomSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapType | undefined>;
631
+ readonly msContentZooming?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZooming | undefined>;
632
+ readonly msFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFilter | undefined>;
633
+ readonly msFlexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
634
+ readonly msFlexPositive?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
635
+ readonly msFlowFrom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFlowFrom | undefined>;
636
+ readonly msFlowInto?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFlowInto | undefined>;
637
+ readonly msGridColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsGridColumns<string | number> | undefined>;
638
+ readonly msGridRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsGridRows<string | number> | undefined>;
639
+ readonly msHighContrastAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHighContrastAdjust | undefined>;
640
+ readonly msHyphenateLimitChars?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitChars | undefined>;
641
+ readonly msHyphenateLimitLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitLines | undefined>;
642
+ readonly msHyphenateLimitZone?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>;
643
+ readonly msHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
644
+ readonly msImeAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsImeAlign | undefined>;
645
+ readonly msLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
646
+ readonly msOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
647
+ readonly msOverflowStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsOverflowStyle | undefined>;
648
+ readonly msOverflowX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
649
+ readonly msOverflowY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
650
+ readonly msScrollChaining?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollChaining | undefined>;
651
+ readonly msScrollLimitXMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>;
652
+ readonly msScrollLimitXMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>;
653
+ readonly msScrollLimitYMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>;
654
+ readonly msScrollLimitYMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>;
655
+ readonly msScrollRails?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollRails | undefined>;
656
+ readonly msScrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsX | undefined>;
657
+ readonly msScrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsY | undefined>;
658
+ readonly msScrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapType | undefined>;
659
+ readonly msScrollTranslation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollTranslation | undefined>;
660
+ readonly msScrollbar3dlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbar3dlightColor | undefined>;
661
+ readonly msScrollbarArrowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarArrowColor | undefined>;
662
+ readonly msScrollbarBaseColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarBaseColor | undefined>;
663
+ readonly msScrollbarDarkshadowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarDarkshadowColor | undefined>;
664
+ readonly msScrollbarFaceColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarFaceColor | undefined>;
665
+ readonly msScrollbarHighlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarHighlightColor | undefined>;
666
+ readonly msScrollbarShadowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarShadowColor | undefined>;
667
+ readonly msScrollbarTrackColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarTrackColor | undefined>;
668
+ readonly msTextAutospace?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsTextAutospace | undefined>;
669
+ readonly msTextCombineHorizontal?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
670
+ readonly msTextOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
671
+ readonly msTouchAction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
672
+ readonly msTouchSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsTouchSelect | undefined>;
673
+ readonly msTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
674
+ readonly msTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
675
+ readonly msTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
676
+ readonly msTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
677
+ readonly msTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
678
+ readonly msTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
679
+ readonly msUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsUserSelect | undefined>;
680
+ readonly msWordBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
681
+ readonly msWrapFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapFlow | undefined>;
682
+ readonly msWrapMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapMargin<string | number> | undefined>;
683
+ readonly msWrapThrough?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapThrough | undefined>;
684
+ readonly msWritingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
685
+ readonly WebkitAlignContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
686
+ readonly WebkitAlignItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
687
+ readonly WebkitAlignSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
688
+ readonly WebkitAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
689
+ readonly WebkitAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
690
+ readonly WebkitAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
691
+ readonly WebkitAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
692
+ readonly WebkitAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
693
+ readonly WebkitAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
694
+ readonly WebkitAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
695
+ readonly WebkitAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
696
+ readonly WebkitAppearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitAppearance | undefined>;
697
+ readonly WebkitBackdropFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
698
+ readonly WebkitBackfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
699
+ readonly WebkitBackgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
700
+ readonly WebkitBackgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
701
+ readonly WebkitBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
702
+ readonly WebkitBorderBeforeColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeColor | undefined>;
703
+ readonly WebkitBorderBeforeStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeStyle | undefined>;
704
+ readonly WebkitBorderBeforeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>;
705
+ readonly WebkitBorderBottomLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
706
+ readonly WebkitBorderBottomRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
707
+ readonly WebkitBorderImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
708
+ readonly WebkitBorderTopLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
709
+ readonly WebkitBorderTopRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
710
+ readonly WebkitBoxDecorationBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
711
+ readonly WebkitBoxReflect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>;
712
+ readonly WebkitBoxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
713
+ readonly WebkitBoxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
714
+ readonly WebkitClipPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
715
+ readonly WebkitColumnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
716
+ readonly WebkitColumnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
717
+ readonly WebkitColumnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
718
+ readonly WebkitColumnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
719
+ readonly WebkitColumnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
720
+ readonly WebkitColumnSpan?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
721
+ readonly WebkitColumnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
722
+ readonly WebkitFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
723
+ readonly WebkitFlexBasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
724
+ readonly WebkitFlexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
725
+ readonly WebkitFlexGrow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
726
+ readonly WebkitFlexShrink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
727
+ readonly WebkitFlexWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
728
+ readonly WebkitFontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
729
+ readonly WebkitFontKerning?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
730
+ readonly WebkitFontSmoothing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
731
+ readonly WebkitFontVariantLigatures?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
732
+ readonly WebkitHyphenateCharacter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
733
+ readonly WebkitHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
734
+ readonly WebkitInitialLetter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
735
+ readonly WebkitJustifyContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
736
+ readonly WebkitLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
737
+ readonly WebkitLineClamp?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | undefined>;
738
+ readonly WebkitMarginEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
739
+ readonly WebkitMarginStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
740
+ readonly WebkitMaskAttachment?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskAttachment | undefined>;
741
+ readonly WebkitMaskBoxImageOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
742
+ readonly WebkitMaskBoxImageRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
743
+ readonly WebkitMaskBoxImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
744
+ readonly WebkitMaskBoxImageSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
745
+ readonly WebkitMaskBoxImageWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
746
+ readonly WebkitMaskClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskClip | undefined>;
747
+ readonly WebkitMaskComposite?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskComposite | undefined>;
748
+ readonly WebkitMaskImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskImage | undefined>;
749
+ readonly WebkitMaskOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskOrigin | undefined>;
750
+ readonly WebkitMaskPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>;
751
+ readonly WebkitMaskPositionX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>;
752
+ readonly WebkitMaskPositionY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>;
753
+ readonly WebkitMaskRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeat | undefined>;
754
+ readonly WebkitMaskRepeatX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatX | undefined>;
755
+ readonly WebkitMaskRepeatY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatY | undefined>;
756
+ readonly WebkitMaskSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskSize<string | number> | undefined>;
757
+ readonly WebkitMaxInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
758
+ readonly WebkitOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
759
+ readonly WebkitOverflowScrolling?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitOverflowScrolling | undefined>;
760
+ readonly WebkitPaddingEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
761
+ readonly WebkitPaddingStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
762
+ readonly WebkitPerspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
763
+ readonly WebkitPerspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
764
+ readonly WebkitPrintColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
765
+ readonly WebkitRubyPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
766
+ readonly WebkitScrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
767
+ readonly WebkitShapeMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
768
+ readonly WebkitTapHighlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTapHighlightColor | undefined>;
769
+ readonly WebkitTextCombine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
770
+ readonly WebkitTextDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
771
+ readonly WebkitTextDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
772
+ readonly WebkitTextDecorationSkip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
773
+ readonly WebkitTextDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
774
+ readonly WebkitTextEmphasisColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
775
+ readonly WebkitTextEmphasisPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
776
+ readonly WebkitTextEmphasisStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
777
+ readonly WebkitTextFillColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextFillColor | undefined>;
778
+ readonly WebkitTextOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
779
+ readonly WebkitTextSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
780
+ readonly WebkitTextStrokeColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeColor | undefined>;
781
+ readonly WebkitTextStrokeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>;
782
+ readonly WebkitTextUnderlinePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
783
+ readonly WebkitTouchCallout?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTouchCallout | undefined>;
784
+ readonly WebkitTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
785
+ readonly WebkitTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
786
+ readonly WebkitTransformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
787
+ readonly WebkitTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
788
+ readonly WebkitTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
789
+ readonly WebkitTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
790
+ readonly WebkitTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
791
+ readonly WebkitUserModify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | undefined>;
792
+ readonly WebkitUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
793
+ readonly WebkitWritingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
794
+ readonly MozAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
795
+ readonly MozBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
796
+ readonly MozColumnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
797
+ readonly MozColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
798
+ readonly MozTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
799
+ readonly msContentZoomLimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimit | undefined>;
800
+ readonly msContentZoomSnap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnap | undefined>;
801
+ readonly msFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
802
+ readonly msScrollLimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimit | undefined>;
803
+ readonly msScrollSnapX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapX | undefined>;
804
+ readonly msScrollSnapY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapY | undefined>;
805
+ readonly msTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
806
+ readonly WebkitAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
807
+ readonly WebkitBorderBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>;
808
+ readonly WebkitBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
809
+ readonly WebkitBorderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
810
+ readonly WebkitColumnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
811
+ readonly WebkitColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
812
+ readonly WebkitFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
813
+ readonly WebkitFlexFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
814
+ readonly WebkitMask?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMask<string | number> | undefined>;
815
+ readonly WebkitMaskBoxImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
816
+ readonly WebkitTextEmphasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
817
+ readonly WebkitTextStroke?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | undefined>;
818
+ readonly WebkitTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
819
+ readonly azimuth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Azimuth | undefined>;
820
+ readonly boxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
821
+ readonly boxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
822
+ readonly boxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
823
+ readonly boxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
824
+ readonly boxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
825
+ readonly boxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
826
+ readonly boxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
827
+ readonly boxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
828
+ readonly clip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Clip | undefined>;
829
+ readonly gridColumnGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | undefined>;
830
+ readonly gridGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | undefined>;
831
+ readonly gridRowGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | undefined>;
832
+ readonly imeMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
833
+ readonly offsetBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
834
+ readonly offsetBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
835
+ readonly offsetBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
836
+ readonly offsetInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
837
+ readonly offsetInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
838
+ readonly offsetInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
839
+ readonly scrollSnapCoordinate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>;
840
+ readonly scrollSnapDestination?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>;
841
+ readonly scrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
842
+ readonly scrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
843
+ readonly scrollSnapTypeX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeX | undefined>;
844
+ readonly scrollSnapTypeY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeY | undefined>;
845
+ readonly KhtmlBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
846
+ readonly KhtmlBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
847
+ readonly KhtmlBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
848
+ readonly KhtmlBoxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
849
+ readonly KhtmlBoxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
850
+ readonly KhtmlBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
851
+ readonly KhtmlBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
852
+ readonly KhtmlBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
853
+ readonly KhtmlLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
854
+ readonly KhtmlOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
855
+ readonly KhtmlUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
856
+ readonly MozBackgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
857
+ readonly MozBackgroundInlinePolicy?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
858
+ readonly MozBackgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
859
+ readonly MozBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
860
+ readonly MozBorderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
861
+ readonly MozBorderRadiusBottomleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
862
+ readonly MozBorderRadiusBottomright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
863
+ readonly MozBorderRadiusTopleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
864
+ readonly MozBorderRadiusTopright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
865
+ readonly MozBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
866
+ readonly MozBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
867
+ readonly MozBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
868
+ readonly MozBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
869
+ readonly MozBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
870
+ readonly MozBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
871
+ readonly MozBoxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
872
+ readonly MozFloatEdge?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | undefined>;
873
+ readonly MozForceBrokenImageIcon?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | undefined>;
874
+ readonly MozOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
875
+ readonly MozOutline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | undefined>;
876
+ readonly MozOutlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
877
+ readonly MozOutlineRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | undefined>;
878
+ readonly MozOutlineRadiusBottomleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
879
+ readonly MozOutlineRadiusBottomright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>;
880
+ readonly MozOutlineRadiusTopleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>;
881
+ readonly MozOutlineRadiusTopright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>;
882
+ readonly MozOutlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
883
+ readonly MozOutlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
884
+ readonly MozTextAlignLast?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
885
+ readonly MozTextDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
886
+ readonly MozTextDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
887
+ readonly MozTextDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
888
+ readonly MozUserInput?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserInput | undefined>;
889
+ readonly msImeMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
890
+ readonly OAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
891
+ readonly OAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
892
+ readonly OAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
893
+ readonly OAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
894
+ readonly OAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
895
+ readonly OAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
896
+ readonly OAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
897
+ readonly OAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
898
+ readonly OAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
899
+ readonly OBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
900
+ readonly OBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
901
+ readonly OObjectFit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
902
+ readonly OObjectPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
903
+ readonly OTabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
904
+ readonly OTextOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
905
+ readonly OTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
906
+ readonly OTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
907
+ readonly OTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
908
+ readonly OTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
909
+ readonly OTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
910
+ readonly OTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
911
+ readonly OTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
912
+ readonly WebkitBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
913
+ readonly WebkitBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
914
+ readonly WebkitBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
915
+ readonly WebkitBoxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
916
+ readonly WebkitBoxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
917
+ readonly WebkitBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
918
+ readonly WebkitBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
919
+ readonly WebkitBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
920
+ readonly WebkitScrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
921
+ readonly WebkitScrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
922
+ readonly alignmentBaseline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | undefined>;
923
+ readonly baselineShift?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | undefined>;
924
+ readonly clipRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipRule | undefined>;
925
+ readonly colorInterpolation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | undefined>;
926
+ readonly colorRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorRendering | undefined>;
927
+ readonly dominantBaseline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | undefined>;
928
+ readonly fillOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FillOpacity | undefined>;
929
+ readonly fillRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FillRule | undefined>;
930
+ readonly floodColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FloodColor | undefined>;
931
+ readonly floodOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | undefined>;
932
+ readonly glyphOrientationVertical?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | undefined>;
933
+ readonly lightingColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LightingColor | undefined>;
934
+ readonly marker?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Marker | undefined>;
935
+ readonly markerEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerEnd | undefined>;
936
+ readonly markerMid?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerMid | undefined>;
937
+ readonly markerStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerStart | undefined>;
938
+ readonly shapeRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | undefined>;
939
+ readonly stopColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StopColor | undefined>;
940
+ readonly stopOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StopOpacity | undefined>;
941
+ readonly stroke?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Stroke | undefined>;
942
+ readonly strokeDasharray?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | undefined>;
943
+ readonly strokeDashoffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | undefined>;
944
+ readonly strokeLinecap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | undefined>;
945
+ readonly strokeLinejoin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | undefined>;
946
+ readonly strokeMiterlimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | undefined>;
947
+ readonly strokeOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | undefined>;
948
+ readonly strokeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | undefined>;
949
+ readonly textAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAnchor | undefined>;
950
+ readonly vectorEffect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.VectorEffect | undefined>;
951
+ readonly $?: string;
80
952
  };
81
- readonly '& [data-element="ButtonIcon"]:first-child:not(:last-child)': {
82
- readonly marginLeft: "-.5x";
83
- readonly placeSelf: "center start";
953
+ readonly RightIcon: {
954
+ readonly width: {
955
+ readonly '': "fixed 0px";
956
+ readonly 'is-right-icon-shown': "fixed ($size - 2bw)";
957
+ };
958
+ readonly opacity: {
959
+ readonly '': 0;
960
+ readonly 'is-right-icon-shown': 1;
961
+ };
962
+ readonly translate: {
963
+ readonly '': "($size * -1 / 4) 0";
964
+ readonly 'is-right-icon-shown': "0 0";
965
+ };
966
+ readonly flexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
967
+ readonly grid?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Grid | undefined>;
968
+ readonly flex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
969
+ readonly fill?: import("../../../tasty").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>;
970
+ readonly color?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
971
+ readonly fade?: import("../../../tasty").ResponsiveStyleValue<string | undefined>;
972
+ readonly reset?: import("../../../tasty").ResponsiveStyleValue<"input" | "button" | undefined>;
973
+ readonly styledScrollbar?: import("../../../tasty").ResponsiveStyleValue<boolean | undefined>;
974
+ readonly scrollbar?: import("../../../tasty").ResponsiveStyleValue<string | number | boolean | undefined>;
975
+ readonly boldFontWeight?: import("../../../tasty").ResponsiveStyleValue<number | undefined>;
976
+ readonly gap?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Gap<string | number> | undefined>;
977
+ readonly padding?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Padding<string | number> | undefined>;
978
+ readonly margin?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Margin<string | number> | undefined>;
979
+ readonly height?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Height<string | number> | undefined>;
980
+ readonly border?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.Border<string | number> | undefined>;
981
+ readonly transition?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
982
+ readonly hide?: import("../../../tasty").ResponsiveStyleValue<boolean | undefined>;
983
+ readonly shadow?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
984
+ readonly radius?: import("../../../tasty").ResponsiveStyleValue<string | true | undefined>;
985
+ readonly groupRadius?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
986
+ readonly flow?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
987
+ readonly gridAreas?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
988
+ readonly gridColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
989
+ readonly gridRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
990
+ readonly gridTemplate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplate | undefined>;
991
+ readonly font?: import("../../../tasty").ResponsiveStyleValue<boolean | import("csstype").Property.FontFamily | undefined>;
992
+ readonly outline?: import("../../../tasty").ResponsiveStyleValue<string | boolean | undefined>;
993
+ readonly preset?: import("../../../tasty").ResponsiveStyleValue<string | undefined>;
994
+ readonly align?: import("../../../tasty").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>;
995
+ readonly justify?: import("../../../tasty").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>;
996
+ readonly place?: import("../../../tasty").ResponsiveStyleValue<string | (string & {}) | undefined>;
997
+ readonly placeContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceContent | undefined>;
998
+ readonly placeItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceItems | undefined>;
999
+ readonly inset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Inset<string | number> | undefined>;
1000
+ readonly filter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
1001
+ readonly clear?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Clear | undefined>;
1002
+ readonly accentColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AccentColor | undefined>;
1003
+ readonly alignContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
1004
+ readonly alignItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
1005
+ readonly alignSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
1006
+ readonly alignTracks?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignTracks | undefined>;
1007
+ readonly animationComposition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationComposition | undefined>;
1008
+ readonly animationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
1009
+ readonly animationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
1010
+ readonly animationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
1011
+ readonly animationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
1012
+ readonly animationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
1013
+ readonly animationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
1014
+ readonly animationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
1015
+ readonly animationTimeline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimeline | undefined>;
1016
+ readonly animationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
1017
+ readonly appearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Appearance | undefined>;
1018
+ readonly aspectRatio?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AspectRatio | undefined>;
1019
+ readonly backdropFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
1020
+ readonly backfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
1021
+ readonly backgroundAttachment?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundAttachment | undefined>;
1022
+ readonly backgroundBlendMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundBlendMode | undefined>;
1023
+ readonly backgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
1024
+ readonly backgroundColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundColor | undefined>;
1025
+ readonly backgroundImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundImage | undefined>;
1026
+ readonly backgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
1027
+ readonly backgroundPositionX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
1028
+ readonly backgroundPositionY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPositionY<string | number> | undefined>;
1029
+ readonly backgroundRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundRepeat | undefined>;
1030
+ readonly backgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
1031
+ readonly blockOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BlockOverflow | undefined>;
1032
+ readonly blockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BlockSize<string | number> | undefined>;
1033
+ readonly borderBlockColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockColor | undefined>;
1034
+ readonly borderBlockEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndColor | undefined>;
1035
+ readonly borderBlockEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndStyle | undefined>;
1036
+ readonly borderBlockEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>;
1037
+ readonly borderBlockStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartColor | undefined>;
1038
+ readonly borderBlockStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartStyle | undefined>;
1039
+ readonly borderBlockStartWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>;
1040
+ readonly borderBlockStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStyle | undefined>;
1041
+ readonly borderBlockWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockWidth<string | number> | undefined>;
1042
+ readonly borderBottomColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomColor | undefined>;
1043
+ readonly borderBottomLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
1044
+ readonly borderBottomRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
1045
+ readonly borderBottomStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomStyle | undefined>;
1046
+ readonly borderBottomWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomWidth<string | number> | undefined>;
1047
+ readonly borderCollapse?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderCollapse | undefined>;
1048
+ readonly borderEndEndRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>;
1049
+ readonly borderEndStartRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>;
1050
+ readonly borderImageOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageOutset<string | number> | undefined>;
1051
+ readonly borderImageRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageRepeat | undefined>;
1052
+ readonly borderImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
1053
+ readonly borderImageSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSource | undefined>;
1054
+ readonly borderImageWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageWidth<string | number> | undefined>;
1055
+ readonly borderInlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineColor | undefined>;
1056
+ readonly borderInlineEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
1057
+ readonly borderInlineEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
1058
+ readonly borderInlineEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
1059
+ readonly borderInlineStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
1060
+ readonly borderInlineStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
1061
+ readonly borderInlineStartWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>;
1062
+ readonly borderInlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStyle | undefined>;
1063
+ readonly borderInlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineWidth<string | number> | undefined>;
1064
+ readonly borderLeftColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftColor | undefined>;
1065
+ readonly borderLeftStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftStyle | undefined>;
1066
+ readonly borderLeftWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeftWidth<string | number> | undefined>;
1067
+ readonly borderRightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightColor | undefined>;
1068
+ readonly borderRightStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightStyle | undefined>;
1069
+ readonly borderRightWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRightWidth<string | number> | undefined>;
1070
+ readonly borderSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderSpacing<string | number> | undefined>;
1071
+ readonly borderStartEndRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>;
1072
+ readonly borderStartStartRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>;
1073
+ readonly borderTopColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopColor | undefined>;
1074
+ readonly borderTopLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
1075
+ readonly borderTopRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
1076
+ readonly borderTopStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopStyle | undefined>;
1077
+ readonly borderTopWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopWidth<string | number> | undefined>;
1078
+ readonly bottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Bottom<string | number> | undefined>;
1079
+ readonly boxDecorationBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
1080
+ readonly boxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
1081
+ readonly boxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
1082
+ readonly breakAfter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakAfter | undefined>;
1083
+ readonly breakBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakBefore | undefined>;
1084
+ readonly breakInside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BreakInside | undefined>;
1085
+ readonly captionSide?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaptionSide | undefined>;
1086
+ readonly caretColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaretColor | undefined>;
1087
+ readonly caretShape?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CaretShape | undefined>;
1088
+ readonly clipPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
1089
+ readonly colorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
1090
+ readonly colorScheme?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorScheme | undefined>;
1091
+ readonly columnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
1092
+ readonly columnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
1093
+ readonly columnGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnGap<string | number> | undefined>;
1094
+ readonly columnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
1095
+ readonly columnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
1096
+ readonly columnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
1097
+ readonly columnSpan?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
1098
+ readonly columnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
1099
+ readonly contain?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Contain | undefined>;
1100
+ readonly containIntrinsicBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>;
1101
+ readonly containIntrinsicHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>;
1102
+ readonly containIntrinsicInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>;
1103
+ readonly containIntrinsicWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>;
1104
+ readonly containerName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainerName | undefined>;
1105
+ readonly containerType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainerType | undefined>;
1106
+ readonly content?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Content | undefined>;
1107
+ readonly contentVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContentVisibility | undefined>;
1108
+ readonly counterIncrement?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterIncrement | undefined>;
1109
+ readonly counterReset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterReset | undefined>;
1110
+ readonly counterSet?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.CounterSet | undefined>;
1111
+ readonly cursor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Cursor | undefined>;
1112
+ readonly direction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Direction | undefined>;
1113
+ readonly display?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Display | undefined>;
1114
+ readonly emptyCells?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.EmptyCells | undefined>;
1115
+ readonly flexBasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
1116
+ readonly flexGrow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
1117
+ readonly flexShrink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
1118
+ readonly flexWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
1119
+ readonly float?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Float | undefined>;
1120
+ readonly fontFamily?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFamily | undefined>;
1121
+ readonly fontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
1122
+ readonly fontKerning?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
1123
+ readonly fontLanguageOverride?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
1124
+ readonly fontOpticalSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontOpticalSizing | undefined>;
1125
+ readonly fontPalette?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontPalette | undefined>;
1126
+ readonly fontSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSize<string | number> | undefined>;
1127
+ readonly fontSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSizeAdjust | undefined>;
1128
+ readonly fontSmooth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
1129
+ readonly fontStretch?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontStretch | undefined>;
1130
+ readonly fontStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontStyle | undefined>;
1131
+ readonly fontSynthesis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSynthesis | undefined>;
1132
+ readonly fontVariant?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariant | undefined>;
1133
+ readonly fontVariantAlternates?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantAlternates | undefined>;
1134
+ readonly fontVariantCaps?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantCaps | undefined>;
1135
+ readonly fontVariantEastAsian?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantEastAsian | undefined>;
1136
+ readonly fontVariantEmoji?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantEmoji | undefined>;
1137
+ readonly fontVariantLigatures?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
1138
+ readonly fontVariantNumeric?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantNumeric | undefined>;
1139
+ readonly fontVariantPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantPosition | undefined>;
1140
+ readonly fontVariationSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariationSettings | undefined>;
1141
+ readonly fontWeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontWeight | undefined>;
1142
+ readonly forcedColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ForcedColorAdjust | undefined>;
1143
+ readonly gridAutoColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoColumns<string | number> | undefined>;
1144
+ readonly gridAutoFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoFlow | undefined>;
1145
+ readonly gridAutoRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridAutoRows<string | number> | undefined>;
1146
+ readonly gridColumnEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnEnd | undefined>;
1147
+ readonly gridColumnStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnStart | undefined>;
1148
+ readonly gridRowEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowEnd | undefined>;
1149
+ readonly gridRowStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowStart | undefined>;
1150
+ readonly gridTemplateAreas?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateAreas | undefined>;
1151
+ readonly gridTemplateColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
1152
+ readonly gridTemplateRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
1153
+ readonly hangingPunctuation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HangingPunctuation | undefined>;
1154
+ readonly hyphenateCharacter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
1155
+ readonly hyphenateLimitChars?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateLimitChars | undefined>;
1156
+ readonly hyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
1157
+ readonly imageOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageOrientation | undefined>;
1158
+ readonly imageRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageRendering | undefined>;
1159
+ readonly imageResolution?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImageResolution | undefined>;
1160
+ readonly initialLetter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
1161
+ readonly inlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InlineSize<string | number> | undefined>;
1162
+ readonly inputSecurity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InputSecurity | undefined>;
1163
+ readonly insetBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
1164
+ readonly insetBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
1165
+ readonly insetInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
1166
+ readonly insetInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
1167
+ readonly isolation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Isolation | undefined>;
1168
+ readonly justifyContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
1169
+ readonly justifyItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyItems | undefined>;
1170
+ readonly justifySelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifySelf | undefined>;
1171
+ readonly justifyTracks?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyTracks | undefined>;
1172
+ readonly left?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Left<string | number> | undefined>;
1173
+ readonly letterSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LetterSpacing<string | number> | undefined>;
1174
+ readonly lineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
1175
+ readonly lineHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineHeight<string | number> | undefined>;
1176
+ readonly lineHeightStep?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineHeightStep<string | number> | undefined>;
1177
+ readonly listStyleImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyleImage | undefined>;
1178
+ readonly listStylePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStylePosition | undefined>;
1179
+ readonly listStyleType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyleType | undefined>;
1180
+ readonly marginBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
1181
+ readonly marginBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
1182
+ readonly marginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
1183
+ readonly marginInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
1184
+ readonly marginInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
1185
+ readonly marginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
1186
+ readonly marginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginRight<string | number> | undefined>;
1187
+ readonly marginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginTop<string | number> | undefined>;
1188
+ readonly marginTrim?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginTrim | undefined>;
1189
+ readonly maskBorderMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderMode | undefined>;
1190
+ readonly maskBorderOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
1191
+ readonly maskBorderRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
1192
+ readonly maskBorderSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
1193
+ readonly maskBorderSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
1194
+ readonly maskBorderWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
1195
+ readonly maskClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskClip | undefined>;
1196
+ readonly maskComposite?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskComposite | undefined>;
1197
+ readonly maskImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskImage | undefined>;
1198
+ readonly maskMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskMode | undefined>;
1199
+ readonly maskOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskOrigin | undefined>;
1200
+ readonly maskPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskPosition<string | number> | undefined>;
1201
+ readonly maskRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskRepeat | undefined>;
1202
+ readonly maskSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskSize<string | number> | undefined>;
1203
+ readonly maskType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskType | undefined>;
1204
+ readonly mathDepth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathDepth | undefined>;
1205
+ readonly mathShift?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathShift | undefined>;
1206
+ readonly mathStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MathStyle | undefined>;
1207
+ readonly maxBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxBlockSize<string | number> | undefined>;
1208
+ readonly maxHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxHeight<string | number> | undefined>;
1209
+ readonly maxInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
1210
+ readonly maxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxLines | undefined>;
1211
+ readonly maxWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxWidth<string | number> | undefined>;
1212
+ readonly minBlockSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinBlockSize<string | number> | undefined>;
1213
+ readonly minHeight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinHeight<string | number> | undefined>;
1214
+ readonly minInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinInlineSize<string | number> | undefined>;
1215
+ readonly minWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MinWidth<string | number> | undefined>;
1216
+ readonly mixBlendMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MixBlendMode | undefined>;
1217
+ readonly motionDistance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
1218
+ readonly motionPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
1219
+ readonly motionRotation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
1220
+ readonly objectFit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
1221
+ readonly objectPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
1222
+ readonly offsetAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetAnchor<string | number> | undefined>;
1223
+ readonly offsetDistance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
1224
+ readonly offsetPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPath | undefined>;
1225
+ readonly offsetPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetPosition<string | number> | undefined>;
1226
+ readonly offsetRotate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
1227
+ readonly offsetRotation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OffsetRotate | undefined>;
1228
+ readonly order?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
1229
+ readonly orphans?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Orphans | undefined>;
1230
+ readonly outlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
1231
+ readonly outlineOffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineOffset<string | number> | undefined>;
1232
+ readonly outlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
1233
+ readonly outlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
1234
+ readonly overflowAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowAnchor | undefined>;
1235
+ readonly overflowBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowBlock | undefined>;
1236
+ readonly overflowClipBox?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowClipBox | undefined>;
1237
+ readonly overflowClipMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowClipMargin<string | number> | undefined>;
1238
+ readonly overflowInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowInline | undefined>;
1239
+ readonly overflowWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowWrap | undefined>;
1240
+ readonly overflowX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
1241
+ readonly overflowY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
1242
+ readonly overscrollBehaviorBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorBlock | undefined>;
1243
+ readonly overscrollBehaviorInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorInline | undefined>;
1244
+ readonly overscrollBehaviorX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorX | undefined>;
1245
+ readonly overscrollBehaviorY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehaviorY | undefined>;
1246
+ readonly paddingBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
1247
+ readonly paddingBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
1248
+ readonly paddingBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
1249
+ readonly paddingInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
1250
+ readonly paddingInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
1251
+ readonly paddingLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
1252
+ readonly paddingRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
1253
+ readonly paddingTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
1254
+ readonly page?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Page | undefined>;
1255
+ readonly pageBreakAfter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakAfter | undefined>;
1256
+ readonly pageBreakBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakBefore | undefined>;
1257
+ readonly pageBreakInside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PageBreakInside | undefined>;
1258
+ readonly paintOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaintOrder | undefined>;
1259
+ readonly perspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
1260
+ readonly perspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
1261
+ readonly pointerEvents?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PointerEvents | undefined>;
1262
+ readonly position?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Position | undefined>;
1263
+ readonly printColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
1264
+ readonly quotes?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Quotes | undefined>;
1265
+ readonly resize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Resize | undefined>;
1266
+ readonly right?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Right<string | number> | undefined>;
1267
+ readonly rotate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Rotate | undefined>;
1268
+ readonly rowGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RowGap<string | number> | undefined>;
1269
+ readonly rubyAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyAlign | undefined>;
1270
+ readonly rubyMerge?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyMerge | undefined>;
1271
+ readonly rubyPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
1272
+ readonly scale?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Scale | undefined>;
1273
+ readonly scrollBehavior?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollBehavior | undefined>;
1274
+ readonly scrollMarginBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>;
1275
+ readonly scrollMarginBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>;
1276
+ readonly scrollMarginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
1277
+ readonly scrollMarginInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>;
1278
+ readonly scrollMarginInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>;
1279
+ readonly scrollMarginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
1280
+ readonly scrollMarginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
1281
+ readonly scrollMarginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
1282
+ readonly scrollPaddingBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>;
1283
+ readonly scrollPaddingBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>;
1284
+ readonly scrollPaddingBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>;
1285
+ readonly scrollPaddingInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>;
1286
+ readonly scrollPaddingInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>;
1287
+ readonly scrollPaddingLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
1288
+ readonly scrollPaddingRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>;
1289
+ readonly scrollPaddingTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
1290
+ readonly scrollSnapAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapAlign | undefined>;
1291
+ readonly scrollSnapMarginBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
1292
+ readonly scrollSnapMarginLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
1293
+ readonly scrollSnapMarginRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
1294
+ readonly scrollSnapMarginTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
1295
+ readonly scrollSnapStop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapStop | undefined>;
1296
+ readonly scrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
1297
+ readonly scrollTimelineAxis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineAxis | undefined>;
1298
+ readonly scrollTimelineName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimelineName | undefined>;
1299
+ readonly scrollbarColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarColor | undefined>;
1300
+ readonly scrollbarGutter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarGutter | undefined>;
1301
+ readonly scrollbarWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollbarWidth | undefined>;
1302
+ readonly shapeImageThreshold?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeImageThreshold | undefined>;
1303
+ readonly shapeMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
1304
+ readonly shapeOutside?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeOutside | undefined>;
1305
+ readonly tabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
1306
+ readonly tableLayout?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TableLayout | undefined>;
1307
+ readonly textAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlign | undefined>;
1308
+ readonly textAlignLast?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
1309
+ readonly textCombineUpright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
1310
+ readonly textDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
1311
+ readonly textDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
1312
+ readonly textDecorationSkip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
1313
+ readonly textDecorationSkipInk?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkipInk | undefined>;
1314
+ readonly textDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
1315
+ readonly textDecorationThickness?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationThickness<string | number> | undefined>;
1316
+ readonly textEmphasisColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
1317
+ readonly textEmphasisPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
1318
+ readonly textEmphasisStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
1319
+ readonly textIndent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextIndent<string | number> | undefined>;
1320
+ readonly textJustify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextJustify | undefined>;
1321
+ readonly textOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
1322
+ readonly textOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
1323
+ readonly textRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextRendering | undefined>;
1324
+ readonly textShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextShadow | undefined>;
1325
+ readonly textSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
1326
+ readonly textTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextTransform | undefined>;
1327
+ readonly textUnderlineOffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>;
1328
+ readonly textUnderlinePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
1329
+ readonly top?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Top<string | number> | undefined>;
1330
+ readonly touchAction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
1331
+ readonly transform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
1332
+ readonly transformBox?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformBox | undefined>;
1333
+ readonly transformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
1334
+ readonly transformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
1335
+ readonly transitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
1336
+ readonly transitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
1337
+ readonly transitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
1338
+ readonly transitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
1339
+ readonly unicodeBidi?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UnicodeBidi | undefined>;
1340
+ readonly userSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
1341
+ readonly verticalAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.VerticalAlign<string | number> | undefined>;
1342
+ readonly viewTransitionName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ViewTransitionName | undefined>;
1343
+ readonly visibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Visibility | undefined>;
1344
+ readonly whiteSpace?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WhiteSpace | undefined>;
1345
+ readonly widows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Widows | undefined>;
1346
+ readonly willChange?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WillChange | undefined>;
1347
+ readonly wordBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
1348
+ readonly wordSpacing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordSpacing<string | number> | undefined>;
1349
+ readonly wordWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordWrap | undefined>;
1350
+ readonly writingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
1351
+ readonly zIndex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ZIndex | undefined>;
1352
+ readonly zoom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Zoom | undefined>;
1353
+ readonly all?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Globals | undefined>;
1354
+ readonly animation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
1355
+ readonly background?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Background<string | number> | undefined>;
1356
+ readonly backgroundPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundPosition<string | number> | undefined>;
1357
+ readonly borderBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlock<string | number> | undefined>;
1358
+ readonly borderBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockEnd<string | number> | undefined>;
1359
+ readonly borderBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBlockStart<string | number> | undefined>;
1360
+ readonly borderBottom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottom<string | number> | undefined>;
1361
+ readonly borderColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderColor | undefined>;
1362
+ readonly borderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
1363
+ readonly borderInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInline<string | number> | undefined>;
1364
+ readonly borderInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEnd<string | number> | undefined>;
1365
+ readonly borderInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStart<string | number> | undefined>;
1366
+ readonly borderLeft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderLeft<string | number> | undefined>;
1367
+ readonly borderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
1368
+ readonly borderRight?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRight<string | number> | undefined>;
1369
+ readonly borderStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderStyle | undefined>;
1370
+ readonly borderTop?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTop<string | number> | undefined>;
1371
+ readonly borderWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderWidth<string | number> | undefined>;
1372
+ readonly caret?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Caret | undefined>;
1373
+ readonly columnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
1374
+ readonly columns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
1375
+ readonly containIntrinsicSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>;
1376
+ readonly container?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Container | undefined>;
1377
+ readonly flexFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
1378
+ readonly gridArea?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridArea | undefined>;
1379
+ readonly gridColumn?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumn | undefined>;
1380
+ readonly gridRow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRow | undefined>;
1381
+ readonly insetBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
1382
+ readonly insetInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
1383
+ readonly lineClamp?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineClamp | undefined>;
1384
+ readonly listStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ListStyle | undefined>;
1385
+ readonly marginBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginBlock<string | number> | undefined>;
1386
+ readonly marginInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInline<string | number> | undefined>;
1387
+ readonly mask?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Mask<string | number> | undefined>;
1388
+ readonly maskBorder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
1389
+ readonly motion?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
1390
+ readonly offset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Offset<string | number> | undefined>;
1391
+ readonly overflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Overflow | undefined>;
1392
+ readonly overscrollBehavior?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverscrollBehavior | undefined>;
1393
+ readonly paddingBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingBlock<string | number> | undefined>;
1394
+ readonly paddingInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInline<string | number> | undefined>;
1395
+ readonly placeSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PlaceSelf | undefined>;
1396
+ readonly scrollMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
1397
+ readonly scrollMarginBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>;
1398
+ readonly scrollMarginInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMarginInline<string | number> | undefined>;
1399
+ readonly scrollPadding?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPadding<string | number> | undefined>;
1400
+ readonly scrollPaddingBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>;
1401
+ readonly scrollPaddingInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>;
1402
+ readonly scrollSnapMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
1403
+ readonly scrollTimeline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollTimeline | undefined>;
1404
+ readonly textDecoration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecoration<string | number> | undefined>;
1405
+ readonly textEmphasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
1406
+ readonly MozAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
1407
+ readonly MozAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
1408
+ readonly MozAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
1409
+ readonly MozAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
1410
+ readonly MozAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
1411
+ readonly MozAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
1412
+ readonly MozAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
1413
+ readonly MozAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
1414
+ readonly MozAppearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozAppearance | undefined>;
1415
+ readonly MozBackfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
1416
+ readonly MozBinding?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBinding | undefined>;
1417
+ readonly MozBorderBottomColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderBottomColors | undefined>;
1418
+ readonly MozBorderEndColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndColor | undefined>;
1419
+ readonly MozBorderEndStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
1420
+ readonly MozBorderEndWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
1421
+ readonly MozBorderLeftColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderLeftColors | undefined>;
1422
+ readonly MozBorderRightColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderRightColors | undefined>;
1423
+ readonly MozBorderStartColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartColor | undefined>;
1424
+ readonly MozBorderStartStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
1425
+ readonly MozBorderTopColors?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozBorderTopColors | undefined>;
1426
+ readonly MozBoxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
1427
+ readonly MozColumnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
1428
+ readonly MozColumnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
1429
+ readonly MozColumnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
1430
+ readonly MozColumnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
1431
+ readonly MozColumnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
1432
+ readonly MozColumnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
1433
+ readonly MozContextProperties?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozContextProperties | undefined>;
1434
+ readonly MozFontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
1435
+ readonly MozFontLanguageOverride?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontLanguageOverride | undefined>;
1436
+ readonly MozHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
1437
+ readonly MozImageRegion?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozImageRegion | undefined>;
1438
+ readonly MozMarginEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
1439
+ readonly MozMarginStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
1440
+ readonly MozOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOrient | undefined>;
1441
+ readonly MozOsxFontSmoothing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
1442
+ readonly MozPaddingEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
1443
+ readonly MozPaddingStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
1444
+ readonly MozPerspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
1445
+ readonly MozPerspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
1446
+ readonly MozStackSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozStackSizing | undefined>;
1447
+ readonly MozTabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
1448
+ readonly MozTextBlink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozTextBlink | undefined>;
1449
+ readonly MozTextSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
1450
+ readonly MozTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
1451
+ readonly MozTransformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
1452
+ readonly MozTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
1453
+ readonly MozTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
1454
+ readonly MozTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
1455
+ readonly MozTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
1456
+ readonly MozUserFocus?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserFocus | undefined>;
1457
+ readonly MozUserModify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserModify | undefined>;
1458
+ readonly MozUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
1459
+ readonly MozWindowDragging?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozWindowDragging | undefined>;
1460
+ readonly MozWindowShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozWindowShadow | undefined>;
1461
+ readonly msAccelerator?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsAccelerator | undefined>;
1462
+ readonly msBlockProgression?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsBlockProgression | undefined>;
1463
+ readonly msContentZoomChaining?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomChaining | undefined>;
1464
+ readonly msContentZoomLimitMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMax | undefined>;
1465
+ readonly msContentZoomLimitMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimitMin | undefined>;
1466
+ readonly msContentZoomSnapPoints?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapPoints | undefined>;
1467
+ readonly msContentZoomSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnapType | undefined>;
1468
+ readonly msContentZooming?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZooming | undefined>;
1469
+ readonly msFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFilter | undefined>;
1470
+ readonly msFlexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
1471
+ readonly msFlexPositive?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
1472
+ readonly msFlowFrom?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFlowFrom | undefined>;
1473
+ readonly msFlowInto?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsFlowInto | undefined>;
1474
+ readonly msGridColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsGridColumns<string | number> | undefined>;
1475
+ readonly msGridRows?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsGridRows<string | number> | undefined>;
1476
+ readonly msHighContrastAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHighContrastAdjust | undefined>;
1477
+ readonly msHyphenateLimitChars?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitChars | undefined>;
1478
+ readonly msHyphenateLimitLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitLines | undefined>;
1479
+ readonly msHyphenateLimitZone?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>;
1480
+ readonly msHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
1481
+ readonly msImeAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsImeAlign | undefined>;
1482
+ readonly msLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
1483
+ readonly msOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
1484
+ readonly msOverflowStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsOverflowStyle | undefined>;
1485
+ readonly msOverflowX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowX | undefined>;
1486
+ readonly msOverflowY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OverflowY | undefined>;
1487
+ readonly msScrollChaining?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollChaining | undefined>;
1488
+ readonly msScrollLimitXMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>;
1489
+ readonly msScrollLimitXMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>;
1490
+ readonly msScrollLimitYMax?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>;
1491
+ readonly msScrollLimitYMin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>;
1492
+ readonly msScrollRails?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollRails | undefined>;
1493
+ readonly msScrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsX | undefined>;
1494
+ readonly msScrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapPointsY | undefined>;
1495
+ readonly msScrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapType | undefined>;
1496
+ readonly msScrollTranslation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollTranslation | undefined>;
1497
+ readonly msScrollbar3dlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbar3dlightColor | undefined>;
1498
+ readonly msScrollbarArrowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarArrowColor | undefined>;
1499
+ readonly msScrollbarBaseColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarBaseColor | undefined>;
1500
+ readonly msScrollbarDarkshadowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarDarkshadowColor | undefined>;
1501
+ readonly msScrollbarFaceColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarFaceColor | undefined>;
1502
+ readonly msScrollbarHighlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarHighlightColor | undefined>;
1503
+ readonly msScrollbarShadowColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarShadowColor | undefined>;
1504
+ readonly msScrollbarTrackColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollbarTrackColor | undefined>;
1505
+ readonly msTextAutospace?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsTextAutospace | undefined>;
1506
+ readonly msTextCombineHorizontal?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
1507
+ readonly msTextOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
1508
+ readonly msTouchAction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TouchAction | undefined>;
1509
+ readonly msTouchSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsTouchSelect | undefined>;
1510
+ readonly msTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
1511
+ readonly msTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
1512
+ readonly msTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
1513
+ readonly msTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
1514
+ readonly msTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
1515
+ readonly msTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
1516
+ readonly msUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsUserSelect | undefined>;
1517
+ readonly msWordBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WordBreak | undefined>;
1518
+ readonly msWrapFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapFlow | undefined>;
1519
+ readonly msWrapMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapMargin<string | number> | undefined>;
1520
+ readonly msWrapThrough?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsWrapThrough | undefined>;
1521
+ readonly msWritingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
1522
+ readonly WebkitAlignContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignContent | undefined>;
1523
+ readonly WebkitAlignItems?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignItems | undefined>;
1524
+ readonly WebkitAlignSelf?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignSelf | undefined>;
1525
+ readonly WebkitAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
1526
+ readonly WebkitAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
1527
+ readonly WebkitAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
1528
+ readonly WebkitAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
1529
+ readonly WebkitAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
1530
+ readonly WebkitAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
1531
+ readonly WebkitAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
1532
+ readonly WebkitAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
1533
+ readonly WebkitAppearance?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitAppearance | undefined>;
1534
+ readonly WebkitBackdropFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackdropFilter | undefined>;
1535
+ readonly WebkitBackfaceVisibility?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackfaceVisibility | undefined>;
1536
+ readonly WebkitBackgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
1537
+ readonly WebkitBackgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
1538
+ readonly WebkitBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
1539
+ readonly WebkitBorderBeforeColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeColor | undefined>;
1540
+ readonly WebkitBorderBeforeStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeStyle | undefined>;
1541
+ readonly WebkitBorderBeforeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>;
1542
+ readonly WebkitBorderBottomLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
1543
+ readonly WebkitBorderBottomRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
1544
+ readonly WebkitBorderImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImageSlice | undefined>;
1545
+ readonly WebkitBorderTopLeftRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
1546
+ readonly WebkitBorderTopRightRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
1547
+ readonly WebkitBoxDecorationBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
1548
+ readonly WebkitBoxReflect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>;
1549
+ readonly WebkitBoxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
1550
+ readonly WebkitBoxSizing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxSizing | undefined>;
1551
+ readonly WebkitClipPath?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipPath | undefined>;
1552
+ readonly WebkitColumnCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnCount | undefined>;
1553
+ readonly WebkitColumnFill?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnFill | undefined>;
1554
+ readonly WebkitColumnRuleColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleColor | undefined>;
1555
+ readonly WebkitColumnRuleStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleStyle | undefined>;
1556
+ readonly WebkitColumnRuleWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
1557
+ readonly WebkitColumnSpan?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnSpan | undefined>;
1558
+ readonly WebkitColumnWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
1559
+ readonly WebkitFilter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Filter | undefined>;
1560
+ readonly WebkitFlexBasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
1561
+ readonly WebkitFlexDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexDirection | undefined>;
1562
+ readonly WebkitFlexGrow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexGrow | undefined>;
1563
+ readonly WebkitFlexShrink?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexShrink | undefined>;
1564
+ readonly WebkitFlexWrap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexWrap | undefined>;
1565
+ readonly WebkitFontFeatureSettings?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontFeatureSettings | undefined>;
1566
+ readonly WebkitFontKerning?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontKerning | undefined>;
1567
+ readonly WebkitFontSmoothing?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
1568
+ readonly WebkitFontVariantLigatures?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FontVariantLigatures | undefined>;
1569
+ readonly WebkitHyphenateCharacter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.HyphenateCharacter | undefined>;
1570
+ readonly WebkitHyphens?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Hyphens | undefined>;
1571
+ readonly WebkitInitialLetter?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InitialLetter | undefined>;
1572
+ readonly WebkitJustifyContent?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.JustifyContent | undefined>;
1573
+ readonly WebkitLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
1574
+ readonly WebkitLineClamp?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitLineClamp | undefined>;
1575
+ readonly WebkitMarginEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
1576
+ readonly WebkitMarginStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
1577
+ readonly WebkitMaskAttachment?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskAttachment | undefined>;
1578
+ readonly WebkitMaskBoxImageOutset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
1579
+ readonly WebkitMaskBoxImageRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderRepeat | undefined>;
1580
+ readonly WebkitMaskBoxImageSlice?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSlice | undefined>;
1581
+ readonly WebkitMaskBoxImageSource?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderSource | undefined>;
1582
+ readonly WebkitMaskBoxImageWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
1583
+ readonly WebkitMaskClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskClip | undefined>;
1584
+ readonly WebkitMaskComposite?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskComposite | undefined>;
1585
+ readonly WebkitMaskImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskImage | undefined>;
1586
+ readonly WebkitMaskOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskOrigin | undefined>;
1587
+ readonly WebkitMaskPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>;
1588
+ readonly WebkitMaskPositionX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>;
1589
+ readonly WebkitMaskPositionY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>;
1590
+ readonly WebkitMaskRepeat?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeat | undefined>;
1591
+ readonly WebkitMaskRepeatX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatX | undefined>;
1592
+ readonly WebkitMaskRepeatY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskRepeatY | undefined>;
1593
+ readonly WebkitMaskSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMaskSize<string | number> | undefined>;
1594
+ readonly WebkitMaxInlineSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
1595
+ readonly WebkitOrder?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Order | undefined>;
1596
+ readonly WebkitOverflowScrolling?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitOverflowScrolling | undefined>;
1597
+ readonly WebkitPaddingEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
1598
+ readonly WebkitPaddingStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
1599
+ readonly WebkitPerspective?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Perspective<string | number> | undefined>;
1600
+ readonly WebkitPerspectiveOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
1601
+ readonly WebkitPrintColorAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.PrintColorAdjust | undefined>;
1602
+ readonly WebkitRubyPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.RubyPosition | undefined>;
1603
+ readonly WebkitScrollSnapType?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapType | undefined>;
1604
+ readonly WebkitShapeMargin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
1605
+ readonly WebkitTapHighlightColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTapHighlightColor | undefined>;
1606
+ readonly WebkitTextCombine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextCombineUpright | undefined>;
1607
+ readonly WebkitTextDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
1608
+ readonly WebkitTextDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
1609
+ readonly WebkitTextDecorationSkip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationSkip | undefined>;
1610
+ readonly WebkitTextDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
1611
+ readonly WebkitTextEmphasisColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisColor | undefined>;
1612
+ readonly WebkitTextEmphasisPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisPosition | undefined>;
1613
+ readonly WebkitTextEmphasisStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasisStyle | undefined>;
1614
+ readonly WebkitTextFillColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextFillColor | undefined>;
1615
+ readonly WebkitTextOrientation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOrientation | undefined>;
1616
+ readonly WebkitTextSizeAdjust?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextSizeAdjust | undefined>;
1617
+ readonly WebkitTextStrokeColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeColor | undefined>;
1618
+ readonly WebkitTextStrokeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>;
1619
+ readonly WebkitTextUnderlinePosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextUnderlinePosition | undefined>;
1620
+ readonly WebkitTouchCallout?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTouchCallout | undefined>;
1621
+ readonly WebkitTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
1622
+ readonly WebkitTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
1623
+ readonly WebkitTransformStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformStyle | undefined>;
1624
+ readonly WebkitTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
1625
+ readonly WebkitTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
1626
+ readonly WebkitTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
1627
+ readonly WebkitTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
1628
+ readonly WebkitUserModify?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitUserModify | undefined>;
1629
+ readonly WebkitUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
1630
+ readonly WebkitWritingMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WritingMode | undefined>;
1631
+ readonly MozAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
1632
+ readonly MozBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
1633
+ readonly MozColumnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
1634
+ readonly MozColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
1635
+ readonly MozTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
1636
+ readonly msContentZoomLimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomLimit | undefined>;
1637
+ readonly msContentZoomSnap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsContentZoomSnap | undefined>;
1638
+ readonly msFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
1639
+ readonly msScrollLimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollLimit | undefined>;
1640
+ readonly msScrollSnapX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapX | undefined>;
1641
+ readonly msScrollSnapY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MsScrollSnapY | undefined>;
1642
+ readonly msTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
1643
+ readonly WebkitAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
1644
+ readonly WebkitBorderBefore?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>;
1645
+ readonly WebkitBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
1646
+ readonly WebkitBorderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
1647
+ readonly WebkitColumnRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
1648
+ readonly WebkitColumns?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Columns<string | number> | undefined>;
1649
+ readonly WebkitFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Flex<string | number> | undefined>;
1650
+ readonly WebkitFlexFlow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FlexFlow | undefined>;
1651
+ readonly WebkitMask?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitMask<string | number> | undefined>;
1652
+ readonly WebkitMaskBoxImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MaskBorder | undefined>;
1653
+ readonly WebkitTextEmphasis?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextEmphasis | undefined>;
1654
+ readonly WebkitTextStroke?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.WebkitTextStroke<string | number> | undefined>;
1655
+ readonly WebkitTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
1656
+ readonly azimuth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Azimuth | undefined>;
1657
+ readonly boxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
1658
+ readonly boxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
1659
+ readonly boxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
1660
+ readonly boxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
1661
+ readonly boxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
1662
+ readonly boxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
1663
+ readonly boxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
1664
+ readonly boxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
1665
+ readonly clip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Clip | undefined>;
1666
+ readonly gridColumnGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridColumnGap<string | number> | undefined>;
1667
+ readonly gridGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridGap<string | number> | undefined>;
1668
+ readonly gridRowGap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GridRowGap<string | number> | undefined>;
1669
+ readonly imeMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
1670
+ readonly offsetBlock?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
1671
+ readonly offsetBlockEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
1672
+ readonly offsetBlockStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
1673
+ readonly offsetInline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInline<string | number> | undefined>;
1674
+ readonly offsetInlineEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
1675
+ readonly offsetInlineStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
1676
+ readonly scrollSnapCoordinate?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>;
1677
+ readonly scrollSnapDestination?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>;
1678
+ readonly scrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
1679
+ readonly scrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
1680
+ readonly scrollSnapTypeX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeX | undefined>;
1681
+ readonly scrollSnapTypeY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapTypeY | undefined>;
1682
+ readonly KhtmlBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
1683
+ readonly KhtmlBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
1684
+ readonly KhtmlBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
1685
+ readonly KhtmlBoxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
1686
+ readonly KhtmlBoxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
1687
+ readonly KhtmlBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
1688
+ readonly KhtmlBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
1689
+ readonly KhtmlBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
1690
+ readonly KhtmlLineBreak?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LineBreak | undefined>;
1691
+ readonly KhtmlOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
1692
+ readonly KhtmlUserSelect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.UserSelect | undefined>;
1693
+ readonly MozBackgroundClip?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundClip | undefined>;
1694
+ readonly MozBackgroundInlinePolicy?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDecorationBreak | undefined>;
1695
+ readonly MozBackgroundOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundOrigin | undefined>;
1696
+ readonly MozBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
1697
+ readonly MozBorderRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
1698
+ readonly MozBorderRadiusBottomleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
1699
+ readonly MozBorderRadiusBottomright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
1700
+ readonly MozBorderRadiusTopleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
1701
+ readonly MozBorderRadiusTopright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
1702
+ readonly MozBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
1703
+ readonly MozBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
1704
+ readonly MozBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
1705
+ readonly MozBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
1706
+ readonly MozBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
1707
+ readonly MozBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
1708
+ readonly MozBoxShadow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxShadow | undefined>;
1709
+ readonly MozFloatEdge?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozFloatEdge | undefined>;
1710
+ readonly MozForceBrokenImageIcon?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozForceBrokenImageIcon | undefined>;
1711
+ readonly MozOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Opacity | undefined>;
1712
+ readonly MozOutline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Outline<string | number> | undefined>;
1713
+ readonly MozOutlineColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineColor | undefined>;
1714
+ readonly MozOutlineRadius?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadius<string | number> | undefined>;
1715
+ readonly MozOutlineRadiusBottomleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
1716
+ readonly MozOutlineRadiusBottomright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>;
1717
+ readonly MozOutlineRadiusTopleft?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>;
1718
+ readonly MozOutlineRadiusTopright?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>;
1719
+ readonly MozOutlineStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineStyle | undefined>;
1720
+ readonly MozOutlineWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
1721
+ readonly MozTextAlignLast?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAlignLast | undefined>;
1722
+ readonly MozTextDecorationColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationColor | undefined>;
1723
+ readonly MozTextDecorationLine?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationLine | undefined>;
1724
+ readonly MozTextDecorationStyle?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextDecorationStyle | undefined>;
1725
+ readonly MozUserInput?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MozUserInput | undefined>;
1726
+ readonly msImeMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ImeMode | undefined>;
1727
+ readonly OAnimation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Animation<string & {}> | undefined>;
1728
+ readonly OAnimationDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
1729
+ readonly OAnimationDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDirection | undefined>;
1730
+ readonly OAnimationDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
1731
+ readonly OAnimationFillMode?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationFillMode | undefined>;
1732
+ readonly OAnimationIterationCount?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationIterationCount | undefined>;
1733
+ readonly OAnimationName?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationName | undefined>;
1734
+ readonly OAnimationPlayState?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationPlayState | undefined>;
1735
+ readonly OAnimationTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AnimationTimingFunction | undefined>;
1736
+ readonly OBackgroundSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
1737
+ readonly OBorderImage?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BorderImage | undefined>;
1738
+ readonly OObjectFit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectFit | undefined>;
1739
+ readonly OObjectPosition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
1740
+ readonly OTabSize?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TabSize<string | number> | undefined>;
1741
+ readonly OTextOverflow?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextOverflow | undefined>;
1742
+ readonly OTransform?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transform | undefined>;
1743
+ readonly OTransformOrigin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
1744
+ readonly OTransition?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Transition<string & {}> | undefined>;
1745
+ readonly OTransitionDelay?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
1746
+ readonly OTransitionDuration?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
1747
+ readonly OTransitionProperty?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionProperty | undefined>;
1748
+ readonly OTransitionTimingFunction?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TransitionTimingFunction | undefined>;
1749
+ readonly WebkitBoxAlign?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxAlign | undefined>;
1750
+ readonly WebkitBoxDirection?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxDirection | undefined>;
1751
+ readonly WebkitBoxFlex?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlex | undefined>;
1752
+ readonly WebkitBoxFlexGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxFlexGroup | undefined>;
1753
+ readonly WebkitBoxLines?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxLines | undefined>;
1754
+ readonly WebkitBoxOrdinalGroup?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrdinalGroup | undefined>;
1755
+ readonly WebkitBoxOrient?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxOrient | undefined>;
1756
+ readonly WebkitBoxPack?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BoxPack | undefined>;
1757
+ readonly WebkitScrollSnapPointsX?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsX | undefined>;
1758
+ readonly WebkitScrollSnapPointsY?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ScrollSnapPointsY | undefined>;
1759
+ readonly alignmentBaseline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.AlignmentBaseline | undefined>;
1760
+ readonly baselineShift?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.BaselineShift<string | number> | undefined>;
1761
+ readonly clipRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ClipRule | undefined>;
1762
+ readonly colorInterpolation?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorInterpolation | undefined>;
1763
+ readonly colorRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ColorRendering | undefined>;
1764
+ readonly dominantBaseline?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.DominantBaseline | undefined>;
1765
+ readonly fillOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FillOpacity | undefined>;
1766
+ readonly fillRule?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FillRule | undefined>;
1767
+ readonly floodColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FloodColor | undefined>;
1768
+ readonly floodOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.FloodOpacity | undefined>;
1769
+ readonly glyphOrientationVertical?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.GlyphOrientationVertical | undefined>;
1770
+ readonly lightingColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.LightingColor | undefined>;
1771
+ readonly marker?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Marker | undefined>;
1772
+ readonly markerEnd?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerEnd | undefined>;
1773
+ readonly markerMid?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerMid | undefined>;
1774
+ readonly markerStart?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.MarkerStart | undefined>;
1775
+ readonly shapeRendering?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.ShapeRendering | undefined>;
1776
+ readonly stopColor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StopColor | undefined>;
1777
+ readonly stopOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StopOpacity | undefined>;
1778
+ readonly stroke?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.Stroke | undefined>;
1779
+ readonly strokeDasharray?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeDasharray<string | number> | undefined>;
1780
+ readonly strokeDashoffset?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeDashoffset<string | number> | undefined>;
1781
+ readonly strokeLinecap?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeLinecap | undefined>;
1782
+ readonly strokeLinejoin?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeLinejoin | undefined>;
1783
+ readonly strokeMiterlimit?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeMiterlimit | undefined>;
1784
+ readonly strokeOpacity?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeOpacity | undefined>;
1785
+ readonly strokeWidth?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | undefined>;
1786
+ readonly textAnchor?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.TextAnchor | undefined>;
1787
+ readonly vectorEffect?: import("../../../tasty").ResponsiveStyleValue<import("csstype").Property.VectorEffect | undefined>;
1788
+ readonly $?: string;
84
1789
  };
85
- readonly '& [data-element="ButtonIcon"]:last-child:not(:first-child)': {
86
- readonly marginRight: "-.5x";
87
- readonly placeSelf: "center end";
1790
+ readonly Label: {
1791
+ readonly $: ">";
1792
+ readonly display: "block";
1793
+ readonly placeSelf: "center stretch";
1794
+ readonly boxSizing: "border-box";
1795
+ readonly whiteSpace: "nowrap";
1796
+ readonly overflow: "hidden";
1797
+ readonly textOverflow: "ellipsis";
1798
+ readonly maxWidth: "100%";
1799
+ readonly textAlign: "center";
1800
+ readonly transition: "theme, padding";
1801
+ readonly padding: {
1802
+ readonly '': "$block-padding $right-padding $block-padding $left-padding";
1803
+ readonly 'type=link': "0";
1804
+ };
88
1805
  };
89
1806
  };
90
1807
  export declare const Button: import("react").ForwardRefExoticComponent<Omit<CubeButtonProps, "ref"> & import("react").RefAttributes<import("@react-types/shared").FocusableRefValue<HTMLElement, HTMLElement>>>;