@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,178 +0,0 @@
1
- :root[data-theme="default"] {
2
- /* TYPE */
3
- --h1-family: "Montserrat";
4
- --h1-size: 64px;
5
- --h1-size-rem: 4rem;
6
- --h1-weight: 700;
7
- --h1-style: normal;
8
- --h1-line-height: 80px;
9
- --h1-line-height-rem: 5rem;
10
- --h2-family: "Montserrat";
11
- --h2-size: 48px;
12
- --h2-size-rem: 3rem;
13
- --h2-weight: 700;
14
- --h2-style: normal;
15
- --h2-line-height: 60px;
16
- --h2-line-height-rem: 3.75rem;
17
- --h3-family: "Montserrat";
18
- --h3-size: 32px;
19
- --h3-size-rem: 2rem;
20
- --h3-weight: 700;
21
- --h3-style: normal;
22
- --h3-line-height: 48px;
23
- --h3-line-height-rem: 3rem;
24
- --h4-family: "Montserrat";
25
- --h4-size: 24px;
26
- --h4-size-rem: 1.5rem;
27
- --h4-weight: 700;
28
- --h4-style: normal;
29
- --h4-line-height: 32px;
30
- --h4-line-height-rem: 2rem;
31
- --h5-family: "Montserrat";
32
- --h5-size: 20px;
33
- --h5-size-rem: 1.25rem;
34
- --h5-weight: 700;
35
- --h5-style: normal;
36
- --h5-line-height: 28px;
37
- --h5-line-height-rem: 1.75rem;
38
- --h6-family: "Montserrat";
39
- --h6-size: 18px;
40
- --h6-size-rem: 1.125rem;
41
- --h6-weight: 700;
42
- --h6-style: normal;
43
- --h6-line-height: 24px;
44
- --h6-line-height-rem: 1.5rem;
45
- --subtitle1-family: "Montserrat";
46
- --subtitle1-size: 16px;
47
- --subtitle1-size-rem: 1rem;
48
- --subtitle1-weight: 400;
49
- --subtitle1-style: normal;
50
- --subtitle1-line-height: 24px;
51
- --subtitle1-line-height-rem: 1.5rem;
52
- --subtitle2-family: "Montserrat";
53
- --subtitle2-size: 16px;
54
- --subtitle2-size-rem: 1rem;
55
- --subtitle2-weight: 500;
56
- --subtitle2-style: normal;
57
- --subtitle2-line-height: 24px;
58
- --subtitle2-line-height-rem: 1.5rem;
59
- --subtitle3-family: "Montserrat";
60
- --subtitle3-size: 16px;
61
- --subtitle3-size-rem: 1rem;
62
- --subtitle3-weight: 600;
63
- --subtitle3-style: normal;
64
- --subtitle3-line-height: 24px;
65
- --subtitle3-line-height-rem: 1.5rem;
66
- --subtitle4-family: "Montserrat";
67
- --subtitle4-size: 14px;
68
- --subtitle4-size-rem: 0.875rem;
69
- --subtitle4-weight: 400;
70
- --subtitle4-style: normal;
71
- --subtitle4-line-height: 22px;
72
- --subtitle4-line-height-rem: 1.375rem;
73
- --subtitle5-family: "Montserrat";
74
- --subtitle5-size: 14px;
75
- --subtitle5-size-rem: 0.875rem;
76
- --subtitle5-weight: 500;
77
- --subtitle5-style: normal;
78
- --subtitle5-line-height: 22px;
79
- --subtitle5-line-height-rem: 1.375rem;
80
- --subtitle6-family: "Montserrat";
81
- --subtitle6-size: 14px;
82
- --subtitle6-size-rem: 0.875rem;
83
- --subtitle6-weight: 600;
84
- --subtitle6-style: normal;
85
- --subtitle6-line-height: 22px;
86
- --subtitle6-line-height-rem: 1.375rem;
87
- --body1-family: "Montserrat";
88
- --body1-size: 16px;
89
- --body1-size-rem: 1rem;
90
- --body1-weight: 400;
91
- --body1-style: normal;
92
- --body1-line-height: 20px;
93
- --body1-line-height-rem: 1.25rem;
94
- --body2-family: "Montserrat";
95
- --body2-size: 16px;
96
- --body2-size-rem: 1rem;
97
- --body2-weight: 500;
98
- --body2-style: normal;
99
- --body2-line-height: 20px;
100
- --body2-line-height-rem: 1.25rem;
101
- --body3-family: "Montserrat";
102
- --body3-size: 14px;
103
- --body3-size-rem: 0.875rem;
104
- --body3-weight: 400;
105
- --body3-style: normal;
106
- --body3-line-height: 18px;
107
- --body3-line-height-rem: 1.125rem;
108
- --body4-family: "Montserrat";
109
- --body4-size: 14px;
110
- --body4-size-rem: 0.875rem;
111
- --body4-weight: 500;
112
- --body4-style: normal;
113
- --body4-line-height: 18px;
114
- --body4-line-height-rem: 1.125rem;
115
- --small1-family: "Montserrat";
116
- --small1-size: 12px;
117
- --small1-size-rem: 0.75rem;
118
- --small1-weight: 400;
119
- --small1-style: normal;
120
- --small1-line-height: 14px;
121
- --small1-line-height-rem: 0.875rem;
122
- --small2-family: "Montserrat";
123
- --small2-size: 12px;
124
- --small2-size-rem: 0.75rem;
125
- --small2-weight: 500;
126
- --small2-style: normal;
127
- --small2-line-height: 14px;
128
- --small2-line-height-rem: 0.875rem;
129
- --small3-family: "Montserrat";
130
- --small3-size: 12px;
131
- --small3-size-rem: 0.75rem;
132
- --small3-weight: 600;
133
- --small3-style: normal;
134
- --small3-line-height: 14px;
135
- --small3-line-height-rem: 0.875rem;
136
- --small4-family: "Montserrat";
137
- --small4-size: 10px;
138
- --small4-size-rem: 0.625rem;
139
- --small4-weight: 400;
140
- --small4-style: normal;
141
- --small4-line-height: 12px;
142
- --small4-line-height-rem: 0.75rem;
143
- --small5-family: "Montserrat";
144
- --small5-size: 10px;
145
- --small5-size-rem: 0.625rem;
146
- --small5-weight: 500;
147
- --small5-style: normal;
148
- --small5-line-height: 12px;
149
- --small5-line-height-rem: 0.75rem;
150
- --label-label1-family: "Montserrat";
151
- --label-label1-size: 12px;
152
- --label-label1-size-rem: 0.75rem;
153
- --label-label1-weight: 400;
154
- --label-label1-style: normal;
155
- --label-label1-line-height: 12px;
156
- --label-label1-line-height-rem: 0.75rem;
157
- --label-label2-family: "Montserrat";
158
- --label-label2-size: 10px;
159
- --label-label2-size-rem: 0.625rem;
160
- --label-label2-weight: 400;
161
- --label-label2-style: normal;
162
- --label-label2-line-height: 10px;
163
- --label-label2-line-height-rem: 0.625rem;
164
- --button-button-l-family: "Montserrat";
165
- --button-button-l-size: 16px;
166
- --button-button-l-size-rem: 1rem;
167
- --button-button-l-weight: 700;
168
- --button-button-l-style: normal;
169
- --button-button-l-line-height: 24px;
170
- --button-button-l-line-height-rem: 1.5rem;
171
- --button-button-ms-family: "Montserrat";
172
- --button-button-ms-size: 14px;
173
- --button-button-ms-size-rem: 0.875rem;
174
- --button-button-ms-weight: 700;
175
- --button-button-ms-style: normal;
176
- --button-button-ms-line-height: 22px;
177
- --button-button-ms-line-height-rem: 1.375rem;
178
- }
@@ -1,468 +0,0 @@
1
- :root[data-theme="xspector"] {
2
- /* COLORS */
3
- --main-color-primary: #ddcd00;
4
- --main-color-secondary: #9e9e9e;
5
- --main-color-tertiary: #adcad6;
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: #212b36;
11
- --text-medium: #637381;
12
- --text-light: #919eab;
13
- --text-grey-dark: #7e7e7e;
14
- --text-grey-medium: #aaaaaa;
15
- --text-grey-light: #dfe3e8;
16
- --text-white: #ffffff;
17
- --state-color-primary-default: #b1a400;
18
- --state-color-primary-hover: #ddcd00;
19
- --state-color-primary-stroke: rgba(177 164 0 / 0.48);
20
- --state-color-primary-hover-bg: rgba(221 205 0 / 0.08);
21
- --state-color-primary-pressed: #6f6700;
22
- --state-color-primary-active: #ddcd00;
23
- --state-color-secondary-default: #ececec;
24
- --state-color-secondary-hover: #fafafa;
25
- --state-color-secondary-stroke: rgba(236 236 236 / 0.48);
26
- --state-color-secondary-hover-bg: rgba(250 250 250 / 0.08);
27
- --state-color-secondary-pressed: #bbbbbb;
28
- --state-color-secondary-active: #fafafa;
29
- --state-color-tertiary-default: #8aa2ab;
30
- --state-color-tertiary-hover: #adcad6;
31
- --state-color-tertiary-stroke: rgba(138 162 171 / 0.48);
32
- --state-color-tertiary-hover-bg: rgba(173 202 214 / 0.08);
33
- --state-color-tertiary-pressed: #57656b;
34
- --state-color-tertiery-active: #adcad6;
35
- --state-color-info-default: #1b7df5;
36
- --state-color-info-hover: #2998ff;
37
- --state-color-info-stroke: rgba(27 125 245 / 0.48);
38
- --state-color-info-hover-bg: rgba(41 152 255 / 0.08);
39
- --state-color-info-pressed: #1752b6;
40
- --state-color-info-active: #2998ff;
41
- --state-color-success-default: #319917;
42
- --state-color-success-hover: #44c022;
43
- --state-color-success-stroke: rgba(49 153 23 / 0.48);
44
- --state-color-success-hover-bg: rgba(84 214 44 / 0.08);
45
- --state-color-success-pressed: #235d17;
46
- --state-color-success-active: #44c022;
47
- --state-color-warning-default: #ffc107;
48
- --state-color-warning-hover: #ffdf1b;
49
- --state-color-warning-stroke: rgba(255 193 7 / 0.48);
50
- --state-color-warning-hover-bg: rgba(255 193 7 / 0.08);
51
- --state-color-warning-pressed: #985108;
52
- --state-color-warning-active: #ffc107;
53
- --state-color-error-default: #ed2f15;
54
- --state-color-error-hover: #ff4d35;
55
- --state-color-error-stroke: rgba(237 47 21 / 0.48);
56
- --state-color-error-hover-bg: rgba(255 77 53 / 0.08);
57
- --state-color-error-pressed: #a5210f;
58
- --state-color-error-active: #ff4d35;
59
- --state-color-disable-disable-solid: #454f5b;
60
- --state-color-disable-disable-outline: #637381;
61
- --primary-ramps-primary-5: #fdfcf2;
62
- --primary-ramps-primary-10: #fcfae5;
63
- --primary-ramps-primary-20: #f8f5cc;
64
- --primary-ramps-primary-30: #f5f0b2;
65
- --primary-ramps-primary-40: #f1eb99;
66
- --primary-ramps-primary-50: #eee680;
67
- --primary-ramps-primary-60: #ebe166;
68
- --primary-ramps-primary-70: #e7dc4d;
69
- --primary-ramps-primary-80: #e4d733;
70
- --primary-ramps-primary-90: #e0d21a;
71
- --primary-ramps-primary-100: #ddcd00;
72
- --primary-ramps-primary-110: #c7b800;
73
- --primary-ramps-primary-120: #b1a400;
74
- --primary-ramps-primary-130: #9b8f00;
75
- --primary-ramps-primary-140: #857b00;
76
- --primary-ramps-primary-150: #6f6700;
77
- --secondary-ramps-secondary-5: #fafafa;
78
- --secondary-ramps-secondary-10: #f5f5f5;
79
- --secondary-ramps-secondary-20: #ececec;
80
- --secondary-ramps-secondary-30: #e2e2e2;
81
- --secondary-ramps-secondary-40: #d8d8d8;
82
- --secondary-ramps-secondary-50: #cfcfcf;
83
- --secondary-ramps-secondary-60: #c5c5c5;
84
- --secondary-ramps-secondary-70: #bbbbbb;
85
- --secondary-ramps-secondary-80: #b1b1b1;
86
- --secondary-ramps-secondary-90: #a8a8a8;
87
- --secondary-ramps-secondary-100: #9e9e9e;
88
- --secondary-ramps-secondary-110: #8e8e8e;
89
- --secondary-ramps-secondary-120: #7e7e7e;
90
- --secondary-ramps-secondary-130: #6f6f6f;
91
- --secondary-ramps-secondary-140: #5f5f5f;
92
- --secondary-ramps-secondary-150: #4f4f4f;
93
- --tertiary-ramps-tertiary-5: #fbfcfd;
94
- --tertiary-ramps-tertiary-10: #f7fafb;
95
- --tertiary-ramps-tertiary-20: #eff4f7;
96
- --tertiary-ramps-tertiary-30: #e6eff3;
97
- --tertiary-ramps-tertiary-40: #deeaef;
98
- --tertiary-ramps-tertiary-50: #d6e5eb;
99
- --tertiary-ramps-tertiary-60: #cedfe6;
100
- --tertiary-ramps-tertiary-70: #c6dae2;
101
- --tertiary-ramps-tertiary-80: #bdd5de;
102
- --tertiary-ramps-tertiary-90: #b5cfda;
103
- --tertiary-ramps-tertiary-100: #adcad6;
104
- --tertiary-ramps-tertiary-110: #9cb6c1;
105
- --tertiary-ramps-tertiary-120: #8aa2ab;
106
- --tertiary-ramps-tertiary-130: #798d96;
107
- --tertiary-ramps-tertiary-140: #687980;
108
- --tertiary-ramps-tertiary-150: #57656b;
109
- --grey-grey-5: #fafafa;
110
- --grey-grey-10: #f5f5f5;
111
- --grey-grey-20: #ececec;
112
- --grey-grey-30: #e2e2e2;
113
- --grey-grey-40: #d8d8d8;
114
- --grey-grey-50: #cfcfcf;
115
- --grey-grey-60: #c5c5c5;
116
- --grey-grey-70: #bbbbbb;
117
- --grey-grey-80: #b1b1b1;
118
- --grey-grey-90: #a8a8a8;
119
- --grey-grey-100: #9e9e9e;
120
- --grey-grey-110: #8e8e8e;
121
- --grey-grey-120: #7e7e7e;
122
- --grey-grey-130: #6f6f6f;
123
- --grey-grey-140: #5f5f5f;
124
- --grey-grey-150: #4f4f4f;
125
- --grey2-grey2-50: #f8fafa;
126
- --grey2-grey2-100: #f2f5f5;
127
- --grey2-grey2-200: #e7ebed;
128
- --grey2-grey2-300: #d3dadf;
129
- --grey2-grey2-400: #bac5cb;
130
- --grey2-grey2-500: #9dabb5;
131
- --grey2-grey2-600: #919eab;
132
- --grey2-grey2-700: #72808f;
133
- --grey2-grey2-800: #606b77;
134
- --grey2-grey2-900: #4f5863;
135
- --grey2-grey2-950: #343b41;
136
- --info-info-50: #eef8ff;
137
- --info-info-100: #d9efff;
138
- --info-info-200: #bce4ff;
139
- --info-info-300: #8ed5ff;
140
- --info-info-400: #59bbff;
141
- --info-info-500: #2998ff;
142
- --info-info-600: #1b7df5;
143
- --info-info-700: #1466e1;
144
- --info-info-800: #1752b6;
145
- --info-info-900: #19478f;
146
- --info-info-950: #142c57;
147
- --success-success-50: #effce9;
148
- --success-success-100: #daf9ce;
149
- --success-success-200: #b8f3a3;
150
- --success-success-300: #8ce86e;
151
- --success-success-400: #54d62c;
152
- --success-success-500: #44c022;
153
- --success-success-600: #319917;
154
- --success-success-700: #277516;
155
- --success-success-800: #235d17;
156
- --success-success-900: #214f18;
157
- --success-success-950: #0c2b08;
158
- --warning-warning-50: #ffffea;
159
- --warning-warning-100: #fffbc5;
160
- --warning-warning-200: #fff885;
161
- --warning-warning-300: #ffee46;
162
- --warning-warning-400: #ffdf1b;
163
- --warning-warning-500: #ffc107;
164
- --warning-warning-600: #e29400;
165
- --warning-warning-700: #bb6902;
166
- --warning-warning-800: #985108;
167
- --warning-warning-900: #7c420b;
168
- --warning-warning-950: #482200;
169
- --error-error-50: #fff3f1;
170
- --error-error-100: #ffe3df;
171
- --error-error-200: #ffccc5;
172
- --error-error-300: #ffa99d;
173
- --error-error-400: #ff7664;
174
- --error-error-500: #ff4d35;
175
- --error-error-600: #ed2f15;
176
- --error-error-700: #c8230d;
177
- --error-error-800: #a5210f;
178
- --error-error-900: #882214;
179
- --error-error-950: #4b0c04;
180
- --input-color-default-text: #9e9e9e;
181
- --input-color-default-stroke: rgba(158 158 158 / 0.24);
182
- --input-color-filled-text: #dfe3e8;
183
- --input-color-active-stroke: rgba(158 158 158 / 0.48);
184
- --input-color-disable-text: rgba(145 158 171 / 0.52);
185
- --input-color-disable-stroke: rgba(145 158 171 / 0.08);
186
- --input-color-disable-bg: rgba(145 158 171 / 0.04);
187
- --input-color-label-bg: #2d2e30;
188
- --input-color-error: #ff4d35;
189
- --main-transparency-primary-8: rgba(221 205 0 / 0.08);
190
- --main-transparency-primary-12: rgba(221 205 0 / 0.12);
191
- --main-transparency-primary-16: rgba(221 205 0 / 0.16);
192
- --main-transparency-primary-24: rgba(221 205 0 / 0.24);
193
- --main-transparency-primary-32: rgba(221 205 0 / 0.32);
194
- --main-transparency-primary-48: rgba(221 205 0 / 0.48);
195
- --main-transparency-secondary-8: rgba(158 158 158 / 0.08);
196
- --main-transparency-secondary-12: rgba(158 158 158 / 0.12);
197
- --main-transparency-secondary-16: rgba(158 158 158 / 0.16);
198
- --main-transparency-secondary-24: rgba(158 158 158 / 0.24);
199
- --main-transparency-secondary-32: rgba(158 158 158 / 0.32);
200
- --main-transparency-secondary-48: rgba(158 158 158 / 0.48);
201
- --main-transparency-tertiary-8: rgba(173 202 214 / 0.08);
202
- --main-transparency-tertiary-12: rgba(173 202 214 / 0.12);
203
- --main-transparency-tertiary-16: rgba(173 202 214 / 0.16);
204
- --main-transparency-tertiary-24: rgba(173 202 214 / 0.24);
205
- --main-transparency-tertiary-32: rgba(173 202 214 / 0.32);
206
- --main-transparency-tertiary-48: rgba(173 202 214 / 0.48);
207
- --other-transparency-info-8: rgba(41 152 255 / 0.08);
208
- --other-transparency-info-12: rgba(41 152 255 / 0.12);
209
- --other-transparency-info-16: rgba(41 152 255 / 0.16);
210
- --other-transparency-info-24: rgba(41 152 255 / 0.24);
211
- --other-transparency-info-32: rgba(41 152 255 / 0.32);
212
- --other-transparency-info-48: rgba(41 152 255 / 0.48);
213
- --other-transparency-success-8: rgba(84 214 44 / 0.08);
214
- --other-transparency-success-12: rgba(84 214 44 / 0.12);
215
- --other-transparency-success-16: rgba(84 214 44 / 0.16);
216
- --other-transparency-success-24: rgba(84 214 44 / 0.24);
217
- --other-transparency-success-32: rgba(84 214 44 / 0.32);
218
- --other-transparency-success-48: rgba(84 214 44 / 0.48);
219
- --other-transparency-warning-8: rgba(255 193 7 / 0.08);
220
- --other-transparency-warning-12: rgba(255 193 7 / 0.12);
221
- --other-transparency-warning-16: rgba(255 193 7 / 0.16);
222
- --other-transparency-warning-24: rgba(255 193 7 / 0.24);
223
- --other-transparency-warning-32: rgba(255 193 7 / 0.32);
224
- --other-transparency-warning-48: rgba(255 193 7 / 0.48);
225
- --other-transparency-error-8: rgba(255 72 66 / 0.08);
226
- --other-transparency-error-12: rgba(255 72 66 / 0.12);
227
- --other-transparency-error-16: rgba(255 72 66 / 0.16);
228
- --other-transparency-error-24: rgba(255 72 66 / 0.24);
229
- --other-transparency-error-32: rgba(255 72 66 / 0.32);
230
- --other-transparency-error-48: rgba(255 72 66 / 0.48);
231
- --other-transparency-grey-8: rgba(158 158 158 / 0.08);
232
- --other-transparency-grey-12: rgba(158 158 158 / 0.12);
233
- --other-transparency-grey-16: rgba(158 158 158 / 0.16);
234
- --other-transparency-grey-24: rgba(158 158 158 / 0.24);
235
- --other-transparency-grey-32: rgba(158 158 158 / 0.32);
236
- --other-transparency-grey-48: rgba(158 158 158 / 0.48);
237
- --other-transparency-grey2-8: rgba(145 158 171 / 0.08);
238
- --other-transparency-grey2-12: rgba(145 158 171 / 0.12);
239
- --other-transparency-grey2-16: rgba(145 158 171 / 0.16);
240
- --other-transparency-grey2-24: rgba(145 158 171 / 0.24);
241
- --other-transparency-grey2-32: rgba(145 158 171 / 0.32);
242
- --other-transparency-grey2-48: rgba(145 158 171 / 0.48);
243
- --other-transparency-white-08: rgba(255 255 255 / 0.08);
244
- --other-transparency-white-12: rgba(255 255 255 / 0.12);
245
- --other-transparency-white-16: rgba(255 255 255 / 0.16);
246
- --other-transparency-white-24: rgba(255 255 255 / 0.24);
247
- --other-transparency-white-32: rgba(255 255 255 / 0.32);
248
- --other-transparency-white-48: rgba(255 255 255 / 0.48);
249
- --other-transparency-black-08: rgba(0 0 0 / 0.08);
250
- --other-transparency-black-12: rgba(0 0 0 / 0.12);
251
- --other-transparency-black-16: rgba(0 0 0 / 0.16);
252
- --other-transparency-black-24: rgba(0 0 0 / 0.24);
253
- --other-transparency-black-32: rgba(0 0 0 / 0.32);
254
- --other-transparency-black-48: rgba(0 0 0 / 0.48);
255
- --other-bg: #202427;
256
- --other-bg2: #282c31;
257
- --other-popup: #2d2e30;
258
- --other-popup-hightlight: #343638;
259
- --other-popup-curtain: rgba(0 0 0 / 0.6);
260
- --common-white: #ffffff;
261
- --common-black: #000000;
262
- --dashboard-panel-bg-grey: rgba(145 158 171 / 0.08);
263
- --dashboard-panel-bg-white: rgba(255 255 255 / 0.08);
264
- --dashboard-panel-border: rgba(168 162 168 / 0.24);
265
- --eventlist-1: #1158c7;
266
- --eventlist-2: #206feb;
267
- --eventlist-3: #388bfd;
268
- --eventlist-4: #58a6ff;
269
- --eventlist-5: #79c0ff;
270
- --eventlist-6: #6e40c9;
271
- --eventlist-7: #8957e5;
272
- --eventlist-8: #a371f7;
273
- --eventlist-9: #bc8cff;
274
- --eventlist-10: #d2a8ff;
275
- --eventlist-11: #7d2457;
276
- --eventlist-12: #9e3670;
277
- --eventlist-13: #bf4b8a;
278
- --eventlist-14: #db61a2;
279
- --eventlist-15: #f778ba;
280
- --eventlist-16: #8e1619;
281
- --eventlist-17: #b62324;
282
- --eventlist-18: #da3633;
283
- --eventlist-19: #f85149;
284
- --eventlist-20: #ff7b72;
285
- --eventlist-21: #9b4216;
286
- --eventlist-22: #bd561d;
287
- --eventlist-23: #db6d28;
288
- --eventlist-24: #f0883e;
289
- --eventlist-25: #ffa657;
290
- --eventlist-26: #825303;
291
- --eventlist-27: #9e6a03;
292
- --eventlist-28: #bb800a;
293
- --eventlist-29: #d29922;
294
- --eventlist-30: #e3b341;
295
- --eventlist-31: #186c2e;
296
- --eventlist-32: #228636;
297
- --eventlist-33: #2ea043;
298
- --eventlist-34: #3fb950;
299
- --eventlist-35: #56d364;
300
- --old-color-system-not-use-01-primary-01-lighter: #fcffe6;
301
- --old-color-system-not-use-01-primary-02-light: #ecf576;
302
- --old-color-system-not-use-01-primary-03-main: #dbdb23;
303
- --old-color-system-not-use-01-primary-04-dark: #a89d00;
304
- --old-color-system-not-use-01-primary-05-darker: #5c5000;
305
- --old-color-system-not-use-01-primary-8: rgba(219 219 35 / 0.08);
306
- --old-color-system-not-use-01-primary-12: rgba(219 219 35 / 0.12);
307
- --old-color-system-not-use-01-primary-16: rgba(219 219 35 / 0.16);
308
- --old-color-system-not-use-01-primary-24: rgba(219 219 35 / 0.24);
309
- --old-color-system-not-use-01-primary-32: rgba(219 219 35 / 0.32);
310
- --old-color-system-not-use-01-primary-48: rgba(219 219 35 / 0.48);
311
- --old-color-system-not-use-02-secondary-01-light: #cbc7cb;
312
- --old-color-system-not-use-02-secondary-02-lighter: #b9b5b9;
313
- --old-color-system-not-use-02-secondary-03-main: #a8a2a8;
314
- --old-color-system-not-use-02-secondary-04-dark: #868286;
315
- --old-color-system-not-use-02-secondary-05-darker: #656165;
316
- --old-color-system-not-use-02-secondary-08: rgba(168 162 168 / 0.08);
317
- --old-color-system-not-use-02-secondary-12: rgba(168 162 168 / 0.12);
318
- --old-color-system-not-use-02-secondary-16: rgba(168 162 168 / 0.16);
319
- --old-color-system-not-use-02-secondary-24: rgba(168 162 168 / 0.24);
320
- --old-color-system-not-use-02-secondary-32: rgba(168 162 168 / 0.32);
321
- --old-color-system-not-use-02-secondary-48: rgba(168 162 168 / 0.48);
322
- --old-color-system-action-light-01-active: #637381;
323
- --old-color-system-action-light-02-hover: rgba(145 158 171 / 0.08);
324
- --old-color-system-action-light-03-selected: rgba(145 158 171 / 0.16);
325
- --old-color-system-action-light-04-disabled: rgba(145 158 171 / 0.8);
326
- --old-color-system-action-light-05-disabled-background: rgba(145 158 171 / 0.24);
327
- --old-color-system-action-light-06-focus: rgba(145 158 171 / 0.24);
328
- --old-color-system-action-dark-01-active: #919eab;
329
- --old-color-system-action-dark-02-hover: rgba(145 158 171 / 0.08);
330
- --old-color-system-action-dark-03-selected: rgba(145 158 171 / 0.16);
331
- --old-color-system-action-dark-04-disabled: rgba(145 158 171 / 0.3);
332
- --old-color-system-action-dark-05-disabled-background: rgba(145 158 171 / 0.24);
333
- --old-color-system-action-dark-06-focus: rgba(145 158 171 / 0.24);
334
- --old-color-system-info-inf0-lighter: #d0f2ff;
335
- --old-color-system-info-info-light: #74caff;
336
- --old-color-system-info-info-100: #2998ff;
337
- --old-color-system-info-infi-120: #217acc;
338
- --old-color-system-info-info-dark: #0c53b7;
339
- --old-color-system-info-info-darker: #04297a;
340
- --old-color-system-success-success-lighter: #e9fcd4;
341
- --old-color-system-success-success-light: #aaf27f;
342
- --old-color-system-success-success-100: #54d62c;
343
- --old-color-system-success-success-120: #43ab23;
344
- --old-color-system-success-success-dark: #229a16;
345
- --old-color-system-success-success-darker: #08660d;
346
- --old-color-system-warning-warning-lighter: #fff7cd;
347
- --old-color-system-warning-warning-light: #ffe16a;
348
- --old-color-system-warning-warning-100: #ffc107;
349
- --old-color-system-warning-warning-120: #cc9a06;
350
- --old-color-system-warning-warning-dark: #b78103;
351
- --old-color-system-warning-warning-darker: #7a4f01;
352
- --old-color-system-error-error-lighter: #ffe7d9;
353
- --old-color-system-error-error-light: #ffa48d;
354
- --old-color-system-error-error-100: #ff4d35;
355
- --old-color-system-error-error-120: #cc3e2a;
356
- --old-color-system-error-error-dark: #b72136;
357
- --old-color-system-error-error-darker: #7a0c2e;
358
- --old-color-system-grey2-old-grey2-100: #f9fafb;
359
- --old-color-system-grey2-old-grey2-200: #f4f6f8;
360
- --old-color-system-grey2-old-grey2-300: #dfe3e8;
361
- --old-color-system-grey2-old-grey2-400: #c4cdd5;
362
- --old-color-system-grey2-old-grey2-500: #919eab;
363
- --old-color-system-grey2-old-grey2-600: #637381;
364
- --old-color-system-grey2-old-grey2-700: #454f5b;
365
- --old-color-system-grey2-old-grey2-800: #212b36;
366
- --old-color-system-grey2-old-grey2-900: #161c24;
367
- --old-color-system-14-others-divider: rgba(145 158 171 / 0.24);
368
- --old-color-system-14-others-button-input: rgba(124 138 153 / 0.63);
369
- --old-color-system-14-others-social-facebook: #1877f2;
370
- --old-color-system-14-others-social-instagram: #e02d69;
371
- --old-color-system-14-others-social-linkedin: #007ebb;
372
- --old-color-system-14-others-social-twitter: #00aaec;
373
- --old-color-system-14-others-block-variant: #7b61ff;
374
- --old-color-system-chart-01-01: #f7d2ff;
375
- --old-color-system-chart-01-02: #d0aeff;
376
- --old-color-system-chart-01-03: #9e86ff;
377
- --old-color-system-chart-01-04: #826af9;
378
- --old-color-system-chart-02-01: #ccfaff;
379
- --old-color-system-chart-02-02: #a5f3ff;
380
- --old-color-system-chart-02-03: #83cfff;
381
- --old-color-system-chart-02-04: #2d99ff;
382
- --old-color-system-chart-03-01: #c0f2dc;
383
- --old-color-system-chart-03-02: #a4f7cc;
384
- --old-color-system-chart-03-03: #60f1c8;
385
- --old-color-system-chart-03-04: #2cd9c5;
386
- --old-color-system-chart-04-01: #fff3d6;
387
- --old-color-system-chart-04-02: #fff7ae;
388
- --old-color-system-chart-04-03: #ffef5a;
389
- --old-color-system-chart-04-04: #ffe700;
390
- --old-color-system-chart-05-01: #fff2d4;
391
- --old-color-system-chart-05-02: #ffbd98;
392
- --old-color-system-chart-05-03: #ff8f6d;
393
- --old-color-system-chart-05-04: #ff6c40;
394
- --old-color-system-not-use-15-rov-blue-100: #c8cede;
395
- --old-color-system-not-use-15-rov-blue-200: #9ba9d1;
396
- --old-color-system-not-use-15-rov-blue-300: #7285c4;
397
- --old-color-system-not-use-15-rov-blue-400: #4d62b8;
398
- --old-color-system-not-use-15-rov-blue-500: #2c41ab;
399
- --old-color-system-not-use-15-rov-blue-600: #10239e;
400
- --old-color-system-not-use-15-rov-blue-700: #061178;
401
- --old-color-system-not-use-15-rov-blue-800: #000552;
402
- --old-color-system-not-use-15-rov-blue-900: #00012b;
403
- --old-color-system-not-use-16-citrine-100: #fcffe6;
404
- --old-color-system-not-use-16-citrine-200: #f6ffa3;
405
- --old-color-system-not-use-16-citrine-300: #ecf576;
406
- --old-color-system-not-use-16-citrine-400: #e3e84a;
407
- --old-color-system-not-use-16-citrine-500: #dbdb23;
408
- --old-color-system-not-use-16-citrine-600: #cfc700;
409
- --old-color-system-not-use-16-citrine-700: #a89d00;
410
- --old-color-system-not-use-16-citrine-800: #827500;
411
- --old-color-system-not-use-16-citrine-900: #5c5000;
412
- --old-color-system-not-use-17-silver-100: #cbc7cb;
413
- --old-color-system-not-use-17-silver-200: #c2bec2;
414
- --old-color-system-not-use-17-silver-300: #b9b5b9;
415
- --old-color-system-not-use-17-silver-400: #b1abb1;
416
- --old-color-system-not-use-17-silver-500: #a8a2a8;
417
- --old-color-system-not-use-17-silver-600: #979297;
418
- --old-color-system-not-use-17-silver-700: #868286;
419
- --old-color-system-not-use-17-silver-800: #767176;
420
- --old-color-system-not-use-17-silver-900: #656165;
421
- --old-color-system-not-use-10-rov-blue-8: rgba(16 35 158 / 0.08);
422
- --old-color-system-not-use-10-rov-blue-12: rgba(16 35 158 / 0.12);
423
- --old-color-system-not-use-10-rov-blue-16: rgba(16 35 158 / 0.16);
424
- --old-color-system-not-use-10-rov-blue-24: rgba(16 35 158 / 0.24);
425
- --old-color-system-not-use-10-rov-blue-32: rgba(16 35 158 / 0.32);
426
- --old-color-system-not-use-10-rov-blue-48: rgba(16 35 158 / 0.48);
427
- --old-color-system-not-use-11-citrine-8: rgba(207 199 0 / 0.08);
428
- --old-color-system-not-use-11-citrine-12: rgba(207 199 0 / 0.12);
429
- --old-color-system-not-use-11-citrine-16: rgba(207 199 0 / 0.16);
430
- --old-color-system-not-use-11-citrine-24: rgba(207 199 0 / 0.24);
431
- --old-color-system-not-use-11-citrine-32: rgba(207 199 0 / 0.32);
432
- --old-color-system-not-use-11-citrine-48: rgba(207 199 0 / 0.48);
433
- --old-color-system-not-use-12-silver-8: rgba(168 162 168 / 0.08);
434
- --old-color-system-not-use-12-silver-12: rgba(168 162 168 / 0.12);
435
- --old-color-system-not-use-12-silver-16: rgba(168 162 168 / 0.16);
436
- --old-color-system-not-use-12-silver-24: rgba(168 162 168 / 0.24);
437
- --old-color-system-not-use-12-silver-32: rgba(168 162 168 / 0.32);
438
- --old-color-system-not-use-12-silver-48: rgba(168 162 168 / 0.48);
439
- --old-color-system-18-skeleton-skeleton-bg: #5f5f5f;
440
-
441
- /* GRIDS */
442
- --01-desktop-dashboard-size: 1080px;
443
- --01-desktop-dashboard-size-rem: 67.5rem;
444
- --01-desktop-dashboard-columns: 12;
445
- --01-desktop-dashboard-gutter: 24px;
446
- --01-desktop-dashboard-gutter-rem: 1.5rem;
447
- --01-desktop-24px-size: 1152px;
448
- --01-desktop-24px-size-rem: 72rem;
449
- --01-desktop-24px-columns: 12;
450
- --01-desktop-24px-gutter: 24px;
451
- --01-desktop-24px-gutter-rem: 1.5rem;
452
- --01-desktop-32px-columns: 12;
453
- --01-desktop-32px-gutter: 32px;
454
- --01-desktop-32px-gutter-rem: 2rem;
455
- --01-desktop-40px-size: 1148px;
456
- --01-desktop-40px-size-rem: 71.75rem;
457
- --01-desktop-40px-columns: 12;
458
- --01-desktop-40px-gutter: 40px;
459
- --01-desktop-40px-gutter-rem: 2.5rem;
460
- --01-desktop-80px-columns: 12;
461
- --01-desktop-80px-gutter: 80px;
462
- --01-desktop-80px-gutter-rem: 5rem;
463
- --02-mobile-24px-columns: 4;
464
- --02-mobile-24px-gutter: 24px;
465
- --02-mobile-24px-gutter-rem: 1.5rem;
466
-
467
-
468
- }