@rovula/ui 0.0.19 → 0.0.21

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 (207) hide show
  1. package/dist/cjs/bundle.css +3220 -1382
  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 +4 -4
  5. package/dist/cjs/types/components/ActionButton/ActionButton.styles copy.d.ts +6 -0
  6. package/dist/cjs/types/components/Button/Button.styles copy.d.ts +7 -0
  7. package/dist/cjs/types/components/Button/Button.styles.d.ts +1 -0
  8. package/dist/cjs/types/components/Button/Buttons.stories.d.ts +12 -4
  9. package/dist/cjs/types/components/Calendar/Calendar.d.ts +0 -1
  10. package/dist/cjs/types/components/Calendar/Calendar.stories.d.ts +7 -7
  11. package/dist/cjs/types/components/Checkbox/Checkbox.stories.d.ts +6 -6
  12. package/dist/cjs/types/components/DatePicker/DatePicker.d.ts +2 -0
  13. package/dist/cjs/types/components/DatePicker/DatePicker.stories.d.ts +2 -0
  14. package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +8 -6
  15. package/dist/cjs/types/components/Input/Input.stories.d.ts +12 -12
  16. package/dist/cjs/types/components/Label/Label.stories.d.ts +6 -6
  17. package/dist/cjs/types/components/Loading/Loading.d.ts +14 -0
  18. package/dist/cjs/types/components/Loading/Loading.stories.d.ts +35 -0
  19. package/dist/cjs/types/components/ProgressBar/ProgressBar.d.ts +13 -0
  20. package/dist/cjs/types/components/ProgressBar/ProgressBar.stories.d.ts +37 -0
  21. package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +5 -5
  22. package/dist/cjs/types/components/Search/Search.d.ts +22 -1
  23. package/dist/cjs/types/components/Search/Search.stories.d.ts +338 -7
  24. package/dist/cjs/types/components/Table/Table.stories.d.ts +4 -4
  25. package/dist/cjs/types/components/Text/Text.d.ts +1 -1
  26. package/dist/cjs/types/components/Text/Text.stories.d.ts +1 -1
  27. package/dist/cjs/types/components/TextInput/TextInput.d.ts +4 -0
  28. package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +11 -6
  29. package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +8 -0
  30. package/dist/cjs/types/index.d.ts +3 -0
  31. package/dist/cjs/types/stories/ColorGroupPreview.d.ts +1 -0
  32. package/dist/cjs/types/stories/ColorPreview.d.ts +5 -0
  33. package/dist/components/ActionButton/ActionButton.js +1 -1
  34. package/dist/components/ActionButton/ActionButton.stories.js +1 -1
  35. package/dist/components/ActionButton/ActionButton.styles copy.js +90 -0
  36. package/dist/components/ActionButton/ActionButton.styles.js +54 -15
  37. package/dist/components/AlertDialog/AlertDialog.js +2 -2
  38. package/dist/components/Avatar/Avatar.styles.js +1 -1
  39. package/dist/components/Button/Button.js +3 -2
  40. package/dist/components/Button/Button.styles copy.js +210 -0
  41. package/dist/components/Button/Button.styles.js +203 -43
  42. package/dist/components/Button/Buttons.stories.js +9 -1
  43. package/dist/components/Calendar/Calendar.js +39 -2
  44. package/dist/components/Checkbox/Checkbox.js +1 -1
  45. package/dist/components/Collapsible/Collapsible.styles.js +6 -3
  46. package/dist/components/DatePicker/DatePicker.js +13 -2
  47. package/dist/components/Dialog/Dialog.js +4 -4
  48. package/dist/components/Dropdown/Dropdown.js +9 -7
  49. package/dist/components/Dropdown/Dropdown.styles.js +1 -1
  50. package/dist/components/Input/Input.js +8 -1
  51. package/dist/components/Input/Input.stories.js +3 -2
  52. package/dist/components/Input/Input.styles.js +13 -5
  53. package/dist/components/Loading/Loading.js +23 -0
  54. package/dist/components/Loading/Loading.stories.js +37 -0
  55. package/dist/components/Popover/Popover.js +1 -1
  56. package/dist/components/ProgressBar/ProgressBar.js +22 -0
  57. package/dist/components/ProgressBar/ProgressBar.stories.js +52 -0
  58. package/dist/components/RadioGroup/RadioGroup.js +2 -2
  59. package/dist/components/Search/Search.js +6 -7
  60. package/dist/components/Search/Search.stories.js +8 -5
  61. package/dist/components/Text/Text.js +17 -2
  62. package/dist/components/Text/Text.stories.js +5 -1
  63. package/dist/components/TextInput/TextInput.js +14 -5
  64. package/dist/components/TextInput/TextInput.stories.js +3 -2
  65. package/dist/components/TextInput/TextInput.styles.js +120 -18
  66. package/dist/esm/bundle.css +3220 -1382
  67. package/dist/esm/bundle.js +3 -3
  68. package/dist/esm/bundle.js.map +1 -1
  69. package/dist/esm/types/components/ActionButton/ActionButton.stories.d.ts +4 -4
  70. package/dist/esm/types/components/ActionButton/ActionButton.styles copy.d.ts +6 -0
  71. package/dist/esm/types/components/Button/Button.styles copy.d.ts +7 -0
  72. package/dist/esm/types/components/Button/Button.styles.d.ts +1 -0
  73. package/dist/esm/types/components/Button/Buttons.stories.d.ts +12 -4
  74. package/dist/esm/types/components/Calendar/Calendar.d.ts +0 -1
  75. package/dist/esm/types/components/Calendar/Calendar.stories.d.ts +7 -7
  76. package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +6 -6
  77. package/dist/esm/types/components/DatePicker/DatePicker.d.ts +2 -0
  78. package/dist/esm/types/components/DatePicker/DatePicker.stories.d.ts +2 -0
  79. package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +8 -6
  80. package/dist/esm/types/components/Input/Input.stories.d.ts +12 -12
  81. package/dist/esm/types/components/Label/Label.stories.d.ts +6 -6
  82. package/dist/esm/types/components/Loading/Loading.d.ts +14 -0
  83. package/dist/esm/types/components/Loading/Loading.stories.d.ts +35 -0
  84. package/dist/esm/types/components/ProgressBar/ProgressBar.d.ts +13 -0
  85. package/dist/esm/types/components/ProgressBar/ProgressBar.stories.d.ts +37 -0
  86. package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +5 -5
  87. package/dist/esm/types/components/Search/Search.d.ts +22 -1
  88. package/dist/esm/types/components/Search/Search.stories.d.ts +338 -7
  89. package/dist/esm/types/components/Table/Table.stories.d.ts +4 -4
  90. package/dist/esm/types/components/Text/Text.d.ts +1 -1
  91. package/dist/esm/types/components/Text/Text.stories.d.ts +1 -1
  92. package/dist/esm/types/components/TextInput/TextInput.d.ts +4 -0
  93. package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +11 -6
  94. package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +8 -0
  95. package/dist/esm/types/index.d.ts +3 -0
  96. package/dist/esm/types/stories/ColorGroupPreview.d.ts +1 -0
  97. package/dist/esm/types/stories/ColorPreview.d.ts +5 -0
  98. package/dist/index.d.ts +53 -2
  99. package/dist/index.js +3 -0
  100. package/dist/src/theme/global.css +5078 -918
  101. package/dist/stories/ColorGroupPreview.js +478 -0
  102. package/dist/stories/ColorPreview.js +8 -0
  103. package/dist/theme/global.css +7 -227
  104. package/dist/theme/main-preset.js +131 -67
  105. package/dist/theme/plugins/utilities/typography.js +12 -0
  106. package/dist/theme/presets/colors.js +101 -220
  107. package/dist/theme/theme.d.ts +69 -0
  108. package/dist/theme/themes/xspector/baseline.css +7 -0
  109. package/dist/theme/themes/xspector/color.css +67 -0
  110. package/dist/theme/themes/xspector/components/action-button.css +98 -0
  111. package/dist/theme/themes/xspector/components/loading.css +11 -0
  112. package/dist/theme/themes/xspector/palette.css +122 -0
  113. package/dist/theme/themes/xspector/state.css +89 -0
  114. package/dist/theme/themes/xspector/transparent.css +68 -0
  115. package/dist/theme/themes/xspector/typography.css +27 -0
  116. package/dist/theme/tokens/baseline.css +10 -0
  117. package/dist/theme/tokens/color.css +63 -0
  118. package/dist/theme/tokens/components/action-button.css +127 -0
  119. package/dist/theme/tokens/components/button.css +512 -0
  120. package/dist/theme/tokens/components/loading.css +11 -0
  121. package/dist/theme/tokens/components/navbar.css +8 -0
  122. package/dist/theme/tokens/components/progress-bar.css +8 -0
  123. package/dist/theme/tokens/palette.css +122 -0
  124. package/dist/theme/tokens/state.css +82 -0
  125. package/dist/theme/tokens/transparent.css +68 -0
  126. package/dist/theme/tokens/typography.css +178 -0
  127. package/dist/theme/tokens/variables.css +28 -0
  128. package/dist/theme/utils.js +98 -0
  129. package/package.json +1 -1
  130. package/src/_theme/global copy.css +761 -0
  131. package/src/_theme/global.css +39 -0
  132. package/src/_theme/main-preset.js +239 -0
  133. package/src/_theme/plugins/utilities/typography.js +81 -0
  134. package/src/_theme/presets/colors copy 2.js +319 -0
  135. package/src/_theme/presets/colors copy.js +229 -0
  136. package/src/_theme/presets/colors.js +94 -0
  137. package/src/_theme/theme.d.ts +69 -0
  138. package/src/_theme/variables/base/button.css +334 -0
  139. package/src/_theme/variables/base/components copy.css +19 -0
  140. package/src/_theme/variables/default/colors.css +292 -0
  141. package/src/_theme/variables/default/typography.css +178 -0
  142. package/src/_theme/variables/xspector/colors.css +468 -0
  143. package/src/_theme/variables/xspector/typography.css +178 -0
  144. package/src/components/ActionButton/ActionButton.stories.tsx +1 -1
  145. package/src/components/ActionButton/ActionButton.styles copy.ts +95 -0
  146. package/src/components/ActionButton/ActionButton.styles.ts +54 -19
  147. package/src/components/ActionButton/ActionButton.tsx +1 -1
  148. package/src/components/AlertDialog/AlertDialog.tsx +2 -2
  149. package/src/components/Avatar/Avatar.styles.ts +1 -1
  150. package/src/components/Button/Button.styles copy.ts +214 -0
  151. package/src/components/Button/Button.styles.ts +203 -47
  152. package/src/components/Button/Button.tsx +4 -0
  153. package/src/components/Button/Buttons.stories.tsx +9 -1
  154. package/src/components/Calendar/Calendar.tsx +49 -7
  155. package/src/components/Checkbox/Checkbox.tsx +1 -1
  156. package/src/components/Collapsible/Collapsible.styles.ts +6 -3
  157. package/src/components/DatePicker/DatePicker.tsx +8 -2
  158. package/src/components/Dialog/Dialog.tsx +5 -5
  159. package/src/components/Dropdown/Dropdown.styles.ts +1 -1
  160. package/src/components/Dropdown/Dropdown.tsx +14 -12
  161. package/src/components/Input/Input.stories.tsx +3 -2
  162. package/src/components/Input/Input.styles.tsx +13 -6
  163. package/src/components/Input/Input.tsx +8 -1
  164. package/src/components/Loading/Loading.stories.tsx +43 -0
  165. package/src/components/Loading/Loading.tsx +72 -0
  166. package/src/components/Popover/Popover.tsx +1 -1
  167. package/src/components/ProgressBar/ProgressBar.stories.tsx +78 -0
  168. package/src/components/ProgressBar/ProgressBar.tsx +62 -0
  169. package/src/components/RadioGroup/RadioGroup.tsx +2 -2
  170. package/src/components/Search/Search.stories.tsx +13 -13
  171. package/src/components/Search/Search.tsx +14 -19
  172. package/src/components/Text/Text.stories.tsx +6 -4
  173. package/src/components/Text/Text.tsx +27 -3
  174. package/src/components/TextInput/TextInput.stories.tsx +3 -2
  175. package/src/components/TextInput/TextInput.styles.ts +124 -19
  176. package/src/components/TextInput/TextInput.tsx +34 -4
  177. package/src/index.ts +3 -0
  178. package/src/stories/ColorGroupPreview.tsx +494 -0
  179. package/src/stories/ColorPreview.tsx +45 -0
  180. package/src/stories/Colors.mdx +14 -0
  181. package/src/stories/Typography.mdx +7 -151
  182. package/src/theme/global.css +7 -227
  183. package/src/theme/main-preset.js +131 -67
  184. package/src/theme/plugins/utilities/typography.js +12 -0
  185. package/src/theme/presets/colors.js +101 -220
  186. package/src/theme/theme.d.ts +69 -0
  187. package/src/theme/themes/xspector/baseline.css +7 -0
  188. package/src/theme/themes/xspector/color.css +67 -0
  189. package/src/theme/themes/xspector/components/action-button.css +98 -0
  190. package/src/theme/themes/xspector/components/loading.css +11 -0
  191. package/src/theme/themes/xspector/palette.css +122 -0
  192. package/src/theme/themes/xspector/state.css +89 -0
  193. package/src/theme/themes/xspector/transparent.css +68 -0
  194. package/src/theme/themes/xspector/typography.css +27 -0
  195. package/src/theme/tokens/baseline.css +10 -0
  196. package/src/theme/tokens/color.css +63 -0
  197. package/src/theme/tokens/components/action-button.css +127 -0
  198. package/src/theme/tokens/components/button.css +512 -0
  199. package/src/theme/tokens/components/loading.css +11 -0
  200. package/src/theme/tokens/components/navbar.css +8 -0
  201. package/src/theme/tokens/components/progress-bar.css +8 -0
  202. package/src/theme/tokens/palette.css +122 -0
  203. package/src/theme/tokens/state.css +82 -0
  204. package/src/theme/tokens/transparent.css +68 -0
  205. package/src/theme/tokens/typography.css +178 -0
  206. package/src/theme/tokens/variables.css +28 -0
  207. package/src/theme/utils.js +98 -0
@@ -0,0 +1,178 @@
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
+ }
@@ -0,0 +1,468 @@
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
+ }