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