@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,761 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @layer base {
6
- :roots {
7
- --white: 255 255 255; /* #ffffff */
8
- --black: 28 28 28; /* #1c1c1c */
9
-
10
- --theme-50: 232 242 255; /* #E8F2FF -> 232 242 255 */
11
- --theme-100: 213 230 255; /* #D5E6FF -> 213 230 255 */
12
- --theme-200: 179 207 255; /* #B3CFFF -> 179 207 255 */
13
- --theme-300: 136 174 255; /* #85AEFF -> 136 174 255 */
14
- --theme-400: 86 126 255; /* #567EFF -> 86 126 255 */
15
- --theme-500: 47 78 255; /* #2F4EFF -> 47 78 255 */
16
- --theme-600: 12 26 255; /* #0C1AFF -> 12 26 255 */
17
- --theme-700: 0 12 255; /* #000CFF -> 0 12 255 */
18
- --theme-800: 6 18 205; /* #0612CD -> 6 18 205 */
19
- --theme-900: 16 29 159; /* #101D9F -> 16 29 159 */
20
- --theme-default: var(--theme-100);
21
- --theme-foreground: var(--white);
22
-
23
- --primary-5: 242 242 246; /* #F2F2F6 */
24
- --primary-10: 230 230 236; /* #E6E6EC */
25
- --primary-20: 204 204 218; /* #CCCCDA */
26
- --primary-30: 179 179 199; /* #B3B3C7 */
27
- --primary-40: 153 153 180; /* #9999B4 */
28
- --primary-50: 128 128 161; /* #8080A1 */
29
- --primary-60: 103 103 143; /* #67678F */
30
- --primary-70: 77 77 124; /* #4D4D7C */
31
- --primary-80: 52 52 105; /* #343469 */
32
- --primary-90: 26 26 87; /* #1A1A57 */
33
- --primary-100: 1 1 68; /* #010144 */
34
- --primary-110: 1 1 61; /* #01013D */
35
- --primary-120: 1 1 54; /* #010136 */
36
- --primary-130: 1 1 48; /* #010130 */
37
- --primary-140: 1 1 41; /* #010129 */
38
- --primary-150: 1 1 34; /* #010122 */
39
- --primary-default: var(--primary-100);
40
- --primary-foreground: var(--white);
41
-
42
- --secondary-5: 254 254 255; /* #FEFEFF */
43
- --secondary-10: 253 254 255; /* #FDFEFF */
44
- --secondary-20: 251 252 255; /* #FBFCFF */
45
- --secondary-30: 249 251 255; /* #F9FBFF */
46
- --secondary-40: 247 249 255; /* #F7F9FF */
47
- --secondary-50: 245 248 255; /* #F5F8FF */
48
- --secondary-60: 242 247 255; /* #F2F7FF */
49
- --secondary-70: 240 245 255; /* #F0F5FF */
50
- --secondary-80: 238 244 255; /* #EEF4FF */
51
- --secondary-90: 236 242 255; /* #ECF2FF */
52
- --secondary-100: 234 241 255; /* #EAF1FF */
53
- --secondary-110: 211 217 229; /* #D3D9E5 */
54
- --secondary-120: 187 193 204; /* #BBC1CC */
55
- --secondary-130: 164 169 178; /* #A4A9B2 */
56
- --secondary-140: 140 145 153; /* #8C9199 */
57
- --secondary-150: 117 121 128; /* #757980 */
58
- --secondary-default: var(--secondary-100);
59
- --secondary-foreground: 1 1 68;
60
-
61
- --tertiary-5: 245 246 255; /* #F5F6FF */
62
- --tertiary-10: 234 237 255; /* #EAEDFF */
63
- --tertiary-20: 213 220 255; /* #D5DCFF */
64
- --tertiary-30: 193 202 255; /* #C1CAFF */
65
- --tertiary-40: 172 184 255; /* #ACB8FF */
66
- --tertiary-50: 151 166 255; /* #97A6FF */
67
- --tertiary-60: 132 149 255; /* #8295FF */
68
- --tertiary-70: 109 131 255; /* #6D83FF */
69
- --tertiary-80: 89 113 255; /* #5971FF */
70
- --tertiary-90: 68 96 255; /* #4460FF */
71
- --tertiary-100: 47 78 255; /* #2F4EFF */
72
- --tertiary-110: 42 70 229; /* #2A46E5 */
73
- --tertiary-120: 38 62 204; /* #263ECC */
74
- --tertiary-130: 33 55 178; /* #2137B2 */
75
- --tertiary-140: 28 47 153; /* #1C2F99 */
76
- --tertiary-150: 24 39 128; /* #182780 */
77
- --tertiary-default: var(--tertiary-100);
78
- --tertiary-foreground: var(--white);
79
-
80
- --grey-5: 250 250 250; /* #FAFAFA */
81
- --grey-10: 245 245 245; /* #F5F5F5 */
82
- --grey-20: 236 236 236; /* #ECECEC */
83
- --grey-30: 226 226 226; /* #E2E2E2 */
84
- --grey-40: 216 216 216; /* #D8D8D8 */
85
- --grey-50: 207 207 207; /* #CFCFCF */
86
- --grey-60: 197 197 197; /* #C5C5C5 */
87
- --grey-70: 187 187 187; /* #BBBBBB */
88
- --grey-80: 177 177 177; /* #B1B1B1 */
89
- --grey-90: 168 168 168; /* #A8A8A8 */
90
- --grey-100: 158 158 158; /* #9E9E9E */
91
- --grey-110: 142 142 142; /* #8E8E8E */
92
- --grey-120: 126 126 126; /* #7E7E7E */
93
- --grey-130: 111 111 111; /* #6F6F6F */
94
- --grey-140: 95 95 95; /* #5F5F5F */
95
- --grey-150: 79 79 79; /* #4F4F4F */
96
- --grey-default: var(--grey-100);
97
- --grey-foreground: 1 1 68;
98
-
99
- --grey2-100: 249 250 251; /* #F9FAFB */
100
- --grey2-200: 244 246 248; /* #F4F6F8 */
101
- --grey2-300: 223 227 232; /* #DFE3E8 */
102
- --grey2-400: 196 205 213; /* #C4CDD5 */
103
- --grey2-500: 145 158 171; /* #919EAB */
104
- --grey2-600: 99 115 129; /* #637381 */
105
- --grey2-700: 69 79 91; /* #454F5B */
106
- --grey2-800: 33 43 54; /* #212B36 */
107
- --grey2-900: 22 28 36; /* #161C24 */
108
- --grey-default: var(--grey-100);
109
- --grey-foreground: var(--white);
110
-
111
- --info-lighter: 208 242 255;
112
- --info-light: 116 202 255;
113
- --info-100: 41 152 255; /* #2998FF */
114
- --info-120: 33 122 204; /* #217ACC */
115
- --info-dark: 12 83 183;
116
- --info-darker: 4 41 122;
117
- --info-default: var(--info-100);
118
- --info-foreground: var(--white);
119
-
120
- --success-lighter: 233 252 212;
121
- --success-light: 170 242 127;
122
- --success-100: 84 214 44; /* #54D62C */
123
- --success-120: 67 171 35; /* #43AB23 */
124
- --success-dark: 34 154 22;
125
- --success-darker:8 102 13;
126
- --success-default: var(--success-100);
127
- --success-foreground: var(--white);
128
-
129
- --warning-lighter: 255 247 205;
130
- --warning-light:255 225 106;
131
- --warning-100: 255 193 7; /* #FFC107 */
132
- --warning-120: 204 154 6; /* #CC9A06 */
133
- --warning-dark: 183 129 3;
134
- --warning-darker: 122 79 1;
135
- --warning-default: var(--warning-100);
136
- --warning-foreground: var(--white);
137
-
138
- --error-lighter: 255 231 217;
139
- --error-light: 255 164 141;
140
- --error-100: 255 77 53; /* #FF4D35 */
141
- --error-120: 204 62 42; /* #CC3E2A */
142
- --error-dark: 183 33 54;
143
- --error-darker: 122 12 46;
144
- --error-default: var(--error-100);
145
- --error-foreground: var(--white);
146
-
147
- --main-transparent-primary: 1 1 68;
148
- --main-transparent-secondary: 234 241 255;
149
- --main-transparent-tertiary: 47 78 255;
150
-
151
- /* Button */
152
- --btn-rounded-sm: 10px;
153
- --btn-rounded-md: 12px;
154
- --btn-rounded-lg: 16px;
155
-
156
- /* Input */
157
- --input-default-text-color: 164 169 178;
158
- --input-default-stroke-color: 231 231 231;
159
-
160
- --input-active-text-color: 29 30 39;
161
- --input-active-stroke-color: 208 208 208;
162
-
163
- --input-disabled-text-color: 196 199 205;
164
- --input-disabled-stroke-color: 239 239 239;
165
- --input-disabled-background-color: 247 247 247;
166
-
167
- --input-label-background-color: 249 251 255;
168
-
169
- /* Text */
170
- --text-default-dark: 1 1 68;
171
- --text-default-medium: 47 78 255;
172
- --text-default-light: 213 230 255;
173
-
174
- --text-grey-dark: 29 30 39;
175
- --text-grey-medium: 117 121 128;
176
- --text-grey-light: 164 169 178;
177
- --text-white: 255 255 255;
178
-
179
- /* Other */
180
- --other-bg: var(--white);
181
- --other-bg-2: var(--white);
182
-
183
- /* Other/Popup */
184
- --popup-background: 249 251 255;
185
- /* Other/Popup Curtain */
186
- --popup-overlay: 0 0 0;
187
- --popup-overlay-alpha: 0.48;
188
- --popup-rounded: 24px;
189
-
190
- /* Navbar */
191
- --navbar-height: 58px;
192
- --navbar-bg-color: var(--primary-default);
193
- --navbar-text-color: var(--primary-foreground);
194
- --navbar-border-color: var(--primary-foreground);
195
- --navbar-gap: 16px;
196
-
197
- /* TODO for shadcn, wait for refactor */
198
- /* --background: 0 0% 100%; */
199
- --background: var(--brand-background);
200
- --foreground: var(--text-white:);
201
-
202
- --muted: 210 40% 96.1%;
203
- --muted-foreground: 215.4 16.3% 46.9%;
204
-
205
- --popover: 0 0% 100%;
206
- --popover-foreground: 222.2 47.4% 11.2%;
207
-
208
- --border: 214.3 31.8% 91.4%;
209
- --input: 214.3 31.8% 91.4%;
210
-
211
- --card: var(--white);
212
- --card-foreground: var(--primary);
213
-
214
- --primary: var(--primary-default);
215
-
216
- --secondary: var(--secondary-default);
217
-
218
- --accent: 210 40% 96.1%;
219
- --accent-foreground: 222.2 47.4% 11.2%;
220
-
221
- --destructive: 0 100% 50%;
222
- --destructive-foreground: 210 40% 98%;
223
-
224
- --ring: 215 20.2% 65.1%;
225
-
226
- --radius: 0.5rem;
227
- }
228
-
229
- :rootss {
230
- --white: 255 255 255; /* #ffffff */
231
- --black: 28 28 28; /* #1c1c1c */
232
-
233
- /* Text */
234
- --text-default-dark: 33 43 54;
235
- --text-default-medium: 99 115 129;
236
- --text-default-light: 145 158 171;
237
-
238
- --text-grey-dark: 126 126 126;
239
- --text-grey-medium: 170 170 170;
240
- --text-grey-light: 223 227 232;
241
- --text-white: 255 255 255;
242
-
243
- /* Main Colors */
244
- --brand-midmight-blue: 0 32 56;
245
- --brand-columbia-blue: 173 202 214;
246
- --brand-background: 30 50 73;
247
- --brand-lemon-glacier: 245 255 0;
248
-
249
- --theme-50: 232 242 255; /* #E8F2FF -> 232 242 255 */
250
- --theme-100: 213 230 255; /* #D5E6FF -> 213 230 255 */
251
- --theme-200: 179 207 255; /* #B3CFFF -> 179 207 255 */
252
- --theme-300: 136 174 255; /* #85AEFF -> 136 174 255 */
253
- --theme-400: 86 126 255; /* #567EFF -> 86 126 255 */
254
- --theme-500: 47 78 255; /* #2F4EFF -> 47 78 255 */
255
- --theme-600: 12 26 255; /* #0C1AFF -> 12 26 255 */
256
- --theme-700: 0 12 255; /* #000CFF -> 0 12 255 */
257
- --theme-800: 6 18 205; /* #0612CD -> 6 18 205 */
258
- --theme-900: 16 29 159; /* #101D9F -> 16 29 159 */
259
- --theme-default: var(--theme-100);
260
- --theme-foreground: var(--white);
261
-
262
- --primary-5: 253 252 242; /* #F2F2F6 */
263
- --primary-10: 252 250 229; /* #E6E6EC */
264
- --primary-20: 248 245 204; /* #CCCCDA */
265
- --primary-30: 245 240 178; /* #B3B3C7 */
266
- --primary-40: 241 235 153; /* #9999B4 */
267
- --primary-50: 238 230 128; /* #8080A1 */
268
- --primary-60: 235 225 102; /* #67678F */
269
- --primary-70: 231 220 77; /* #4D4D7C */
270
- --primary-80: 228 215 51; /* #343469 */
271
- --primary-90: 224 210 26; /* #1A1A57 */
272
- --primary-100: 221 205 0; /* #010144 */
273
- --primary-110: 199 184 0; /* #01013D */
274
- --primary-120: 177 164 0; /* #010136 */
275
- --primary-130: 155 143 0; /* #010130 */
276
- --primary-140: 133 123 0; /* #010129 */
277
- --primary-150: 111 103 0; /* #010122 */
278
- --primary-default: var(--primary-100);
279
- --primary-foreground: var(--text-default-dark);
280
-
281
- --secondary-5: 250 250 250; /* #FEFEFF */
282
- --secondary-10: 245 245 245; /* #FDFEFF */
283
- --secondary-20: 236 236 236; /* #FBFCFF */
284
- --secondary-30: 226 226 226; /* #F9FBFF */
285
- --secondary-40: 216 216 216; /* #F7F9FF */
286
- --secondary-50: 207 207 207;/* #F5F8FF */
287
- --secondary-60: 197 197 197; /* #F2F7FF */
288
- --secondary-70: 187 187 187; /* #F0F5FF */
289
- --secondary-80: 177 177 177; /* #EEF4FF */
290
- --secondary-90: 168 168 168; /* #ECF2FF */
291
- --secondary-100: 158 158 158; /* #EAF1FF */
292
- --secondary-110: 142 142 142; /* #D3D9E5 */
293
- --secondary-120: 126 126 126; /* #BBC1CC */
294
- --secondary-130: 111 111 111; /* #A4A9B2 */
295
- --secondary-140: 95 95 95; /* #8C9199 */
296
- --secondary-150: 79 79 79; /* #757980 */
297
- --secondary-default: var(--secondary-100);
298
- --secondary-foreground: var(--white);
299
-
300
- --tertiary-5: 251 252 253; /* #F5F6FF */
301
- --tertiary-10: 247 250 251;/* #EAEDFF */
302
- --tertiary-20: 239 244 247; /* #D5DCFF */
303
- --tertiary-30: 230 239 243; /* #C1CAFF */
304
- --tertiary-40: 222 234 239; /* #ACB8FF */
305
- --tertiary-50: 214 229 235; /* #97A6FF */
306
- --tertiary-60: 206 223 230; /* #8295FF */
307
- --tertiary-70: 198 218 226; /* #6D83FF */
308
- --tertiary-80: 189 213 222; /* #5971FF */
309
- --tertiary-90: 181 207 218; /* #4460FF */
310
- --tertiary-100: 173 202 214; /* #2F4EFF */
311
- --tertiary-110: 156 182 193; /* #2A46E5 */
312
- --tertiary-120: 138 162 171; /* #263ECC */
313
- --tertiary-130: 121 141 150; /* #2137B2 */
314
- --tertiary-140: 104 121 128; /* #1C2F99 */
315
- --tertiary-150: 87 101 107; /* #182780 */
316
- --tertiary-default: var(--tertiary-100);
317
- --tertiary-foreground: var(--white);
318
-
319
- --grey-5: 250 250 250; /* #FAFAFA */
320
- --grey-10: 245 245 245; /* #F5F5F5 */
321
- --grey-20: 236 236 236; /* #ECECEC */
322
- --grey-30: 226 226 226; /* #E2E2E2 */
323
- --grey-40: 216 216 216; /* #D8D8D8 */
324
- --grey-50: 207 207 207; /* #CFCFCF */
325
- --grey-60: 197 197 197; /* #C5C5C5 */
326
- --grey-70: 187 187 187; /* #BBBBBB */
327
- --grey-80: 177 177 177; /* #B1B1B1 */
328
- --grey-90: 168 168 168; /* #A8A8A8 */
329
- --grey-100: 158 158 158; /* #9E9E9E */
330
- --grey-110: 142 142 142; /* #8E8E8E */
331
- --grey-120: 126 126 126; /* #7E7E7E */
332
- --grey-130: 111 111 111; /* #6F6F6F */
333
- --grey-140: 95 95 95; /* #5F5F5F */
334
- --grey-150: 79 79 79; /* #4F4F4F */
335
- --grey-default: var(--grey-100);
336
- --grey-foreground: var(--white);
337
-
338
- --grey2-100: 249 250 251; /* #F9FAFB */
339
- --grey2-200: 244 246 248;/* #F4F6F8 */
340
- --grey2-300: 223 227 232; /* #DFE3E8 */
341
- --grey2-400: 196 205 213; /* #C4CDD5 */
342
- --grey2-500: 145 158 171; /* #919EAB */
343
- --grey2-600: 99 115 129; /* #637381 */
344
- --grey2-700: 69 79 91; /* #454F5B */
345
- --grey2-800: 33 43 54; /* #212B36 */
346
- --grey2-900: 22 28 36; /* #161C24 */
347
- --grey-default: var(--grey-100);
348
- --grey-foreground: var(--white);
349
-
350
- --info-lighter: 208 242 255;
351
- --info-light: 116 202 255;
352
- --info-100: 41 152 255; /* #2998FF */
353
- --info-120: 33 122 204; /* #217ACC */
354
- --info-dark: 12 83 183;
355
- --info-darker: 4 41 122;
356
- --info-default: var(--info-100);
357
- --info-foreground: var(--white);
358
-
359
- --success-lighter: 233 252 212;
360
- --success-light: 170 242 127;
361
- --success-100: 84 214 44; /* #54D62C */
362
- --success-120: 67 171 35; /* #43AB23 */
363
- --success-dark: 34 154 22;
364
- --success-darker: 8 102 13;
365
- --success-default: var(--success-100);
366
- --success-foreground: var(--white);
367
-
368
- --warning-lighter: 255 247 205;
369
- --warning-light:255 225 106;
370
- --warning-100: 255 193 7; /* #FFC107 */
371
- --warning-120: 204 154 6; /* #CC9A06 */
372
- --warning-dark: 183 129 3;
373
- --warning-darker: 122 79 1;
374
- --warning-default: var(--warning-100);
375
- --warning-foreground: var(--white);
376
-
377
- --error-lighter: 255 231 217;
378
- --error-light: 255 164 141;
379
- --error-100: 255 77 53; /* #FF4D35 */
380
- --error-120: 204 62 42; /* #CC3E2A */
381
- --error-dark: 183 33 54;
382
- --error-darker: 122 12 46;
383
- --error-default: var(--error-100);
384
- --error-foreground: var(--white);
385
-
386
- --main-transparent-primary: 221 205 0;
387
- --main-transparent-secondary: 158 158 158;
388
- --main-transparent-tertiary: 173 202 214;
389
- --main-transparent-tertiary: 173 202 214;
390
-
391
- --other-transparent-grey: 158 158 158;
392
- --other-transparent-grey2: 145 158 171;
393
- --other-transparent-white: 230 230 236;
394
- --other-transparent-black: 0 0 0;
395
- --other-transparent-info: 24 144 255;
396
- --other-transparent-success: 84 214 44;
397
- --other-transparent-warning: 255 193 7;
398
- --other-transparent-error: 255 72 66;
399
-
400
- /* Button */
401
- --btn-rounded-sm: 10px;
402
- --btn-rounded-md: 12px;
403
- --btn-rounded-lg: 16px;
404
-
405
- /* Dashboard */
406
- --dashboard-panel-bg-grey: 145 158 171; /* 0.08) */
407
- --dashboard-panel-bg-white: 255 255 255; /* 0.08) */
408
- --dashboard-panel-border: 168 162 168; /* 0.24) */
409
-
410
- /* Input */
411
- --input-default-text-color: 158 158 158;
412
- --input-default-stroke-color: 231 231 231;
413
-
414
- --input-active-text-color: 223 227 232;
415
- --input-active-stroke-color: 208 208 208;
416
-
417
- --input-disabled-text-color: 197 204 211;
418
- --input-disabled-stroke-color: 246 247 248;
419
- --input-disabled-background-color: 250 251 251;
420
-
421
- --input-label-background-color: 45 46 48;
422
-
423
- /* Other */
424
- --other-bg: 32 36 39;
425
- --other-bg-2: 40 44 49;
426
- /* Other/Popup */
427
- --popup-background: 45 46 48;
428
- /* Other/Popup Curtain */
429
- --popup-overlay: 0 0 0;
430
- --popup-overlay-alpha: 0.48;
431
- --popup-rounded: 24px;
432
-
433
- /* Navbar */
434
- --navbar-height: 58px;
435
- --navbar-bg-color: var(--primary-default);
436
- --navbar-text-color: var(--primary-foreground);
437
- --navbar-border-color: var(--primary-foreground);
438
- --navbar-gap: 16px;
439
-
440
- /* TODO for shadcn, wait for refactor */
441
- /* --background: 0 0% 100%; */
442
- --background: var(--brand-background);
443
- --foreground: var(--text-white:);
444
-
445
- --muted: 210 40% 96.1%;
446
- --muted-foreground: 215.4 16.3% 46.9%;
447
-
448
- --popover: 0 0% 100%;
449
- --popover-foreground: 222.2 47.4% 11.2%;
450
-
451
- --border: 214.3 31.8% 91.4%;
452
- --input: 214.3 31.8% 91.4%;
453
-
454
- --card: var(--popup-background);
455
- --card-foreground: var(--text-white);
456
-
457
- --primary: var(--primary-default);
458
-
459
- --secondary: var(--secondary-default);
460
-
461
- --accent: 210 40% 96.1%;
462
- --accent-foreground: 222.2 47.4% 11.2%;
463
-
464
- --destructive: 0 100% 50%;
465
- --destructive-foreground: 210 40% 98%;
466
-
467
- --ring: 215 20.2% 65.1%;
468
-
469
- --radius: 0.5rem;
470
- }
471
-
472
- :root {
473
- /* COLORS */
474
- --main-color-primary: #ddcd00;
475
- --main-color-secondary: #9e9e9e;
476
- --main-color-tertiary: #adcad6;
477
- --brand-colors-midnight-blue: #002038;
478
- --brand-colors-columbia-blue: #adcad6;
479
- /* word wrong */
480
- --brand-colors-backgroud: #1e3249;
481
- --brand-colors-lemon-glacier: #f5ff00;
482
- --text-dark: #212b36;
483
- --text-medium: #637381;
484
- --text-light: #919eab;
485
- --text-grey-dark: #7e7e7e;
486
- --text-grey-medium: #aaaaaa;
487
- --text-grey-light: #dfe3e8;
488
- --text-white: #ffffff;
489
- --state-color-primary-primary-default: #b1a400;
490
- --state-color-primary-primary-hover: #ddcd00;
491
- --state-color-primary-primary-stroke: rgba(177 164 0 / 0.48);
492
- --state-color-primary-primary-hover-bg: rgba(221 205 0 / 0.08);
493
- --state-color-primary-primary-pressed: #6f6700;
494
- --state-color-primary-primary-active: #ddcd00;
495
- --state-color-secondary-secondary-default: #ececec;
496
- --state-color-secondary-secondary-hover: #fafafa;
497
- --state-color-secondary-secondary-stroke: rgba(236 236 236 / 0.48);
498
- --state-color-secondary-secondary-hover-bg: rgba(250 250 250 / 0.08);
499
- --state-color-secondary-secondary-pressed: #bbbbbb;
500
- --state-color-secondary-secondary-active: #fafafa;
501
- --state-color-tertiery-tertiary-default: #8aa2ab;
502
- --state-color-tertiery-tertiary-hover: #adcad6;
503
- --state-color-tertiery-tertiary-stroke: rgba(138 162 171 / 0.48);
504
- --state-color-tertiery-tertiary-hover-bg: rgba(173 202 214 / 0.08);
505
- --state-color-tertiery-tertiary-pressed: #57656b;
506
- --state-color-tertiery-tertiery-active: #adcad6;
507
- --state-color-info-info-default: #1b7df5;
508
- --state-color-info-info-hover: #2998ff;
509
- --state-color-info-info-stroke: rgba(27 125 245 / 0.48);
510
- --state-color-info-info-hover-bg: rgba(41 152 255 / 0.08);
511
- --state-color-info-info-pressed: #1752b6;
512
- --state-color-info-info-active: #2998ff;
513
- --state-color-success-success-default: #319917;
514
- --state-color-success-success-hover: #44c022;
515
- --state-color-success-success-stroke: rgba(49 153 23 / 0.48);
516
- --state-color-success-success-hover-bg: rgba(84 214 44 / 0.08);
517
- --state-color-success-success-pressed: #235d17;
518
- --state-color-success-success-active: #44c022;
519
- --state-color-warning-warning-default: #ffc107;
520
- --state-color-warning-warning-hover: #ffdf1b;
521
- --state-color-warning-warning-stroke: rgba(255 193 7 / 0.48);
522
- --state-color-warning-warning-hover-bg: rgba(255 193 7 / 0.08);
523
- --state-color-warning-warning-pressed: #985108;
524
- --state-color-warning-warning-active: #ffc107;
525
- --state-color-error-error-default: #ed2f15;
526
- --state-color-error-error-hover: #ff4d35;
527
- --state-color-error-error-stroke: rgba(237 47 21 / 0.48);
528
- --state-color-error-error-hover-bg: rgba(255 77 53 / 0.08);
529
- --state-color-error-error-pressed: #a5210f;
530
- --state-color-error-error-active: #ff4d35;
531
- --state-color-disable-disable-solid: #454f5b;
532
- --state-color-disable-disable-outline: #637381;
533
- --primary-ramps-primary-5: #fdfcf2;
534
- --primary-ramps-primary-10: #fcfae5;
535
- --primary-ramps-primary-20: #f8f5cc;
536
- --primary-ramps-primary-30: #f5f0b2;
537
- --primary-ramps-primary-40: #f1eb99;
538
- --primary-ramps-primary-50: #eee680;
539
- --primary-ramps-primary-60: #ebe166;
540
- --primary-ramps-primary-70: #e7dc4d;
541
- --primary-ramps-primary-80: #e4d733;
542
- --primary-ramps-primary-90: #e0d21a;
543
- --primary-ramps-primary-100: #ddcd00;
544
- --primary-ramps-primary-110: #c7b800;
545
- --primary-ramps-primary-120: #b1a400;
546
- --primary-ramps-primary-130: #9b8f00;
547
- --primary-ramps-primary-140: #857b00;
548
- --primary-ramps-primary-150: #6f6700;
549
- --secondary-ramps-secondary-5: #fafafa;
550
- --secondary-ramps-secondary-10: #f5f5f5;
551
- --secondary-ramps-secondary-20: #ececec;
552
- --secondary-ramps-secondary-30: #e2e2e2;
553
- --secondary-ramps-secondary-40: #d8d8d8;
554
- --secondary-ramps-secondary-50: #cfcfcf;
555
- --secondary-ramps-secondary-60: #c5c5c5;
556
- --secondary-ramps-secondary-70: #bbbbbb;
557
- --secondary-ramps-secondary-80: #b1b1b1;
558
- --secondary-ramps-secondary-90: #a8a8a8;
559
- --secondary-ramps-secondary-100: #9e9e9e;
560
- --secondary-ramps-secondary-110: #8e8e8e;
561
- --secondary-ramps-secondary-120: #7e7e7e;
562
- --secondary-ramps-secondary-130: #6f6f6f;
563
- --secondary-ramps-secondary-140: #5f5f5f;
564
- --secondary-ramps-secondary-150: #4f4f4f;
565
- --tertiary-ramps-tertiary-5: #fbfcfd;
566
- --tertiary-ramps-tertiary-10: #f7fafb;
567
- --tertiary-ramps-tertiary-20: #eff4f7;
568
- --tertiary-ramps-tertiary-30: #e6eff3;
569
- --tertiary-ramps-tertiary-40: #deeaef;
570
- --tertiary-ramps-tertiary-50: #d6e5eb;
571
- --tertiary-ramps-tertiary-60: #cedfe6;
572
- --tertiary-ramps-tertiary-70: #c6dae2;
573
- --tertiary-ramps-tertiary-80: #bdd5de;
574
- --tertiary-ramps-tertiary-90: #b5cfda;
575
- --tertiary-ramps-tertiary-100: #adcad6;
576
- --tertiary-ramps-tertiary-110: #9cb6c1;
577
- --tertiary-ramps-tertiary-120: #8aa2ab;
578
- --tertiary-ramps-tertiary-130: #798d96;
579
- --tertiary-ramps-tertiary-140: #687980;
580
- --tertiary-ramps-tertiary-150: #57656b;
581
- --grey-grey-5: #fafafa;
582
- --grey-grey-10: #f5f5f5;
583
- --grey-grey-20: #ececec;
584
- --grey-grey-30: #e2e2e2;
585
- --grey-grey-40: #d8d8d8;
586
- --grey-grey-50: #cfcfcf;
587
- --grey-grey-60: #c5c5c5;
588
- --grey-grey-70: #bbbbbb;
589
- --grey-grey-80: #b1b1b1;
590
- --grey-grey-90: #a8a8a8;
591
- --grey-grey-100: #9e9e9e;
592
- --grey-grey-110: #8e8e8e;
593
- --grey-grey-120: #7e7e7e;
594
- --grey-grey-130: #6f6f6f;
595
- --grey-grey-140: #5f5f5f;
596
- --grey-grey-150: #4f4f4f;
597
- --grey2-grey2-50: #f8fafa;
598
- --grey2-grey2-100: #f2f5f5;
599
- --grey2-grey2-200: #e7ebed;
600
- --grey2-grey2-300: #d3dadf;
601
- --grey2-grey2-400: #bac5cb;
602
- --grey2-grey2-500: #9dabb5;
603
- --grey2-grey2-600: #919eab;
604
- --grey2-grey2-700: #72808f;
605
- --grey2-grey2-800: #606b77;
606
- --grey2-grey2-900: #4f5863;
607
- --grey2-grey2-950: #343b41;
608
- --info-info-50: #eef8ff;
609
- --info-info-100: #d9efff;
610
- --info-info-200: #bce4ff;
611
- --info-info-300: #8ed5ff;
612
- --info-info-400: #59bbff;
613
- --info-info-500: #2998ff;
614
- --info-info-600: #1b7df5;
615
- --info-info-700: #1466e1;
616
- --info-info-800: #1752b6;
617
- --info-info-900: #19478f;
618
- --info-info-950: #142c57;
619
- --success-success-50: #effce9;
620
- --success-success-100: #daf9ce;
621
- --success-success-200: #b8f3a3;
622
- --success-success-300: #8ce86e;
623
- --success-success-400: #54d62c;
624
- --success-success-500: #44c022;
625
- --success-success-600: #319917;
626
- --success-success-700: #277516;
627
- --success-success-800: #235d17;
628
- --success-success-900: #214f18;
629
- --success-success-950: #0c2b08;
630
- --warning-warning-50: #ffffea;
631
- --warning-warning-100: #fffbc5;
632
- --warning-warning-200: #fff885;
633
- --warning-warning-300: #ffee46;
634
- --warning-warning-400: #ffdf1b;
635
- --warning-warning-500: #ffc107;
636
- --warning-warning-600: #e29400;
637
- --warning-warning-700: #bb6902;
638
- --warning-warning-800: #985108;
639
- --warning-warning-900: #7c420b;
640
- --warning-warning-950: #482200;
641
- --error-error-50: #fff3f1;
642
- --error-error-100: #ffe3df;
643
- --error-error-200: #ffccc5;
644
- --error-error-300: #ffa99d;
645
- --error-error-400: #ff7664;
646
- --error-error-500: #ff4d35;
647
- --error-error-600: #ed2f15;
648
- --error-error-700: #c8230d;
649
- --error-error-800: #a5210f;
650
- --error-error-900: #882214;
651
- --error-error-950: #4b0c04;
652
- --input-color-default-text: #9e9e9e;
653
- --input-color-default-stroke: rgba(158 158 158 / 0.24);
654
- --input-color-filled-text: #dfe3e8;
655
- --input-color-active-stroke: rgba(158 158 158 / 0.48);
656
- --input-color-disable-text: rgba(145 158 171 / 0.52);
657
- --input-color-disable-stroke: rgba(145 158 171 / 0.08);
658
- --input-color-disable-bg: rgba(145 158 171 / 0.04);
659
- --input-color-label-bg: #2d2e30;
660
- --input-color-error: #ff4d35;
661
- --main-transparency-primary-8: rgba(221 205 0 / 0.08);
662
- --main-transparency-primary-12: rgba(221 205 0 / 0.12);
663
- --main-transparency-primary-16: rgba(221 205 0 / 0.16);
664
- --main-transparency-primary-24: rgba(221 205 0 / 0.24);
665
- --main-transparency-primary-32: rgba(221 205 0 / 0.32);
666
- --main-transparency-primary-48: rgba(221 205 0 / 0.48);
667
- --main-transparency-secondary-8: rgba(158 158 158 / 0.08);
668
- --main-transparency-secondary-12: rgba(158 158 158 / 0.12);
669
- --main-transparency-secondary-16: rgba(158 158 158 / 0.16);
670
- --main-transparency-secondary-24: rgba(158 158 158 / 0.24);
671
- --main-transparency-secondary-32: rgba(158 158 158 / 0.32);
672
- --main-transparency-secondary-48: rgba(158 158 158 / 0.48);
673
- --main-transparency-tertiary-8: rgba(173 202 214 / 0.08);
674
- --main-transparency-tertiary-12: rgba(173 202 214 / 0.12);
675
- --main-transparency-tertiary-16: rgba(173 202 214 / 0.16);
676
- --main-transparency-tertiary-24: rgba(173 202 214 / 0.24);
677
- --main-transparency-tertiary-32: rgba(173 202 214 / 0.32);
678
- --main-transparency-tertiary-48: rgba(173 202 214 / 0.48);
679
- --other-transparency-info-8: rgba(41 152 255 / 0.08);
680
- --other-transparency-info-12: rgba(41 152 255 / 0.12);
681
- --other-transparency-info-16: rgba(41 152 255 / 0.16);
682
- --other-transparency-info-24: rgba(41 152 255 / 0.24);
683
- --other-transparency-info-32: rgba(41 152 255 / 0.32);
684
- --other-transparency-info-48: rgba(41 152 255 / 0.48);
685
- --other-transparency-success-8: rgba(84 214 44 / 0.08);
686
- --other-transparency-success-12: rgba(84 214 44 / 0.12);
687
- --other-transparency-success-16: rgba(84 214 44 / 0.16);
688
- --other-transparency-success-24: rgba(84 214 44 / 0.24);
689
- --other-transparency-success-32: rgba(84 214 44 / 0.32);
690
- --other-transparency-success-48: rgba(84 214 44 / 0.48);
691
- --other-transparency-warning-8: rgba(255 193 7 / 0.08);
692
- --other-transparency-warning-12: rgba(255 193 7 / 0.12);
693
- --other-transparency-warning-16: rgba(255 193 7 / 0.16);
694
- --other-transparency-warning-24: rgba(255 193 7 / 0.24);
695
- --other-transparency-warning-32: rgba(255 193 7 / 0.32);
696
- --other-transparency-warning-48: rgba(255 193 7 / 0.48);
697
- --other-transparency-error-8: rgba(255 72 66 / 0.08);
698
- --other-transparency-error-12: rgba(255 72 66 / 0.12);
699
- --other-transparency-error-16: rgba(255 72 66 / 0.16);
700
- --other-transparency-error-24: rgba(255 72 66 / 0.24);
701
- --other-transparency-error-32: rgba(255 72 66 / 0.32);
702
- --other-transparency-error-48: rgba(255 72 66 / 0.48);
703
- --other-transparency-grey-8: rgba(158 158 158 / 0.08);
704
- --other-transparency-grey-12: rgba(158 158 158 / 0.12);
705
- --other-transparency-grey-16: rgba(158 158 158 / 0.16);
706
- --other-transparency-grey-24: rgba(158 158 158 / 0.24);
707
- --other-transparency-grey-32: rgba(158 158 158 / 0.32);
708
- --other-transparency-grey-48: rgba(158 158 158 / 0.48);
709
- --other-transparency-grey2-8: rgba(145 158 171 / 0.08);
710
- --other-transparency-grey2-12: rgba(145 158 171 / 0.12);
711
- --other-transparency-grey2-16: rgba(145 158 171 / 0.16);
712
- --other-transparency-grey2-24: rgba(145 158 171 / 0.24);
713
- --other-transparency-grey2-32: rgba(145 158 171 / 0.32);
714
- --other-transparency-grey2-48: rgba(145 158 171 / 0.48);
715
- --other-transparency-white-08: rgba(255 255 255 / 0.08);
716
- --other-transparency-white-12: rgba(255 255 255 / 0.12);
717
- --other-transparency-white-16: rgba(255 255 255 / 0.16);
718
- --other-transparency-white-24: rgba(255 255 255 / 0.24);
719
- --other-transparency-white-32: rgba(255 255 255 / 0.32);
720
- --other-transparency-white-48: rgba(255 255 255 / 0.48);
721
- --other-transparency-black-08: rgba(0 0 0 / 0.08);
722
- --other-transparency-black-12: rgba(0 0 0 / 0.12);
723
- --other-transparency-black-16: rgba(0 0 0 / 0.16);
724
- --other-transparency-black-24: rgba(0 0 0 / 0.24);
725
- --other-transparency-black-32: rgba(0 0 0 / 0.32);
726
- --other-transparency-black-48: rgba(0 0 0 / 0.48);
727
- --other-bg: #202427;
728
- --other-bg2: #282c31;
729
- --other-popup: #2d2e30;
730
- --other-popup-hightlight: #343638;
731
- --other-popup-curtain: rgba(0 0 0 / 0.6);
732
- --common-white: #ffffff;
733
- --common-black: #000000;
734
- --dashboard-panel-bg-grey: rgba(145 158 171 / 0.08);
735
- --dashboard-panel-bg-white: rgba(255 255 255 / 0.08);
736
- --dashboard-panel-border: rgba(168 162 168 / 0.24);
737
-
738
- --primary-foreground: var(--text-dark);
739
- --secondary-foreground: var(--text-dark);
740
- --tertiary-foreground: var(--text-dark);
741
- --info-foreground: var(--text-white);
742
- --success-foreground: var(--text-white);
743
- --warning-foreground: var(--text-dark);
744
- --error-foreground: var(--text-white);
745
-
746
- --surface: var(--other-bg2);
747
- --surface-foreground: var(--text-white);
748
- --radius: 0.5rem;
749
-
750
- }
751
- }
752
-
753
- @layer base {
754
- * {
755
- /* @apply border-border; */
756
- }
757
- body {
758
- /* @apply bg-background text-foreground; */
759
- @apply bg-[var(--brand-colors-backgroud)] text-white;
760
- }
761
- }