@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,761 @@
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
+ }