@rovula/ui 0.0.21 → 0.0.23

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 (314) hide show
  1. package/dist/cjs/bundle.css +185 -495
  2. package/dist/cjs/bundle.js +3 -3
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
  5. package/dist/cjs/types/components/Button/Button.d.ts +1 -1
  6. package/dist/cjs/types/components/Button/Button.styles.d.ts +1 -1
  7. package/dist/cjs/types/components/Button/Buttons.stories.d.ts +13 -13
  8. package/dist/cjs/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
  9. package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
  10. package/dist/cjs/types/components/Icon/Icon.d.ts +11 -0
  11. package/dist/cjs/types/components/Icon/Icon.stories.d.ts +508 -0
  12. package/dist/cjs/types/components/Icon/Icon.styles.d.ts +4 -0
  13. package/dist/cjs/types/components/Input/Input.stories.d.ts +115 -115
  14. package/dist/cjs/types/components/Label/Label.stories.d.ts +51 -51
  15. package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
  16. package/dist/cjs/types/components/Search/Search.stories.d.ts +64 -64
  17. package/dist/cjs/types/components/Slider/Slider.d.ts +5 -0
  18. package/dist/cjs/types/components/Slider/Slider.stories.d.ts +303 -0
  19. package/dist/cjs/types/components/Switch/Switch.d.ts +4 -0
  20. package/dist/cjs/types/components/Switch/Switch.stories.d.ts +305 -0
  21. package/dist/cjs/types/components/Table/Table.stories.d.ts +7 -7
  22. package/dist/cjs/types/components/Tabs/Tabs.d.ts +12 -3
  23. package/dist/cjs/types/components/Tabs/Tabs.stories.d.ts +18 -0
  24. package/dist/cjs/types/components/Text/Text.d.ts +6 -5
  25. package/dist/cjs/types/components/Text/Text.stories.d.ts +2 -10
  26. package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +62 -62
  27. package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +1 -1
  28. package/dist/cjs/types/icons/heroIconConfig.d.ts +1 -0
  29. package/dist/cjs/types/icons/iconConfig.d.ts +2 -0
  30. package/dist/cjs/types/icons/iconRegistry.d.ts +19 -0
  31. package/dist/cjs/types/icons/index.d.ts +1 -0
  32. package/dist/cjs/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
  33. package/dist/cjs/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
  34. package/dist/cjs/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
  35. package/dist/cjs/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
  36. package/dist/cjs/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
  37. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
  38. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
  39. package/dist/cjs/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
  40. package/dist/cjs/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
  41. package/dist/cjs/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
  42. package/dist/cjs/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
  43. package/dist/cjs/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
  44. package/dist/cjs/types/icons/material-icon/outline/index.d.ts +12 -0
  45. package/dist/cjs/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
  46. package/dist/cjs/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
  47. package/dist/cjs/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
  48. package/dist/cjs/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
  49. package/dist/cjs/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
  50. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
  51. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
  52. package/dist/cjs/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
  53. package/dist/cjs/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
  54. package/dist/cjs/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
  55. package/dist/cjs/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
  56. package/dist/cjs/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
  57. package/dist/cjs/types/icons/material-icon/solid/index.d.ts +12 -0
  58. package/dist/cjs/types/icons/materialIconConfig.d.ts +1 -0
  59. package/dist/cjs/types/icons/type.d.ts +8 -0
  60. package/dist/cjs/types/icons/utils.d.ts +1 -0
  61. package/dist/cjs/types/index.d.ts +4 -0
  62. package/dist/components/ActionButton/ActionButton.js +8 -19
  63. package/dist/components/ActionButton/ActionButton.stories.js +12 -22
  64. package/dist/components/ActionButton/ActionButton.styles.js +33 -8
  65. package/dist/components/AlertDialog/Alert.stories.js +5 -16
  66. package/dist/components/AlertDialog/AlertDialog.js +27 -38
  67. package/dist/components/Avatar/Avatar.js +7 -8
  68. package/dist/components/Avatar/Avatar.stories.js +11 -22
  69. package/dist/components/Avatar/Avatar.styles.js +1 -1
  70. package/dist/components/Avatar/AvatarBase.js +9 -20
  71. package/dist/components/Avatar/AvatarGroup.js +9 -10
  72. package/dist/components/Avatar/AvatarGroup.stories.js +9 -20
  73. package/dist/components/Button/Button.js +4 -15
  74. package/dist/components/Button/Button.styles.js +1 -1
  75. package/dist/components/Button/Buttons.stories.js +18 -29
  76. package/dist/components/Calendar/Calendar.js +3 -14
  77. package/dist/components/Calendar/Calendar.stories.js +6 -17
  78. package/dist/components/Checkbox/Checkbox.js +3 -14
  79. package/dist/components/Checkbox/Checkbox.stories.js +12 -23
  80. package/dist/components/Collapsible/Collapsible.js +14 -17
  81. package/dist/components/Collapsible/Collapsible.stories.js +9 -20
  82. package/dist/components/Collapsible/Collapsible.styles.js +4 -4
  83. package/dist/components/Collapsible/CollapsibleContext.js +9 -10
  84. package/dist/components/DataTable/DataTable.js +25 -26
  85. package/dist/components/DataTable/DataTable.stories.js +10 -21
  86. package/dist/components/DatePicker/DatePicker.js +4 -20
  87. package/dist/components/DatePicker/DatePicker.stories.js +6 -17
  88. package/dist/components/Dialog/Dialog.js +22 -33
  89. package/dist/components/Dialog/Dialog.stories.js +8 -19
  90. package/dist/components/Dropdown/Dropdown.js +26 -37
  91. package/dist/components/Dropdown/Dropdown.stories.js +36 -55
  92. package/dist/components/Dropdown/Dropdown.styles.js +3 -3
  93. package/dist/components/Form/Form.js +26 -87
  94. package/dist/components/Form/Text.js +2 -3
  95. package/dist/components/Form/TextInput.js +2 -3
  96. package/dist/components/Icon/Icon.js +37 -0
  97. package/dist/components/Icon/Icon.stories.js +356 -0
  98. package/dist/components/Icon/Icon.styles.js +25 -0
  99. package/dist/components/Input/Input.js +9 -20
  100. package/dist/components/Input/Input.stories.js +6 -17
  101. package/dist/components/Input/Input.styles.js +1 -1
  102. package/dist/components/Label/Label.js +3 -14
  103. package/dist/components/Label/Label.stories.js +5 -16
  104. package/dist/components/Label/Label.styles.js +1 -1
  105. package/dist/components/Loading/Loading.js +5 -17
  106. package/dist/components/Loading/Loading.stories.js +6 -17
  107. package/dist/components/Navbar/Navbar.js +3 -4
  108. package/dist/components/Navbar/Navbar.stories.js +8 -19
  109. package/dist/components/Popover/Popover.js +5 -16
  110. package/dist/components/Popover/Popover.stories.js +5 -16
  111. package/dist/components/ProgressBar/ProgressBar.js +8 -9
  112. package/dist/components/ProgressBar/ProgressBar.stories.js +14 -27
  113. package/dist/components/RadioGroup/RadioGroup.js +6 -17
  114. package/dist/components/RadioGroup/RadioGroup.stories.js +9 -20
  115. package/dist/components/Search/Search.js +2 -13
  116. package/dist/components/Search/Search.stories.js +10 -21
  117. package/dist/components/Slider/Slider.js +22 -0
  118. package/dist/components/Slider/Slider.stories.js +33 -0
  119. package/dist/components/Switch/Switch.js +22 -0
  120. package/dist/components/Switch/Switch.stories.js +32 -0
  121. package/dist/components/Table/Datagrid.js +2 -3
  122. package/dist/components/Table/Table.js +24 -35
  123. package/dist/components/Table/Table.stories.js +5 -16
  124. package/dist/components/Tabs/Tabs.js +57 -10
  125. package/dist/components/Tabs/Tabs.stories.js +13 -24
  126. package/dist/components/Text/Text.js +19 -6
  127. package/dist/components/Text/Text.stories.js +12 -23
  128. package/dist/components/TextInput/TextInput.js +30 -41
  129. package/dist/components/TextInput/TextInput.stories.js +17 -28
  130. package/dist/components/TextInput/TextInput.styles.js +7 -7
  131. package/dist/components/ThemeToggle.js +3 -3
  132. package/dist/esm/bundle.css +185 -495
  133. package/dist/esm/bundle.js +3 -3
  134. package/dist/esm/bundle.js.map +1 -1
  135. package/dist/esm/types/components/ActionButton/ActionButton.stories.d.ts +7 -7
  136. package/dist/esm/types/components/Button/Button.d.ts +1 -1
  137. package/dist/esm/types/components/Button/Button.styles.d.ts +1 -1
  138. package/dist/esm/types/components/Button/Buttons.stories.d.ts +13 -13
  139. package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +60 -60
  140. package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +64 -64
  141. package/dist/esm/types/components/Icon/Icon.d.ts +11 -0
  142. package/dist/esm/types/components/Icon/Icon.stories.d.ts +508 -0
  143. package/dist/esm/types/components/Icon/Icon.styles.d.ts +4 -0
  144. package/dist/esm/types/components/Input/Input.stories.d.ts +115 -115
  145. package/dist/esm/types/components/Label/Label.stories.d.ts +51 -51
  146. package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +54 -54
  147. package/dist/esm/types/components/Search/Search.stories.d.ts +64 -64
  148. package/dist/esm/types/components/Slider/Slider.d.ts +5 -0
  149. package/dist/esm/types/components/Slider/Slider.stories.d.ts +303 -0
  150. package/dist/esm/types/components/Switch/Switch.d.ts +4 -0
  151. package/dist/esm/types/components/Switch/Switch.stories.d.ts +305 -0
  152. package/dist/esm/types/components/Table/Table.stories.d.ts +7 -7
  153. package/dist/esm/types/components/Tabs/Tabs.d.ts +12 -3
  154. package/dist/esm/types/components/Tabs/Tabs.stories.d.ts +18 -0
  155. package/dist/esm/types/components/Text/Text.d.ts +6 -5
  156. package/dist/esm/types/components/Text/Text.stories.d.ts +2 -10
  157. package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +62 -62
  158. package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +1 -1
  159. package/dist/esm/types/icons/heroIconConfig.d.ts +1 -0
  160. package/dist/esm/types/icons/iconConfig.d.ts +2 -0
  161. package/dist/esm/types/icons/iconRegistry.d.ts +19 -0
  162. package/dist/esm/types/icons/index.d.ts +1 -0
  163. package/dist/esm/types/icons/material-icon/outline/ChevronDownIcon.d.ts +3 -0
  164. package/dist/esm/types/icons/material-icon/outline/CollapseContentIcon.d.ts +3 -0
  165. package/dist/esm/types/icons/material-icon/outline/ContentCopyIcon.d.ts +3 -0
  166. package/dist/esm/types/icons/material-icon/outline/ContentPasteIcon.d.ts +3 -0
  167. package/dist/esm/types/icons/material-icon/outline/DataTableIcon.d.ts +3 -0
  168. package/dist/esm/types/icons/material-icon/outline/ExpandCircleDownIcon.d.ts +3 -0
  169. package/dist/esm/types/icons/material-icon/outline/ExpandCircleRightIcon.d.ts +3 -0
  170. package/dist/esm/types/icons/material-icon/outline/ExpandCircleUpIcon.d.ts +3 -0
  171. package/dist/esm/types/icons/material-icon/outline/ExpandContentIcon.d.ts +3 -0
  172. package/dist/esm/types/icons/material-icon/outline/InterestsIcon.d.ts +3 -0
  173. package/dist/esm/types/icons/material-icon/outline/SaveIcon.d.ts +3 -0
  174. package/dist/esm/types/icons/material-icon/outline/TableChartIcon.d.ts +3 -0
  175. package/dist/esm/types/icons/material-icon/outline/index.d.ts +12 -0
  176. package/dist/esm/types/icons/material-icon/solid/ChevronDownIcon.d.ts +3 -0
  177. package/dist/esm/types/icons/material-icon/solid/CollapseContentIcon.d.ts +3 -0
  178. package/dist/esm/types/icons/material-icon/solid/ContentCopyIcon.d.ts +3 -0
  179. package/dist/esm/types/icons/material-icon/solid/ContentPasteIcon.d.ts +3 -0
  180. package/dist/esm/types/icons/material-icon/solid/DataTableIcon.d.ts +3 -0
  181. package/dist/esm/types/icons/material-icon/solid/ExpandCircleDownIcon.d.ts +3 -0
  182. package/dist/esm/types/icons/material-icon/solid/ExpandCircleRightIcon.d.ts +3 -0
  183. package/dist/esm/types/icons/material-icon/solid/ExpandCircleUpIcon.d.ts +3 -0
  184. package/dist/esm/types/icons/material-icon/solid/ExpandContentIcon.d.ts +3 -0
  185. package/dist/esm/types/icons/material-icon/solid/InterestsIcon.d.ts +3 -0
  186. package/dist/esm/types/icons/material-icon/solid/SaveIcon.d.ts +3 -0
  187. package/dist/esm/types/icons/material-icon/solid/TableChartIcon.d.ts +3 -0
  188. package/dist/esm/types/icons/material-icon/solid/index.d.ts +12 -0
  189. package/dist/esm/types/icons/materialIconConfig.d.ts +1 -0
  190. package/dist/esm/types/icons/type.d.ts +8 -0
  191. package/dist/esm/types/icons/utils.d.ts +1 -0
  192. package/dist/esm/types/index.d.ts +4 -0
  193. package/dist/icons/heroIconConfig.js +13 -0
  194. package/dist/icons/iconConfig.js +2 -0
  195. package/dist/icons/iconRegistry.js +47 -0
  196. package/dist/icons/index.js +1 -0
  197. package/dist/icons/material-icon/outline/ChevronDownIcon.js +3 -0
  198. package/dist/icons/material-icon/outline/CollapseContentIcon.js +3 -0
  199. package/dist/icons/material-icon/outline/ContentCopyIcon.js +3 -0
  200. package/dist/icons/material-icon/outline/ContentPasteIcon.js +3 -0
  201. package/dist/icons/material-icon/outline/DataTableIcon.js +3 -0
  202. package/dist/icons/material-icon/outline/ExpandCircleDownIcon.js +3 -0
  203. package/dist/icons/material-icon/outline/ExpandCircleRightIcon.js +3 -0
  204. package/dist/icons/material-icon/outline/ExpandCircleUpIcon.js +3 -0
  205. package/dist/icons/material-icon/outline/ExpandContentIcon.js +3 -0
  206. package/dist/icons/material-icon/outline/InterestsIcon.js +3 -0
  207. package/dist/icons/material-icon/outline/SaveIcon.js +3 -0
  208. package/dist/icons/material-icon/outline/TableChartIcon.js +3 -0
  209. package/dist/icons/material-icon/outline/index.js +12 -0
  210. package/dist/icons/material-icon/solid/ChevronDownIcon.js +3 -0
  211. package/dist/icons/material-icon/solid/CollapseContentIcon.js +3 -0
  212. package/dist/icons/material-icon/solid/ContentCopyIcon.js +3 -0
  213. package/dist/icons/material-icon/solid/ContentPasteIcon.js +3 -0
  214. package/dist/icons/material-icon/solid/DataTableIcon.js +3 -0
  215. package/dist/icons/material-icon/solid/ExpandCircleDownIcon.js +3 -0
  216. package/dist/icons/material-icon/solid/ExpandCircleRightIcon.js +3 -0
  217. package/dist/icons/material-icon/solid/ExpandCircleUpIcon.js +3 -0
  218. package/dist/icons/material-icon/solid/ExpandContentIcon.js +3 -0
  219. package/dist/icons/material-icon/solid/InterestsIcon.js +3 -0
  220. package/dist/icons/material-icon/solid/SaveIcon.js +3 -0
  221. package/dist/icons/material-icon/solid/TableChartIcon.js +3 -0
  222. package/dist/icons/material-icon/solid/index.js +12 -0
  223. package/dist/icons/materialIconConfig.js +13 -0
  224. package/dist/icons/type.js +1 -0
  225. package/dist/icons/utils.js +6 -0
  226. package/dist/index.d.ts +35 -8
  227. package/dist/index.js +4 -0
  228. package/dist/src/theme/global.css +245 -619
  229. package/dist/stories/ColorGroupPreview.js +6 -9
  230. package/dist/stories/ColorPreview.js +1 -2
  231. package/dist/theme/main-preset.js +24 -0
  232. package/dist/theme/plugins/utilities/typography.js +9 -0
  233. package/dist/theme/presets/colors.js +8 -1
  234. package/dist/theme/tokens/color.css +1 -0
  235. package/dist/theme/tokens/typography.css +21 -0
  236. package/dist/utils/cn.js +1 -5
  237. package/dist/utils/datetime.js +12 -12
  238. package/package.json +3 -1
  239. package/src/components/ActionButton/ActionButton.stories.tsx +32 -13
  240. package/src/components/ActionButton/ActionButton.styles.ts +33 -8
  241. package/src/components/Button/Button.tsx +1 -4
  242. package/src/components/Collapsible/Collapsible.tsx +1 -1
  243. package/src/components/DataTable/DataTable.tsx +2 -2
  244. package/src/components/Icon/Icon.stories.tsx +450 -0
  245. package/src/components/Icon/Icon.styles.ts +26 -0
  246. package/src/components/Icon/Icon.tsx +67 -0
  247. package/src/components/Slider/Slider.stories.tsx +47 -0
  248. package/src/components/Slider/Slider.tsx +31 -0
  249. package/src/components/Switch/Switch.stories.tsx +46 -0
  250. package/src/components/Switch/Switch.tsx +32 -0
  251. package/src/components/Table/Table.tsx +2 -2
  252. package/src/components/Tabs/Tabs.tsx +100 -13
  253. package/src/components/Text/Text.tsx +35 -22
  254. package/src/icons/heroIconConfig.ts +23 -0
  255. package/src/icons/iconConfig.ts +2 -0
  256. package/src/icons/iconRegistry.ts +76 -0
  257. package/src/icons/index.ts +1 -0
  258. package/src/icons/material-icon/outline/ChevronDownIcon.tsx +22 -0
  259. package/src/icons/material-icon/outline/CollapseContentIcon.tsx +20 -0
  260. package/src/icons/material-icon/outline/ContentCopyIcon.tsx +20 -0
  261. package/src/icons/material-icon/outline/ContentPasteIcon.tsx +20 -0
  262. package/src/icons/material-icon/outline/DataTableIcon.tsx +20 -0
  263. package/src/icons/material-icon/outline/ExpandCircleDownIcon.tsx +20 -0
  264. package/src/icons/material-icon/outline/ExpandCircleRightIcon.tsx +20 -0
  265. package/src/icons/material-icon/outline/ExpandCircleUpIcon.tsx +20 -0
  266. package/src/icons/material-icon/outline/ExpandContentIcon.tsx +20 -0
  267. package/src/icons/material-icon/outline/InterestsIcon.tsx +20 -0
  268. package/src/icons/material-icon/outline/SaveIcon.tsx +20 -0
  269. package/src/icons/material-icon/outline/TableChartIcon.tsx +20 -0
  270. package/src/icons/material-icon/outline/index.ts +12 -0
  271. package/src/icons/material-icon/solid/ChevronDownIcon.tsx +22 -0
  272. package/src/icons/material-icon/solid/CollapseContentIcon.tsx +20 -0
  273. package/src/icons/material-icon/solid/ContentCopyIcon.tsx +20 -0
  274. package/src/icons/material-icon/solid/ContentPasteIcon.tsx +20 -0
  275. package/src/icons/material-icon/solid/DataTableIcon.tsx +20 -0
  276. package/src/icons/material-icon/solid/ExpandCircleDownIcon.tsx +20 -0
  277. package/src/icons/material-icon/solid/ExpandCircleRightIcon.tsx +20 -0
  278. package/src/icons/material-icon/solid/ExpandCircleUpIcon.tsx +20 -0
  279. package/src/icons/material-icon/solid/ExpandContentIcon.tsx +20 -0
  280. package/src/icons/material-icon/solid/InterestsIcon.tsx +20 -0
  281. package/src/icons/material-icon/solid/SaveIcon.tsx +20 -0
  282. package/src/icons/material-icon/solid/TableChartIcon.tsx +20 -0
  283. package/src/icons/material-icon/solid/index.ts +12 -0
  284. package/src/icons/materialIconConfig.tsx +23 -0
  285. package/src/icons/type.ts +11 -0
  286. package/src/icons/utils.ts +6 -0
  287. package/src/index.ts +5 -0
  288. package/src/theme/main-preset.js +24 -0
  289. package/src/theme/plugins/utilities/typography.js +9 -0
  290. package/src/theme/presets/colors.js +8 -1
  291. package/src/theme/tokens/color.css +1 -0
  292. package/src/theme/tokens/typography.css +21 -0
  293. package/dist/cjs/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
  294. package/dist/cjs/types/components/Button/Button.styles copy.d.ts +0 -7
  295. package/dist/components/ActionButton/ActionButton.styles copy.js +0 -90
  296. package/dist/components/Button/Button.styles copy.js +0 -210
  297. package/dist/esm/types/components/ActionButton/ActionButton.styles copy.d.ts +0 -6
  298. package/dist/esm/types/components/Button/Button.styles copy.d.ts +0 -7
  299. package/src/_theme/global copy.css +0 -761
  300. package/src/_theme/global.css +0 -39
  301. package/src/_theme/main-preset.js +0 -239
  302. package/src/_theme/plugins/utilities/typography.js +0 -81
  303. package/src/_theme/presets/colors copy 2.js +0 -319
  304. package/src/_theme/presets/colors copy.js +0 -229
  305. package/src/_theme/presets/colors.js +0 -94
  306. package/src/_theme/theme.d.ts +0 -69
  307. package/src/_theme/variables/base/button.css +0 -334
  308. package/src/_theme/variables/base/components copy.css +0 -19
  309. package/src/_theme/variables/default/colors.css +0 -292
  310. package/src/_theme/variables/default/typography.css +0 -178
  311. package/src/_theme/variables/xspector/colors.css +0 -468
  312. package/src/_theme/variables/xspector/typography.css +0 -178
  313. package/src/components/ActionButton/ActionButton.styles copy.ts +0 -95
  314. package/src/components/Button/Button.styles copy.ts +0 -214
@@ -1,334 +0,0 @@
1
-
2
- :root[data-theme="default"] {
3
- /* COLORS */
4
- --main-color-primary: #1e3249;
5
- --main-color-secondary: #ddcd00;
6
- --main-color-tertiary: #9e9e9e;
7
- --brand-colors-midnight-blue: #002038;
8
- --brand-colors-columbia-blue: #adcad6;
9
- --brand-colors-backgroud: #1e3249;
10
- --brand-colors-lemon-glacier: #f5ff00;
11
- --text-dark: #18283a;
12
- --text-medium: #4b5b6d;
13
- --text-light: #8e98a4;
14
- --text-grey-dark: #4f4f4f;
15
- --text-grey-medium: #7e7e7e;
16
- --text-grey-light: #9e9e9e;
17
- --text-white: #ffffff;
18
- --state-color-primary-default: #1e3249;
19
- --state-color-primary-hover: #35475b;
20
- --state-color-primary-stroke: rgba(30 50 73 / 0.64);
21
- --state-color-primary-hover-bg: rgba(30 50 73 / 0.08);
22
- --state-color-primary-pressed: #152333;
23
- --state-color-primary-active: #35475b;
24
- --state-color-primary-text-solid: #ffffff;
25
- --state-color-primary-text-outline: #1e3249;
26
- --state-color-primary-text-hover: #35475b;
27
- --state-color-primary-text-pressed: #152333;
28
- --state-color-secondary-default: #9b8f00;
29
- --state-color-secondary-hover: #b1a400;
30
- --state-color-secondary-stroke: rgba(155 143 0 / 0.64);
31
- --state-color-secondary-hover-bg: rgba(221 205 0 / 0.08);
32
- --state-color-secondary-pressed: #6f6700;
33
- --state-color-secondary-active: #b1a400;
34
- --state-color-secondary-text-solid: #ffffff;
35
- --state-color-secondary-text-outline: #9b8f00;
36
- --state-color-secondary-text-hover: #b1a400;
37
- --state-color-secondary-text-pressed: #6f6700;
38
- --state-color-tertiery-default: #4f4f4f;
39
- --state-color-tertiery-hover: #6f6f6f;
40
- --state-color-tertiery-stroke: rgba(79 79 79 / 0.48);
41
- --state-color-tertiery-hover-bg: rgba(158 158 158 / 0.08);
42
- --state-color-tertiery-pressed: #b1b1b1;
43
- --state-color-tertiery-active: #6f6f6f;
44
- --state-color-tertiery-text-solid: #ffffff;
45
- --state-color-tertiery-text-outline: #4f4f4f;
46
- --state-color-tertiery-text-hover: #6f6f6f;
47
- --state-color-tertiery-text-pressed: #b1b1b1;
48
- --state-color-info-default: #1b7df5;
49
- --state-color-info-hover: #2998ff;
50
- --state-color-info-stroke: rgba(41 152 255 / 0.48);
51
- --state-color-info-hover-bg: rgba(41 152 255 / 0.08);
52
- --state-color-info-pressed: #1752b6;
53
- --state-color-info-active: #2998ff;
54
- --state-color-info-text-solid: #ffffff;
55
- --state-color-info-text-outline: #1b7df5;
56
- --state-color-info-text-hover: #2998ff;
57
- --state-color-info-text-pressed: #1752b6;
58
- --state-color-success-default: #319917;
59
- --state-color-success-hover: #44c022;
60
- --state-color-success-stroke: rgba(68 192 34 / 0.48);
61
- --state-color-success-hover-bg: rgba(84 214 44 / 0.08);
62
- --state-color-success-pressed: #235d17;
63
- --state-color-success-active: #44c022;
64
- --state-color-success-text-solid: #ffffff;
65
- --state-color-success-text-outline: #319917;
66
- --state-color-success-text-hover: #44c022;
67
- --state-color-success-text-pressed: #235d17;
68
- --state-color-warning-default: #ffc107;
69
- --state-color-warning-hover: #ffdf1b;
70
- --state-color-warning-stroke: rgba(255 223 27 / 0.48);
71
- --state-color-warning-hover-bg: rgba(255 193 7 / 0.08);
72
- --state-color-warning-pressed: #985108;
73
- --state-color-warning-active: #ffc107;
74
- --state-color-warning-text-solid: #1e3249;
75
- --state-color-warning-text-outline: #ffc107;
76
- --state-color-warning-text-hover: #ffdf1b;
77
- --state-color-warning-text-pressed: #985108;
78
- --state-color-error-default: #ed2f15;
79
- --state-color-error-hover: #ff4d35;
80
- --state-color-error-stroke: rgba(237 47 21 / 0.64);
81
- --state-color-error-hover-bg: rgba(255 77 53 / 0.08);
82
- --state-color-error-pressed: #a5210f;
83
- --state-color-error-active: #ff4d35;
84
- --state-color-error-text-solid: #ffffff;
85
- --state-color-error-text-outline: #ed2f15;
86
- --state-color-error-text-hover: #ff4d35;
87
- --state-color-error-text-pressed: #a5210f;
88
- --state-color-disable-solid: #d3dadf;
89
- --state-color-disable-outline: #9dabb5;
90
- --primary-ramps-primary-5: #f4f5f6;
91
- --primary-ramps-primary-10: #e8eaed;
92
- --primary-ramps-primary-20: #d2d6db;
93
- --primary-ramps-primary-30: #bbc1c8;
94
- --primary-ramps-primary-40: #a5adb6;
95
- --primary-ramps-primary-50: #8e98a4;
96
- --primary-ramps-primary-60: #788492;
97
- --primary-ramps-primary-70: #627080;
98
- --primary-ramps-primary-80: #4b5b6d;
99
- --primary-ramps-primary-90: #35475b;
100
- --primary-ramps-primary-100: #1e3249;
101
- --primary-ramps-primary-110: #1b2d42;
102
- --primary-ramps-primary-120: #18283a;
103
- --primary-ramps-primary-130: #152333;
104
- --primary-ramps-primary-140: #121e2c;
105
- --primary-ramps-primary-150: #0f1925;
106
- --secondary-ramps-secondary-5: #fdfcf2;
107
- --secondary-ramps-secondary-10: #fcfae5;
108
- --secondary-ramps-secondary-20: #f8f5cc;
109
- --secondary-ramps-secondary-30: #f5f0b2;
110
- --secondary-ramps-secondary-40: #f1eb99;
111
- --secondary-ramps-secondary-50: #eee680;
112
- --secondary-ramps-secondary-60: #ebe166;
113
- --secondary-ramps-secondary-70: #e7dc4d;
114
- --secondary-ramps-secondary-80: #e4d733;
115
- --secondary-ramps-secondary-90: #e0d21a;
116
- --secondary-ramps-secondary-100: #ddcd00;
117
- --secondary-ramps-secondary-110: #c7b800;
118
- --secondary-ramps-secondary-120: #b1a400;
119
- --secondary-ramps-secondary-130: #9b8f00;
120
- --secondary-ramps-secondary-140: #857b00;
121
- --secondary-ramps-secondary-150: #6f6700;
122
- --tertiary-ramps-tertiary-5: #fafafa;
123
- --tertiary-ramps-tertiary-10: #f5f5f5;
124
- --tertiary-ramps-tertiary-20: #ececec;
125
- --tertiary-ramps-tertiary-30: #e2e2e2;
126
- --tertiary-ramps-tertiary-40: #d8d8d8;
127
- --tertiary-ramps-tertiary-50: #cfcfcf;
128
- --tertiary-ramps-tertiary-60: #c5c5c5;
129
- --tertiary-ramps-tertiary-70: #bbbbbb;
130
- --tertiary-ramps-tertiary-80: #b1b1b1;
131
- --tertiary-ramps-tertiary-90: #a8a8a8;
132
- --tertiary-ramps-tertiary-100: #9e9e9e;
133
- --tertiary-ramps-tertiary-110: #8e8e8e;
134
- --tertiary-ramps-tertiary-120: #7e7e7e;
135
- --tertiary-ramps-tertiary-130: #6f6f6f;
136
- --tertiary-ramps-tertiary-140: #5f5f5f;
137
- --tertiary-ramps-tertiary-150: #4f4f4f;
138
- --grey-grey-5: #fafafa;
139
- --grey-grey-10: #f5f5f5;
140
- --grey-grey-20: #ececec;
141
- --grey-grey-30: #e2e2e2;
142
- --grey-grey-40: #d8d8d8;
143
- --grey-grey-50: #cfcfcf;
144
- --grey-grey-60: #c5c5c5;
145
- --grey-grey-70: #bbbbbb;
146
- --grey-grey-80: #b1b1b1;
147
- --grey-grey-90: #a8a8a8;
148
- --grey-grey-100: #9e9e9e;
149
- --grey-grey-110: #8e8e8e;
150
- --grey-grey-120: #7e7e7e;
151
- --grey-grey-130: #6f6f6f;
152
- --grey-grey-140: #5f5f5f;
153
- --grey-grey-150: #4f4f4f;
154
- --grey2-grey2-50: #f8fafa;
155
- --grey2-grey2-100: #f2f5f5;
156
- --grey2-grey2-200: #e7ebed;
157
- --grey2-grey2-300: #d3dadf;
158
- --grey2-grey2-400: #bac5cb;
159
- --grey2-grey2-500: #9dabb5;
160
- --grey2-grey2-600: #919eab;
161
- --grey2-grey2-700: #72808f;
162
- --grey2-grey2-800: #606b77;
163
- --grey2-grey2-900: #4f5863;
164
- --grey2-grey2-950: #343b41;
165
- --info-info-50: #eef8ff;
166
- --info-info-100: #d9efff;
167
- --info-info-200: #bce4ff;
168
- --info-info-300: #8ed5ff;
169
- --info-info-400: #59bbff;
170
- --info-info-500: #2998ff;
171
- --info-info-600: #1b7df5;
172
- --info-info-700: #1466e1;
173
- --info-info-800: #1752b6;
174
- --info-info-900: #19478f;
175
- --info-info-950: #142c57;
176
- --success-success-50: #effce9;
177
- --success-success-100: #daf9ce;
178
- --success-success-200: #b8f3a3;
179
- --success-success-300: #8ce86e;
180
- --success-success-400: #54d62c;
181
- --success-success-500: #44c022;
182
- --success-success-600: #319917;
183
- --success-success-700: #277516;
184
- --success-success-800: #235d17;
185
- --success-success-900: #214f18;
186
- --success-success-950: #0c2b08;
187
- --warning-warning-50: #ffffea;
188
- --warning-warning-100: #fffbc5;
189
- --warning-warning-200: #fff885;
190
- --warning-warning-300: #ffee46;
191
- --warning-warning-400: #ffdf1b;
192
- --warning-warning-500: #ffc107;
193
- --warning-warning-600: #e29400;
194
- --warning-warning-700: #bb6902;
195
- --warning-warning-800: #985108;
196
- --warning-warning-900: #7c420b;
197
- --warning-warning-950: #482200;
198
- --error-error-50: #fff3f1;
199
- --error-error-100: #ffe3df;
200
- --error-error-200: #ffccc5;
201
- --error-error-300: #ffa99d;
202
- --error-error-400: #ff7664;
203
- --error-error-500: #ff4d35;
204
- --error-error-600: #ed2f15;
205
- --error-error-700: #c8230d;
206
- --error-error-800: #a5210f;
207
- --error-error-900: #882214;
208
- --error-error-950: #4b0c04;
209
- --input-color-default-text: #9e9e9e;
210
- --input-color-default-stroke: #cfcfcf;
211
- --input-color-filled-text: #4f4f4f;
212
- --input-color-active-stroke: #9e9e9e;
213
- --input-color-disable-text: #919eab;
214
- --input-color-disable-stroke: #e7ebed;
215
- --input-color-disable-bg: #f2f5f5;
216
- --input-color-label-bg: #2d2e30;
217
- --input-color-error: #ed2f15;
218
- --main-transparency-primary-8: rgba(30 50 73 / 0.08);
219
- --main-transparency-primary-12: rgba(30 50 73 / 0.12);
220
- --main-transparency-primary-16: rgba(30 50 73 / 0.16);
221
- --main-transparency-primary-24: rgba(30 50 73 / 0.24);
222
- --main-transparency-primary-32: rgba(30 50 73 / 0.32);
223
- --main-transparency-primary-48: rgba(30 50 73 / 0.48);
224
- --main-transparency-secondary-8: rgba(221 205 0 / 0.08);
225
- --main-transparency-secondary-12: rgba(221 205 0 / 0.12);
226
- --main-transparency-secondary-16: rgba(221 205 0 / 0.16);
227
- --main-transparency-secondary-24: rgba(221 205 0 / 0.24);
228
- --main-transparency-secondary-32: rgba(221 205 0 / 0.32);
229
- --main-transparency-secondary-48: rgba(221 205 0 / 0.48);
230
- --main-transparency-tertiary-8: rgba(158 158 158 / 0.08);
231
- --main-transparency-tertiary-12: rgba(158 158 158 / 0.12);
232
- --main-transparency-tertiary-16: rgba(158 158 158 / 0.16);
233
- --main-transparency-tertiary-24: rgba(158 158 158 / 0.24);
234
- --main-transparency-tertiary-32: rgba(158 158 158 / 0.32);
235
- --main-transparency-tertiary-48: rgba(158 158 158 / 0.48);
236
- --other-transparency-info-8: rgba(41 152 255 / 0.08);
237
- --other-transparency-info-12: rgba(41 152 255 / 0.12);
238
- --other-transparency-info-16: rgba(41 152 255 / 0.16);
239
- --other-transparency-info-24: rgba(41 152 255 / 0.24);
240
- --other-transparency-info-32: rgba(41 152 255 / 0.32);
241
- --other-transparency-info-48: rgba(41 152 255 / 0.48);
242
- --other-transparency-success-8: rgba(84 214 44 / 0.08);
243
- --other-transparency-success-12: rgba(84 214 44 / 0.12);
244
- --other-transparency-success-16: rgba(84 214 44 / 0.16);
245
- --other-transparency-success-24: rgba(84 214 44 / 0.24);
246
- --other-transparency-success-32: rgba(84 214 44 / 0.32);
247
- --other-transparency-success-48: rgba(84 214 44 / 0.48);
248
- --other-transparency-warning-8: rgba(255 193 7 / 0.08);
249
- --other-transparency-warning-12: rgba(255 193 7 / 0.12);
250
- --other-transparency-warning-16: rgba(255 193 7 / 0.16);
251
- --other-transparency-warning-24: rgba(255 193 7 / 0.24);
252
- --other-transparency-warning-32: rgba(255 193 7 / 0.32);
253
- --other-transparency-warning-48: rgba(255 193 7 / 0.48);
254
- --other-transparency-error-8: rgba(255 72 66 / 0.08);
255
- --other-transparency-error-12: rgba(255 72 66 / 0.12);
256
- --other-transparency-error-16: rgba(255 72 66 / 0.16);
257
- --other-transparency-error-24: rgba(255 72 66 / 0.24);
258
- --other-transparency-error-32: rgba(255 72 66 / 0.32);
259
- --other-transparency-error-48: rgba(255 72 66 / 0.48);
260
- --other-transparency-grey-8: rgba(158 158 158 / 0.08);
261
- --other-transparency-grey-12: rgba(158 158 158 / 0.12);
262
- --other-transparency-grey-16: rgba(158 158 158 / 0.16);
263
- --other-transparency-grey-24: rgba(158 158 158 / 0.24);
264
- --other-transparency-grey-32: rgba(158 158 158 / 0.32);
265
- --other-transparency-grey-48: rgba(158 158 158 / 0.48);
266
- --other-transparency-grey2-8: rgba(145 158 171 / 0.08);
267
- --other-transparency-grey2-12: rgba(145 158 171 / 0.12);
268
- --other-transparency-grey2-16: rgba(145 158 171 / 0.16);
269
- --other-transparency-grey2-24: rgba(145 158 171 / 0.24);
270
- --other-transparency-grey2-32: rgba(145 158 171 / 0.32);
271
- --other-transparency-grey2-48: rgba(145 158 171 / 0.48);
272
- --other-transparency-white-08: rgba(255 255 255 / 0.08);
273
- --other-transparency-white-12: rgba(255 255 255 / 0.12);
274
- --other-transparency-white-16: rgba(255 255 255 / 0.16);
275
- --other-transparency-white-24: rgba(255 255 255 / 0.24);
276
- --other-transparency-white-32: rgba(255 255 255 / 0.32);
277
- --other-transparency-white-48: rgba(255 255 255 / 0.48);
278
- --other-transparency-black-08: rgba(0 0 0 / 0.08);
279
- --other-transparency-black-12: rgba(0 0 0 / 0.12);
280
- --other-transparency-black-16: rgba(0 0 0 / 0.16);
281
- --other-transparency-black-24: rgba(0 0 0 / 0.24);
282
- --other-transparency-black-32: rgba(0 0 0 / 0.32);
283
- --other-transparency-black-48: rgba(0 0 0 / 0.48);
284
- --base-color-bg: #ffffff;
285
- --base-color-bg2: #f5f5f5;
286
- --base-color-bg3: #d8d8d8;
287
- --base-color-workspace-stroke: #e2e2e2;
288
- --base-color-popup: #ffffff;
289
- --base-color-popup-hightlight: #343638;
290
- --base-color-popup-curtain: rgba(0 0 0 / 0.6);
291
- --common-white: #ffffff;
292
- --common-black: #000000;
293
-
294
- //------------------------- Mapping ------------------------
295
-
296
- // Colors base
297
-
298
- /* Button Modes */
299
- --btn-mode-solid: var(--color-default);
300
- --btn-mode-outline: transparent;
301
- --btn-mode-flat: transparent;
302
- --btn-mode-link: transparent;
303
-
304
- /* Solid Button States */
305
- --btn-solid-default-bg: var(--btn-mode-solid);
306
- --btn-solid-default-color: #fff;
307
- --btn-solid-default-border: 1px solid var(--btn-mode-solid);
308
-
309
- --btn-solid-hover-bg: var(--btn-mode-solid);
310
- --btn-solid-hover-color: #fff;
311
- --btn-solid-hover-border: 1px solid var(--btn-mode-solid);
312
-
313
- --btn-solid-active-bg: var(--btn-mode-solid);
314
- --btn-solid-active-color: #fff;
315
- --btn-solid-active-border: 1px solid var(--btn-mode-solid);
316
-
317
- /* Outline Button States */
318
- --btn-outline-default-bg: var(--btn-mode-outline);
319
- --btn-outline-default-color: var(--btn-mode-solid);
320
- --btn-outline-default-border: 1px solid var(--btn-mode-solid);
321
-
322
- --btn-outline-hover-bg: rgba(0, 0, 0, 0.1); /* Different from solid hover */
323
- --btn-outline-hover-color: var(--btn-mode-solid);
324
- --btn-outline-hover-border: 1px solid var(--btn-mode-solid);
325
-
326
- --btn-outline-active-bg: rgba(0, 0, 0, 0.2); /* Different from solid active */
327
- --btn-outline-active-color: var(--btn-mode-solid);
328
- --btn-outline-active-border: 1px solid var(--btn-mode-solid);
329
-
330
- /* Disabled State (Shared) */
331
- --btn-disabled-bg: #e0e0e0;
332
- --btn-disabled-color: #a0a0a0;
333
- --btn-disabled-border: 1px solid #e0e0e0;
334
- }
@@ -1,19 +0,0 @@
1
-
2
- .button {
3
- --#{$prefix}btn-padding-x: #{$btn-padding-x};
4
- --#{$prefix}btn-padding-y: #{$btn-padding-y};
5
- --#{$prefix}btn-font-family: #{$btn-font-family};
6
- @include rfs($btn-font-size, --#{$prefix}btn-font-size);
7
- --#{$prefix}btn-font-weight: #{$btn-font-weight};
8
- --#{$prefix}btn-line-height: #{$btn-line-height};
9
- --#{$prefix}btn-color: #{$btn-color};
10
- --#{$prefix}btn-bg: transparent;
11
- --#{$prefix}btn-border-width: #{$btn-border-width};
12
- --#{$prefix}btn-border-color: transparent;
13
- --#{$prefix}btn-border-radius: #{$btn-border-radius};
14
- --#{$prefix}btn-hover-border-color: transparent;
15
- --#{$prefix}btn-box-shadow: #{$btn-box-shadow};
16
- --#{$prefix}btn-disabled-opacity: #{$btn-disabled-opacity};
17
- --#{$prefix}btn-focus-box-shadow: 0 0 0 #{$btn-focus-width} rgba(var(--#{$prefix}btn-focus-shadow-rgb), .5);
18
-
19
- }
@@ -1,292 +0,0 @@
1
- :root {
2
- /* COLORS */
3
- --main-color-primary: #1e3249;
4
- --main-color-secondary: #ddcd00;
5
- --main-color-tertiary: #9e9e9e;
6
- --brand-colors-midnight-blue: #002038;
7
- --brand-colors-columbia-blue: #adcad6;
8
- --brand-colors-backgroud: #1e3249;
9
- --brand-colors-lemon-glacier: #f5ff00;
10
- --text-dark: #18283a;
11
- --text-medium: #4b5b6d;
12
- --text-light: #8e98a4;
13
- --text-grey-dark: #4f4f4f;
14
- --text-grey-medium: #7e7e7e;
15
- --text-grey-light: #9e9e9e;
16
- --text-white: #ffffff;
17
- --state-color-primary-default: #1e3249;
18
- --state-color-primary-hover: #35475b;
19
- --state-color-primary-stroke: rgba(30 50 73 / 0.64);
20
- --state-color-primary-hover-bg: rgba(30 50 73 / 0.08);
21
- --state-color-primary-pressed: #152333;
22
- --state-color-primary-active: #35475b;
23
- --state-color-primary-text-solid: #ffffff;
24
- --state-color-primary-text-outline: #1e3249;
25
- --state-color-primary-text-hover: #35475b;
26
- --state-color-primary-text-pressed: #152333;
27
- --state-color-secondary-default: #9b8f00;
28
- --state-color-secondary-hover: #b1a400;
29
- --state-color-secondary-stroke: rgba(155 143 0 / 0.64);
30
- --state-color-secondary-hover-bg: rgba(221 205 0 / 0.08);
31
- --state-color-secondary-pressed: #6f6700;
32
- --state-color-secondary-active: #b1a400;
33
- --state-color-secondary-text-solid: #ffffff;
34
- --state-color-secondary-text-outline: #9b8f00;
35
- --state-color-secondary-text-hover: #b1a400;
36
- --state-color-secondary-text-pressed: #6f6700;
37
- --state-color-tertiery-default: #4f4f4f;
38
- --state-color-tertiery-hover: #6f6f6f;
39
- --state-color-tertiery-stroke: rgba(79 79 79 / 0.48);
40
- --state-color-tertiery-hover-bg: rgba(158 158 158 / 0.08);
41
- --state-color-tertiery-pressed: #b1b1b1;
42
- --state-color-tertiery-active: #6f6f6f;
43
- --state-color-tertiery-text-solid: #ffffff;
44
- --state-color-tertiery-text-outline: #4f4f4f;
45
- --state-color-tertiery-text-hover: #6f6f6f;
46
- --state-color-tertiery-text-pressed: #b1b1b1;
47
- --state-color-info-default: #1b7df5;
48
- --state-color-info-hover: #2998ff;
49
- --state-color-info-stroke: rgba(41 152 255 / 0.48);
50
- --state-color-info-hover-bg: rgba(41 152 255 / 0.08);
51
- --state-color-info-pressed: #1752b6;
52
- --state-color-info-active: #2998ff;
53
- --state-color-info-text-solid: #ffffff;
54
- --state-color-info-text-outline: #1b7df5;
55
- --state-color-info-text-hover: #2998ff;
56
- --state-color-info-text-pressed: #1752b6;
57
- --state-color-success-default: #319917;
58
- --state-color-success-hover: #44c022;
59
- --state-color-success-stroke: rgba(68 192 34 / 0.48);
60
- --state-color-success-hover-bg: rgba(84 214 44 / 0.08);
61
- --state-color-success-pressed: #235d17;
62
- --state-color-success-active: #44c022;
63
- --state-color-success-text-solid: #ffffff;
64
- --state-color-success-text-outline: #319917;
65
- --state-color-success-text-hover: #44c022;
66
- --state-color-success-text-pressed: #235d17;
67
- --state-color-warning-default: #ffc107;
68
- --state-color-warning-hover: #ffdf1b;
69
- --state-color-warning-stroke: rgba(255 223 27 / 0.48);
70
- --state-color-warning-hover-bg: rgba(255 193 7 / 0.08);
71
- --state-color-warning-pressed: #985108;
72
- --state-color-warning-active: #ffc107;
73
- --state-color-warning-text-solid: #1e3249;
74
- --state-color-warning-text-outline: #ffc107;
75
- --state-color-warning-text-hover: #ffdf1b;
76
- --state-color-warning-text-pressed: #985108;
77
- --state-color-error-default: #ed2f15;
78
- --state-color-error-hover: #ff4d35;
79
- --state-color-error-stroke: rgba(237 47 21 / 0.64);
80
- --state-color-error-hover-bg: rgba(255 77 53 / 0.08);
81
- --state-color-error-pressed: #a5210f;
82
- --state-color-error-active: #ff4d35;
83
- --state-color-error-text-solid: #ffffff;
84
- --state-color-error-text-outline: #ed2f15;
85
- --state-color-error-text-hover: #ff4d35;
86
- --state-color-error-text-pressed: #a5210f;
87
- --state-color-disable-solid: #d3dadf;
88
- --state-color-disable-outline: #9dabb5;
89
- --primary-ramps-primary-5: #f4f5f6;
90
- --primary-ramps-primary-10: #e8eaed;
91
- --primary-ramps-primary-20: #d2d6db;
92
- --primary-ramps-primary-30: #bbc1c8;
93
- --primary-ramps-primary-40: #a5adb6;
94
- --primary-ramps-primary-50: #8e98a4;
95
- --primary-ramps-primary-60: #788492;
96
- --primary-ramps-primary-70: #627080;
97
- --primary-ramps-primary-80: #4b5b6d;
98
- --primary-ramps-primary-90: #35475b;
99
- --primary-ramps-primary-100: #1e3249;
100
- --primary-ramps-primary-110: #1b2d42;
101
- --primary-ramps-primary-120: #18283a;
102
- --primary-ramps-primary-130: #152333;
103
- --primary-ramps-primary-140: #121e2c;
104
- --primary-ramps-primary-150: #0f1925;
105
- --secondary-ramps-secondary-5: #fdfcf2;
106
- --secondary-ramps-secondary-10: #fcfae5;
107
- --secondary-ramps-secondary-20: #f8f5cc;
108
- --secondary-ramps-secondary-30: #f5f0b2;
109
- --secondary-ramps-secondary-40: #f1eb99;
110
- --secondary-ramps-secondary-50: #eee680;
111
- --secondary-ramps-secondary-60: #ebe166;
112
- --secondary-ramps-secondary-70: #e7dc4d;
113
- --secondary-ramps-secondary-80: #e4d733;
114
- --secondary-ramps-secondary-90: #e0d21a;
115
- --secondary-ramps-secondary-100: #ddcd00;
116
- --secondary-ramps-secondary-110: #c7b800;
117
- --secondary-ramps-secondary-120: #b1a400;
118
- --secondary-ramps-secondary-130: #9b8f00;
119
- --secondary-ramps-secondary-140: #857b00;
120
- --secondary-ramps-secondary-150: #6f6700;
121
- --tertiary-ramps-tertiary-5: #fafafa;
122
- --tertiary-ramps-tertiary-10: #f5f5f5;
123
- --tertiary-ramps-tertiary-20: #ececec;
124
- --tertiary-ramps-tertiary-30: #e2e2e2;
125
- --tertiary-ramps-tertiary-40: #d8d8d8;
126
- --tertiary-ramps-tertiary-50: #cfcfcf;
127
- --tertiary-ramps-tertiary-60: #c5c5c5;
128
- --tertiary-ramps-tertiary-70: #bbbbbb;
129
- --tertiary-ramps-tertiary-80: #b1b1b1;
130
- --tertiary-ramps-tertiary-90: #a8a8a8;
131
- --tertiary-ramps-tertiary-100: #9e9e9e;
132
- --tertiary-ramps-tertiary-110: #8e8e8e;
133
- --tertiary-ramps-tertiary-120: #7e7e7e;
134
- --tertiary-ramps-tertiary-130: #6f6f6f;
135
- --tertiary-ramps-tertiary-140: #5f5f5f;
136
- --tertiary-ramps-tertiary-150: #4f4f4f;
137
- --grey-grey-5: #fafafa;
138
- --grey-grey-10: #f5f5f5;
139
- --grey-grey-20: #ececec;
140
- --grey-grey-30: #e2e2e2;
141
- --grey-grey-40: #d8d8d8;
142
- --grey-grey-50: #cfcfcf;
143
- --grey-grey-60: #c5c5c5;
144
- --grey-grey-70: #bbbbbb;
145
- --grey-grey-80: #b1b1b1;
146
- --grey-grey-90: #a8a8a8;
147
- --grey-grey-100: #9e9e9e;
148
- --grey-grey-110: #8e8e8e;
149
- --grey-grey-120: #7e7e7e;
150
- --grey-grey-130: #6f6f6f;
151
- --grey-grey-140: #5f5f5f;
152
- --grey-grey-150: #4f4f4f;
153
- --grey2-grey2-50: #f8fafa;
154
- --grey2-grey2-100: #f2f5f5;
155
- --grey2-grey2-200: #e7ebed;
156
- --grey2-grey2-300: #d3dadf;
157
- --grey2-grey2-400: #bac5cb;
158
- --grey2-grey2-500: #9dabb5;
159
- --grey2-grey2-600: #919eab;
160
- --grey2-grey2-700: #72808f;
161
- --grey2-grey2-800: #606b77;
162
- --grey2-grey2-900: #4f5863;
163
- --grey2-grey2-950: #343b41;
164
- --info-info-50: #eef8ff;
165
- --info-info-100: #d9efff;
166
- --info-info-200: #bce4ff;
167
- --info-info-300: #8ed5ff;
168
- --info-info-400: #59bbff;
169
- --info-info-500: #2998ff;
170
- --info-info-600: #1b7df5;
171
- --info-info-700: #1466e1;
172
- --info-info-800: #1752b6;
173
- --info-info-900: #19478f;
174
- --info-info-950: #142c57;
175
- --success-success-50: #effce9;
176
- --success-success-100: #daf9ce;
177
- --success-success-200: #b8f3a3;
178
- --success-success-300: #8ce86e;
179
- --success-success-400: #54d62c;
180
- --success-success-500: #44c022;
181
- --success-success-600: #319917;
182
- --success-success-700: #277516;
183
- --success-success-800: #235d17;
184
- --success-success-900: #214f18;
185
- --success-success-950: #0c2b08;
186
- --warning-warning-50: #ffffea;
187
- --warning-warning-100: #fffbc5;
188
- --warning-warning-200: #fff885;
189
- --warning-warning-300: #ffee46;
190
- --warning-warning-400: #ffdf1b;
191
- --warning-warning-500: #ffc107;
192
- --warning-warning-600: #e29400;
193
- --warning-warning-700: #bb6902;
194
- --warning-warning-800: #985108;
195
- --warning-warning-900: #7c420b;
196
- --warning-warning-950: #482200;
197
- --error-error-50: #fff3f1;
198
- --error-error-100: #ffe3df;
199
- --error-error-200: #ffccc5;
200
- --error-error-300: #ffa99d;
201
- --error-error-400: #ff7664;
202
- --error-error-500: #ff4d35;
203
- --error-error-600: #ed2f15;
204
- --error-error-700: #c8230d;
205
- --error-error-800: #a5210f;
206
- --error-error-900: #882214;
207
- --error-error-950: #4b0c04;
208
- --input-color-default-text: #9e9e9e;
209
- --input-color-default-stroke: #cfcfcf;
210
- --input-color-filled-text: #4f4f4f;
211
- --input-color-active-stroke: #9e9e9e;
212
- --input-color-disable-text: #919eab;
213
- --input-color-disable-stroke: #e7ebed;
214
- --input-color-disable-bg: #f2f5f5;
215
- --input-color-label-bg: #2d2e30;
216
- --input-color-error: #ed2f15;
217
- --main-transparency-primary-8: rgba(30 50 73 / 0.08);
218
- --main-transparency-primary-12: rgba(30 50 73 / 0.12);
219
- --main-transparency-primary-16: rgba(30 50 73 / 0.16);
220
- --main-transparency-primary-24: rgba(30 50 73 / 0.24);
221
- --main-transparency-primary-32: rgba(30 50 73 / 0.32);
222
- --main-transparency-primary-48: rgba(30 50 73 / 0.48);
223
- --main-transparency-secondary-8: rgba(221 205 0 / 0.08);
224
- --main-transparency-secondary-12: rgba(221 205 0 / 0.12);
225
- --main-transparency-secondary-16: rgba(221 205 0 / 0.16);
226
- --main-transparency-secondary-24: rgba(221 205 0 / 0.24);
227
- --main-transparency-secondary-32: rgba(221 205 0 / 0.32);
228
- --main-transparency-secondary-48: rgba(221 205 0 / 0.48);
229
- --main-transparency-tertiary-8: rgba(158 158 158 / 0.08);
230
- --main-transparency-tertiary-12: rgba(158 158 158 / 0.12);
231
- --main-transparency-tertiary-16: rgba(158 158 158 / 0.16);
232
- --main-transparency-tertiary-24: rgba(158 158 158 / 0.24);
233
- --main-transparency-tertiary-32: rgba(158 158 158 / 0.32);
234
- --main-transparency-tertiary-48: rgba(158 158 158 / 0.48);
235
- --other-transparency-info-8: rgba(41 152 255 / 0.08);
236
- --other-transparency-info-12: rgba(41 152 255 / 0.12);
237
- --other-transparency-info-16: rgba(41 152 255 / 0.16);
238
- --other-transparency-info-24: rgba(41 152 255 / 0.24);
239
- --other-transparency-info-32: rgba(41 152 255 / 0.32);
240
- --other-transparency-info-48: rgba(41 152 255 / 0.48);
241
- --other-transparency-success-8: rgba(84 214 44 / 0.08);
242
- --other-transparency-success-12: rgba(84 214 44 / 0.12);
243
- --other-transparency-success-16: rgba(84 214 44 / 0.16);
244
- --other-transparency-success-24: rgba(84 214 44 / 0.24);
245
- --other-transparency-success-32: rgba(84 214 44 / 0.32);
246
- --other-transparency-success-48: rgba(84 214 44 / 0.48);
247
- --other-transparency-warning-8: rgba(255 193 7 / 0.08);
248
- --other-transparency-warning-12: rgba(255 193 7 / 0.12);
249
- --other-transparency-warning-16: rgba(255 193 7 / 0.16);
250
- --other-transparency-warning-24: rgba(255 193 7 / 0.24);
251
- --other-transparency-warning-32: rgba(255 193 7 / 0.32);
252
- --other-transparency-warning-48: rgba(255 193 7 / 0.48);
253
- --other-transparency-error-8: rgba(255 72 66 / 0.08);
254
- --other-transparency-error-12: rgba(255 72 66 / 0.12);
255
- --other-transparency-error-16: rgba(255 72 66 / 0.16);
256
- --other-transparency-error-24: rgba(255 72 66 / 0.24);
257
- --other-transparency-error-32: rgba(255 72 66 / 0.32);
258
- --other-transparency-error-48: rgba(255 72 66 / 0.48);
259
- --other-transparency-grey-8: rgba(158 158 158 / 0.08);
260
- --other-transparency-grey-12: rgba(158 158 158 / 0.12);
261
- --other-transparency-grey-16: rgba(158 158 158 / 0.16);
262
- --other-transparency-grey-24: rgba(158 158 158 / 0.24);
263
- --other-transparency-grey-32: rgba(158 158 158 / 0.32);
264
- --other-transparency-grey-48: rgba(158 158 158 / 0.48);
265
- --other-transparency-grey2-8: rgba(145 158 171 / 0.08);
266
- --other-transparency-grey2-12: rgba(145 158 171 / 0.12);
267
- --other-transparency-grey2-16: rgba(145 158 171 / 0.16);
268
- --other-transparency-grey2-24: rgba(145 158 171 / 0.24);
269
- --other-transparency-grey2-32: rgba(145 158 171 / 0.32);
270
- --other-transparency-grey2-48: rgba(145 158 171 / 0.48);
271
- --other-transparency-white-08: rgba(255 255 255 / 0.08);
272
- --other-transparency-white-12: rgba(255 255 255 / 0.12);
273
- --other-transparency-white-16: rgba(255 255 255 / 0.16);
274
- --other-transparency-white-24: rgba(255 255 255 / 0.24);
275
- --other-transparency-white-32: rgba(255 255 255 / 0.32);
276
- --other-transparency-white-48: rgba(255 255 255 / 0.48);
277
- --other-transparency-black-08: rgba(0 0 0 / 0.08);
278
- --other-transparency-black-12: rgba(0 0 0 / 0.12);
279
- --other-transparency-black-16: rgba(0 0 0 / 0.16);
280
- --other-transparency-black-24: rgba(0 0 0 / 0.24);
281
- --other-transparency-black-32: rgba(0 0 0 / 0.32);
282
- --other-transparency-black-48: rgba(0 0 0 / 0.48);
283
- --base-color-bg: #ffffff;
284
- --base-color-bg2: #f5f5f5;
285
- --base-color-bg3: #d8d8d8;
286
- --base-color-workspace-stroke: #e2e2e2;
287
- --base-color-popup: #ffffff;
288
- --base-color-popup-hightlight: #343638;
289
- --base-color-popup-curtain: rgba(0 0 0 / 0.6);
290
- --common-white: #ffffff;
291
- --common-black: #000000;
292
- }