@amboss/design-system 1.9.1 → 1.9.5

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 (279) hide show
  1. package/build/cjs/build-tokens/_breakpoints.json.js +7 -0
  2. package/build/cjs/build-tokens/_icon_sizes_map.json.js +5 -0
  3. package/build/cjs/build-tokens/assets/icons.json.js +76 -0
  4. package/build/cjs/build-tokens/assets/icons16.json.js +80 -0
  5. package/build/cjs/build-tokens/assets/logo.json.js +7 -0
  6. package/build/cjs/build-tokens/visualConfig.js +1464 -0
  7. package/build/cjs/src/components/Badge/Badge.js +62 -0
  8. package/build/cjs/src/components/Box/Box.js +88 -0
  9. package/build/cjs/src/components/Button/Button.js +246 -0
  10. package/build/cjs/src/components/Callout/Callout.js +86 -0
  11. package/build/cjs/src/components/Card/Card.js +68 -0
  12. package/build/cjs/src/components/Card/CardBox.js +22 -0
  13. package/build/cjs/src/components/Card/CardHeader/CardHeader.js +59 -0
  14. package/build/cjs/src/components/Collapsible/Collapsible.js +115 -0
  15. package/build/cjs/src/components/Column/Columns.js +145 -0
  16. package/build/cjs/src/components/Container/Container.js +55 -0
  17. package/build/cjs/src/components/Divider/Divider.js +67 -0
  18. package/build/cjs/src/components/DropdownMenu/DropdownMenu.js +226 -0
  19. package/build/cjs/src/components/DropdownMenu/MenuItem.js +102 -0
  20. package/build/cjs/src/components/Form/Checkbox/Checkbox.js +146 -0
  21. package/build/cjs/src/components/Form/FormErrorMessages/FormErrorMessages.js +26 -0
  22. package/build/cjs/src/components/Form/FormField/FormField.js +56 -0
  23. package/build/cjs/src/components/Form/FormFieldGroup/FormFieldGroup.js +54 -0
  24. package/build/cjs/src/components/Form/FormLabelText/FormLabelText.js +41 -0
  25. package/build/cjs/src/components/Form/Input/Input.js +181 -0
  26. package/build/cjs/src/components/Form/PasswordInput/PasswordInput.js +224 -0
  27. package/build/cjs/src/components/Form/Radio/Radio.js +137 -0
  28. package/build/cjs/src/components/Form/RadioButton/RadioButton.js +137 -0
  29. package/build/cjs/src/components/Form/Select/Select.js +287 -0
  30. package/build/cjs/src/components/Form/Textarea/Textarea.js +89 -0
  31. package/build/cjs/src/components/Form/Toggle/Toggle.js +178 -0
  32. package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +142 -0
  33. package/build/cjs/src/components/Icon/Icon.js +91 -0
  34. package/build/cjs/src/components/Inline/Inline.js +110 -0
  35. package/build/cjs/src/components/Link/Link.js +78 -0
  36. package/build/cjs/src/components/Logo/Logo.js +43 -0
  37. package/build/cjs/src/components/MediaItem/MediaItem.js +124 -0
  38. package/build/cjs/src/components/MediaViewerBar/MediaViewerBar.js +72 -0
  39. package/build/cjs/src/components/Notification/Notification.js +106 -0
  40. package/build/cjs/src/components/Patterns/ButtonGroup/ButtonGroup.js +43 -0
  41. package/build/cjs/src/components/Patterns/Modal/Modal.js +220 -0
  42. package/build/cjs/src/components/PictogramButton/PictogramButton.js +118 -0
  43. package/build/cjs/src/components/Portal/Portal.js +22 -0
  44. package/build/cjs/src/components/ProgressBar/ProgressBar.js +38 -0
  45. package/build/cjs/src/components/RoundButton/RoundButton.js +116 -0
  46. package/build/cjs/src/components/SearchResult/SearchResult.js +177 -0
  47. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBar.js +107 -0
  48. package/build/cjs/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +42 -0
  49. package/build/cjs/src/components/Stack/Stack.js +77 -0
  50. package/build/cjs/src/components/SubThemeProvider/SubThemeProvider.js +54 -0
  51. package/build/cjs/src/components/Tabs/Tabs.js +132 -0
  52. package/build/cjs/src/components/Typography/Header/Header.js +114 -0
  53. package/build/cjs/src/components/Typography/StyledText/StyledText.js +167 -0
  54. package/build/cjs/src/components/Typography/Text/Text.js +61 -0
  55. package/build/cjs/src/components/Typography/TextClamped/TextClamped.js +53 -0
  56. package/build/cjs/src/components/VirtualScrollList/VirtualScrollList.js +115 -0
  57. package/build/cjs/src/components/VirtualScrollList/VirtualScrollListReducer.js +131 -0
  58. package/build/cjs/src/index.js +120 -0
  59. package/build/cjs/src/shared/flattenChildren.js +33 -0
  60. package/build/cjs/src/shared/informDeprecation.js +12 -0
  61. package/build/cjs/src/shared/mediaQueries.js +68 -0
  62. package/build/cjs/src/shared/useAutoPosition.js +42 -0
  63. package/build/cjs/src/shared/useDocument.js +7 -0
  64. package/build/cjs/src/shared/useHover.js +26 -0
  65. package/build/cjs/src/shared/useKeyboard.js +43 -0
  66. package/build/cjs/src/shared/useOnEscapePress.js +52 -0
  67. package/build/cjs/src/shared/useOutsideClick.js +33 -0
  68. package/build/cjs/src/shared/useWindow.js +7 -0
  69. package/build/esm/build-tokens/_breakpoints.json.js +4 -0
  70. package/build/esm/build-tokens/_breakpoints.json.js.map +1 -0
  71. package/build/esm/build-tokens/_icon_sizes_map.json.js +4 -0
  72. package/build/esm/build-tokens/_icon_sizes_map.json.js.map +1 -0
  73. package/build/esm/build-tokens/assets/icons.json.js +4 -0
  74. package/build/esm/build-tokens/assets/icons.json.js.map +1 -0
  75. package/build/esm/build-tokens/assets/icons16.json.js +4 -0
  76. package/build/esm/build-tokens/assets/icons16.json.js.map +1 -0
  77. package/build/esm/build-tokens/assets/logo.json.js +4 -0
  78. package/build/esm/build-tokens/assets/logo.json.js.map +1 -0
  79. package/build/esm/build-tokens/visualConfig.js +1463 -0
  80. package/build/esm/build-tokens/visualConfig.js.map +1 -0
  81. package/build/esm/src/components/Badge/Badge.js +56 -0
  82. package/build/esm/src/components/Badge/Badge.js.map +1 -0
  83. package/build/esm/src/components/Box/Box.js +81 -0
  84. package/build/esm/src/components/Box/Box.js.map +1 -0
  85. package/build/esm/src/components/Button/Button.js +238 -0
  86. package/build/esm/src/components/Button/Button.js.map +1 -0
  87. package/build/esm/src/components/Callout/Callout.js +80 -0
  88. package/build/esm/src/components/Callout/Callout.js.map +1 -0
  89. package/build/esm/src/components/Card/Card.js +62 -0
  90. package/build/esm/src/components/Card/Card.js.map +1 -0
  91. package/build/esm/src/components/Card/CardBox.js +17 -0
  92. package/build/esm/src/components/Card/CardBox.js.map +1 -0
  93. package/build/esm/src/components/Card/CardHeader/CardHeader.js +52 -0
  94. package/build/esm/src/components/Card/CardHeader/CardHeader.js.map +1 -0
  95. package/build/esm/src/components/Collapsible/Collapsible.js +107 -0
  96. package/build/esm/src/components/Collapsible/Collapsible.js.map +1 -0
  97. package/build/esm/src/components/Column/Columns.js +139 -0
  98. package/build/esm/src/components/Column/Columns.js.map +1 -0
  99. package/build/esm/src/components/Container/Container.js +49 -0
  100. package/build/esm/src/components/Container/Container.js.map +1 -0
  101. package/build/esm/src/components/Divider/Divider.js +61 -0
  102. package/build/esm/src/components/Divider/Divider.js.map +1 -0
  103. package/build/esm/src/components/DropdownMenu/DropdownMenu.js +220 -0
  104. package/build/esm/src/components/DropdownMenu/DropdownMenu.js.map +1 -0
  105. package/build/esm/src/components/DropdownMenu/MenuItem.js +96 -0
  106. package/build/esm/src/components/DropdownMenu/MenuItem.js.map +1 -0
  107. package/build/esm/src/components/Form/Checkbox/Checkbox.js +139 -0
  108. package/build/esm/src/components/Form/Checkbox/Checkbox.js.map +1 -0
  109. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js +21 -0
  110. package/build/esm/src/components/Form/FormErrorMessages/FormErrorMessages.js.map +1 -0
  111. package/build/esm/src/components/Form/FormField/FormField.js +50 -0
  112. package/build/esm/src/components/Form/FormField/FormField.js.map +1 -0
  113. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js +48 -0
  114. package/build/esm/src/components/Form/FormFieldGroup/FormFieldGroup.js.map +1 -0
  115. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js +35 -0
  116. package/build/esm/src/components/Form/FormLabelText/FormLabelText.js.map +1 -0
  117. package/build/esm/src/components/Form/Input/Input.js +174 -0
  118. package/build/esm/src/components/Form/Input/Input.js.map +1 -0
  119. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js +217 -0
  120. package/build/esm/src/components/Form/PasswordInput/PasswordInput.js.map +1 -0
  121. package/build/esm/src/components/Form/Radio/Radio.js +130 -0
  122. package/build/esm/src/components/Form/Radio/Radio.js.map +1 -0
  123. package/build/esm/src/components/Form/RadioButton/RadioButton.js +130 -0
  124. package/build/esm/src/components/Form/RadioButton/RadioButton.js.map +1 -0
  125. package/build/esm/src/components/Form/Select/Select.js +281 -0
  126. package/build/esm/src/components/Form/Select/Select.js.map +1 -0
  127. package/build/esm/src/components/Form/Textarea/Textarea.js +83 -0
  128. package/build/esm/src/components/Form/Textarea/Textarea.js.map +1 -0
  129. package/build/esm/src/components/Form/Toggle/Toggle.js +171 -0
  130. package/build/esm/src/components/Form/Toggle/Toggle.js.map +1 -0
  131. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +135 -0
  132. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -0
  133. package/build/esm/src/components/Icon/Icon.js +85 -0
  134. package/build/esm/src/components/Icon/Icon.js.map +1 -0
  135. package/build/esm/src/components/Inline/Inline.js +104 -0
  136. package/build/esm/src/components/Inline/Inline.js.map +1 -0
  137. package/build/esm/src/components/Link/Link.js +71 -0
  138. package/build/esm/src/components/Link/Link.js.map +1 -0
  139. package/build/esm/src/components/Logo/Logo.js +37 -0
  140. package/build/esm/src/components/Logo/Logo.js.map +1 -0
  141. package/build/esm/src/components/MediaItem/MediaItem.js +118 -0
  142. package/build/esm/src/components/MediaItem/MediaItem.js.map +1 -0
  143. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js +66 -0
  144. package/build/esm/src/components/MediaViewerBar/MediaViewerBar.js.map +1 -0
  145. package/build/esm/src/components/Notification/Notification.js +100 -0
  146. package/build/esm/src/components/Notification/Notification.js.map +1 -0
  147. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js +38 -0
  148. package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js.map +1 -0
  149. package/build/esm/src/components/Patterns/Modal/Modal.js +213 -0
  150. package/build/esm/src/components/Patterns/Modal/Modal.js.map +1 -0
  151. package/build/esm/src/components/PictogramButton/PictogramButton.js +111 -0
  152. package/build/esm/src/components/PictogramButton/PictogramButton.js.map +1 -0
  153. package/build/esm/src/components/Portal/Portal.js +16 -0
  154. package/build/esm/src/components/Portal/Portal.js.map +1 -0
  155. package/build/esm/src/components/ProgressBar/ProgressBar.js +33 -0
  156. package/build/esm/src/components/ProgressBar/ProgressBar.js.map +1 -0
  157. package/build/esm/src/components/RoundButton/RoundButton.js +109 -0
  158. package/build/esm/src/components/RoundButton/RoundButton.js.map +1 -0
  159. package/build/esm/src/components/SearchResult/SearchResult.js +171 -0
  160. package/build/esm/src/components/SearchResult/SearchResult.js.map +1 -0
  161. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js +101 -0
  162. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBar.js.map +1 -0
  163. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js +40 -0
  164. package/build/esm/src/components/SegmentedProgressBar/SegmentedProgressBarUtil.js.map +1 -0
  165. package/build/esm/src/components/Stack/Stack.js +71 -0
  166. package/build/esm/src/components/Stack/Stack.js.map +1 -0
  167. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js +49 -0
  168. package/build/esm/src/components/SubThemeProvider/SubThemeProvider.js.map +1 -0
  169. package/build/esm/src/components/Tabs/Tabs.js +125 -0
  170. package/build/esm/src/components/Tabs/Tabs.js.map +1 -0
  171. package/build/esm/src/components/Typography/Header/Header.js +104 -0
  172. package/build/esm/src/components/Typography/Header/Header.js.map +1 -0
  173. package/build/esm/src/components/Typography/StyledText/StyledText.js +160 -0
  174. package/build/esm/src/components/Typography/StyledText/StyledText.js.map +1 -0
  175. package/build/esm/src/components/Typography/Text/Text.js +55 -0
  176. package/build/esm/src/components/Typography/Text/Text.js.map +1 -0
  177. package/build/esm/src/components/Typography/TextClamped/TextClamped.js +46 -0
  178. package/build/esm/src/components/Typography/TextClamped/TextClamped.js.map +1 -0
  179. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js +109 -0
  180. package/build/esm/src/components/VirtualScrollList/VirtualScrollList.js.map +1 -0
  181. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js +130 -0
  182. package/build/esm/src/components/VirtualScrollList/VirtualScrollListReducer.js.map +1 -0
  183. package/build/esm/src/index.js +53 -0
  184. package/build/esm/src/index.js.map +1 -0
  185. package/build/esm/src/shared/flattenChildren.d.ts +11 -0
  186. package/build/esm/src/shared/flattenChildren.js +32 -0
  187. package/build/esm/src/shared/flattenChildren.js.map +1 -0
  188. package/build/esm/src/shared/informDeprecation.js +11 -0
  189. package/build/esm/src/shared/informDeprecation.js.map +1 -0
  190. package/build/esm/src/shared/mediaQueries.js +66 -0
  191. package/build/esm/src/shared/mediaQueries.js.map +1 -0
  192. package/build/esm/src/shared/useAutoPosition.js +41 -0
  193. package/build/esm/src/shared/useAutoPosition.js.map +1 -0
  194. package/build/esm/src/shared/useDocument.js +6 -0
  195. package/build/esm/src/shared/useDocument.js.map +1 -0
  196. package/build/esm/src/shared/useHover.js +25 -0
  197. package/build/esm/src/shared/useHover.js.map +1 -0
  198. package/build/esm/src/shared/useKeyboard.js +42 -0
  199. package/build/esm/src/shared/useKeyboard.js.map +1 -0
  200. package/build/esm/src/shared/useOnEscapePress.js +51 -0
  201. package/build/esm/src/shared/useOnEscapePress.js.map +1 -0
  202. package/build/esm/src/shared/useOutsideClick.js +32 -0
  203. package/build/esm/src/shared/useOutsideClick.js.map +1 -0
  204. package/build/esm/src/shared/useWindow.js +6 -0
  205. package/build/esm/src/shared/useWindow.js.map +1 -0
  206. package/package.json +27 -9
  207. package/build/build-tokens/assets/icons.json +0 -131
  208. package/build/build-tokens/assets/icons16.json +0 -142
  209. package/build/build-tokens/assets/logo.json +0 -3
  210. package/build/index.js +0 -3
  211. package/build/index.js.LICENSE.txt +0 -8
  212. package/build/index.js.map +0 -1
  213. /package/build/{build-tokens → esm/build-tokens}/_subThemeType.d.ts +0 -0
  214. /package/build/{build-tokens → esm/build-tokens}/visualConfig.d.ts +0 -0
  215. /package/build/{src → esm/src}/components/Badge/Badge.d.ts +0 -0
  216. /package/build/{src → esm/src}/components/Box/Box.d.ts +0 -0
  217. /package/build/{src → esm/src}/components/Button/Button.d.ts +0 -0
  218. /package/build/{src → esm/src}/components/Callout/Callout.d.ts +0 -0
  219. /package/build/{src → esm/src}/components/Card/Card.d.ts +0 -0
  220. /package/build/{src → esm/src}/components/Card/CardBox.d.ts +0 -0
  221. /package/build/{src → esm/src}/components/Card/CardHeader/CardHeader.d.ts +0 -0
  222. /package/build/{src → esm/src}/components/Collapsible/Collapsible.d.ts +0 -0
  223. /package/build/{src → esm/src}/components/Column/Columns.d.ts +0 -0
  224. /package/build/{src → esm/src}/components/Container/Container.d.ts +0 -0
  225. /package/build/{src → esm/src}/components/Divider/Divider.d.ts +0 -0
  226. /package/build/{src → esm/src}/components/DropdownMenu/DropdownMenu.d.ts +0 -0
  227. /package/build/{src → esm/src}/components/DropdownMenu/MenuItem.d.ts +0 -0
  228. /package/build/{src → esm/src}/components/Form/Checkbox/Checkbox.d.ts +0 -0
  229. /package/build/{src → esm/src}/components/Form/FormErrorMessages/FormErrorMessages.d.ts +0 -0
  230. /package/build/{src → esm/src}/components/Form/FormField/FormField.d.ts +0 -0
  231. /package/build/{src → esm/src}/components/Form/FormFieldGroup/FormFieldGroup.d.ts +0 -0
  232. /package/build/{src → esm/src}/components/Form/FormLabelText/FormLabelText.d.ts +0 -0
  233. /package/build/{src → esm/src}/components/Form/Input/Input.d.ts +0 -0
  234. /package/build/{src → esm/src}/components/Form/PasswordInput/PasswordInput.d.ts +0 -0
  235. /package/build/{src → esm/src}/components/Form/Radio/Radio.d.ts +0 -0
  236. /package/build/{src → esm/src}/components/Form/RadioButton/RadioButton.d.ts +0 -0
  237. /package/build/{src → esm/src}/components/Form/Select/Select.d.ts +0 -0
  238. /package/build/{src → esm/src}/components/Form/Textarea/Textarea.d.ts +0 -0
  239. /package/build/{src → esm/src}/components/Form/Toggle/Toggle.d.ts +0 -0
  240. /package/build/{src → esm/src}/components/Form/ToggleButton/ToggleButton.d.ts +0 -0
  241. /package/build/{src → esm/src}/components/Icon/Icon.d.ts +0 -0
  242. /package/build/{src → esm/src}/components/Inline/Inline.d.ts +0 -0
  243. /package/build/{src → esm/src}/components/Link/Link.d.ts +0 -0
  244. /package/build/{src → esm/src}/components/Logo/Logo.d.ts +0 -0
  245. /package/build/{src → esm/src}/components/MediaItem/MediaItem.d.ts +0 -0
  246. /package/build/{src → esm/src}/components/MediaViewerBar/MediaViewerBar.d.ts +0 -0
  247. /package/build/{src → esm/src}/components/Notification/ExpandedContent.d.ts +0 -0
  248. /package/build/{src → esm/src}/components/Notification/Notification.d.ts +0 -0
  249. /package/build/{src → esm/src}/components/Patterns/ButtonGroup/ButtonGroup.d.ts +0 -0
  250. /package/build/{src → esm/src}/components/Patterns/Modal/Modal.d.ts +0 -0
  251. /package/build/{src → esm/src}/components/PictogramButton/PictogramButton.d.ts +0 -0
  252. /package/build/{src → esm/src}/components/Portal/Portal.d.ts +0 -0
  253. /package/build/{src → esm/src}/components/ProgressBar/ProgressBar.d.ts +0 -0
  254. /package/build/{src → esm/src}/components/RoundButton/RoundButton.d.ts +0 -0
  255. /package/build/{src → esm/src}/components/SearchResult/SearchResult.d.ts +0 -0
  256. /package/build/{src → esm/src}/components/SegmentedProgressBar/SegmentedProgressBar.d.ts +0 -0
  257. /package/build/{src → esm/src}/components/SegmentedProgressBar/SegmentedProgressBarUtil.d.ts +0 -0
  258. /package/build/{src → esm/src}/components/ShadowWebComponent/ShadowWebComponent.d.ts +0 -0
  259. /package/build/{src → esm/src}/components/Stack/Stack.d.ts +0 -0
  260. /package/build/{src → esm/src}/components/SubThemeProvider/SubThemeProvider.d.ts +0 -0
  261. /package/build/{src → esm/src}/components/Tabs/Tabs.d.ts +0 -0
  262. /package/build/{src → esm/src}/components/Typography/Header/Header.d.ts +0 -0
  263. /package/build/{src → esm/src}/components/Typography/StyledText/StyledText.d.ts +0 -0
  264. /package/build/{src → esm/src}/components/Typography/Text/Text.d.ts +0 -0
  265. /package/build/{src → esm/src}/components/Typography/TextClamped/TextClamped.d.ts +0 -0
  266. /package/build/{src → esm/src}/components/VirtualScrollList/VirtualScrollList.d.ts +0 -0
  267. /package/build/{src → esm/src}/components/VirtualScrollList/VirtualScrollListReducer.d.ts +0 -0
  268. /package/build/{src → esm/src}/index.d.ts +0 -0
  269. /package/build/{src → esm/src}/shared/informDeprecation.d.ts +0 -0
  270. /package/build/{src → esm/src}/shared/mediaQueries.d.ts +0 -0
  271. /package/build/{src → esm/src}/shared/replaceDeprecated.d.ts +0 -0
  272. /package/build/{src → esm/src}/shared/useAutoPosition.d.ts +0 -0
  273. /package/build/{src → esm/src}/shared/useDocument.d.ts +0 -0
  274. /package/build/{src → esm/src}/shared/useHover.d.ts +0 -0
  275. /package/build/{src → esm/src}/shared/useKeyboard.d.ts +0 -0
  276. /package/build/{src → esm/src}/shared/useOnEscapePress.d.ts +0 -0
  277. /package/build/{src → esm/src}/shared/useOutsideClick.d.ts +0 -0
  278. /package/build/{src → esm/src}/shared/useWindow.d.ts +0 -0
  279. /package/build/{src → esm/src}/types/index.d.ts +0 -0
@@ -0,0 +1,1464 @@
1
+ 'use strict';
2
+
3
+ const variables = {
4
+ "color": {
5
+ "neutral": {
6
+ "white": "#ffffff",
7
+ "whiteTransparent01": "rgba(255, 255, 255, 0.8)",
8
+ "whiteTransparent02": "rgba(255, 255, 255, 0.6)",
9
+ "whiteTransparent03": "rgba(255, 255, 255, 0.08)",
10
+ "black": "#1a1c1c",
11
+ "blackTransparent02": "rgba(0, 0, 0, 0.6)"
12
+ },
13
+ "green": {
14
+ "regular": "#0fa980",
15
+ "regularAlt": "#39d6ac",
16
+ "dark01": "#0b8363",
17
+ "dark02": "#0a5c45",
18
+ "light01": "#8adcc6",
19
+ "light02": "#d0f1e8",
20
+ "light03": "#e8f8f4",
21
+ "regularTransparent": "rgba(15, 169, 128, 0.3)",
22
+ "dark02Transparent": "rgba(10, 92, 69, 0.3)"
23
+ },
24
+ "blue": {
25
+ "regular": "#1f6ce0",
26
+ "dark01": "#295dae",
27
+ "dark02": "#1c427d",
28
+ "light01": "#6e95cf",
29
+ "light02": "#d2e2f9",
30
+ "light03": "#e7effe",
31
+ "dark02Transparent": "rgba(28, 66, 125, 0.3)"
32
+ },
33
+ "gray": {
34
+ "light04": "#f5f7f9",
35
+ "light03": "#eef2f5",
36
+ "light02": "#e0e6eb",
37
+ "light01": "#a3b2bd",
38
+ "regular": "#607585",
39
+ "dark01": "#40515e",
40
+ "dark02": "#314554",
41
+ "transparent": "rgba(96, 117, 133, 0.08)",
42
+ "light01Transparent": "rgba(163, 178, 189, 0.3)",
43
+ "dark01Transparent": "rgba(64, 81, 94, 0.3)",
44
+ "dark02Transparent": "rgba(49, 69, 84, 0.3)"
45
+ },
46
+ "brand": {
47
+ "light03": "#e7f6f8",
48
+ "light02": "#ceedf1",
49
+ "light01": "#85d3dc",
50
+ "regular": "#0aa6b8",
51
+ "dark01": "#067c89",
52
+ "dark02": "#054f57"
53
+ },
54
+ "orange": {
55
+ "light03": "#fef3e1",
56
+ "light02": "#fceaca",
57
+ "light01": "#f6c66f",
58
+ "regular": "#f6bc56",
59
+ "regularAlt": "#f1d56b",
60
+ "dark01": "#df9411",
61
+ "dark02": "#9a6304"
62
+ },
63
+ "red": {
64
+ "light03": "#fde8e8",
65
+ "light02": "#fad1d1",
66
+ "light01": "#f07575",
67
+ "regular": "#ee6160",
68
+ "dark01": "#dc4847",
69
+ "dark02": "#c02725",
70
+ "dark02Transparent": "rgba(192, 39, 37, 0.3)"
71
+ },
72
+ "purple": {
73
+ "light03": "#f2effb",
74
+ "light02": "#d8d0f3",
75
+ "light01": "#a592e3",
76
+ "regular": "#7254d3",
77
+ "dark01": "#5d44ab",
78
+ "dark02": "#493687"
79
+ },
80
+ "yellow": {
81
+ "light03": "#fdfbe3",
82
+ "light02": "#faf5b8",
83
+ "light01": "#f3eb75",
84
+ "regular": "#ede13b",
85
+ "dark01": "#cec31c",
86
+ "dark02": "#a39905"
87
+ },
88
+ "nightBlack": {
89
+ "light03": "#40454f",
90
+ "light02": "#393e47",
91
+ "light01": "#32363e",
92
+ "regular": "#282c34",
93
+ "dark01": "#24282d",
94
+ "dark02": "#1e2125",
95
+ "light01Transparent": "rgba(50, 54, 62, 0.3)"
96
+ },
97
+ "nightGray": {
98
+ "light03": "#d8dade",
99
+ "light02": "#ced1d6",
100
+ "light01": "#b9bcc3",
101
+ "regular": "#93979f",
102
+ "dark01": "#757a84",
103
+ "dark02": "#5b5f67",
104
+ "transparent": "rgba(147, 151, 159, 0.08)",
105
+ "light03Transparent": "rgba(216, 218, 222, 0.3)"
106
+ },
107
+ "nightGreen": {
108
+ "light03": "#e2fef7",
109
+ "light02": "#a6f2dd",
110
+ "light01": "#41a48a",
111
+ "regular": "#28816b",
112
+ "dark01": "#233d3d",
113
+ "dark02": "#262e33",
114
+ "light01Transparent": "rgba(40, 129, 107, 0.3)",
115
+ "dark02Transparent": "rgba(38, 46, 51, 0.3)"
116
+ },
117
+ "nightBlue": {
118
+ "light03": "#e7effe",
119
+ "light02": "#99c1fa",
120
+ "light01": "#6e95cf",
121
+ "regular": "#2f538a",
122
+ "dark01": "#29364c",
123
+ "dark02": "#282e39"
124
+ },
125
+ "nightBrand": {
126
+ "light03": "#e1fbfe",
127
+ "light02": "#80dfea",
128
+ "light01": "#62b2bc",
129
+ "regular": "#1d6670",
130
+ "dark01": "#223c44",
131
+ "dark02": "#262f36"
132
+ },
133
+ "nightOrange": {
134
+ "light03": "#fef3e1",
135
+ "light02": "#fae0b3",
136
+ "light01": "#cbac76",
137
+ "regular": "#a4792d",
138
+ "dark01": "#4d412c",
139
+ "dark02": "#32302f"
140
+ },
141
+ "nightRed": {
142
+ "light03": "#fee7e7",
143
+ "light02": "#f49a9a",
144
+ "light01": "#d07c7c",
145
+ "regular": "#a45355",
146
+ "dark01": "#4d3237",
147
+ "dark02": "#312b31",
148
+ "dark02Transparent": "rgba(49, 43, 49, 0.3)"
149
+ },
150
+ "nightPurple": {
151
+ "light03": "#e8e1fe",
152
+ "light02": "#ad97f7",
153
+ "light01": "#7d67c5",
154
+ "regular": "#524389",
155
+ "dark01": "#33314b",
156
+ "dark02": "#2c2d3a"
157
+ },
158
+ "nightYellow": {
159
+ "light03": "#fefbd2",
160
+ "light02": "#f9f4a9",
161
+ "light01": "#cbc576",
162
+ "regular": "#b2ab39",
163
+ "dark01": "#494a2f",
164
+ "dark02": "#323530"
165
+ }
166
+ },
167
+ "fontFamily": {
168
+ "lato": "Lato, -apple-system, BlinkMacSystemFont, segoe ui, avenir next, avenir, 'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif"
169
+ },
170
+ "opacity": {
171
+ "button": {
172
+ "disabled": 0.3
173
+ },
174
+ "form": {
175
+ "disabled": "0.35"
176
+ }
177
+ },
178
+ "shadow": {
179
+ "card": {
180
+ "a": "0px 0.3px 0.6px rgba(0, 0, 0, 0.0035), 0px 2px 5px rgba(0, 0, 0, 0.07)",
181
+ "b": "0px 0.5px 2.5px rgba(0, 0, 0, 0.16), 0px 4px 20px rgba(0, 0, 0, 0.2)",
182
+ "c": "0px 0.5px 2.5px rgba(0, 0, 0, 0.16), 0px 4px 20px rgba(0, 0, 0, 0.2)",
183
+ "d": "0px 4px 14px rgba(0, 0, 0, 0.12), 0px 32px 112px rgba(0, 0, 0, 0.24)"
184
+ }
185
+ },
186
+ "size": {
187
+ "dimension": {
188
+ "checkbox": {
189
+ "m": "24px"
190
+ },
191
+ "radio": {
192
+ "m": "24px"
193
+ },
194
+ "radioPoint": {
195
+ "m": "10px"
196
+ },
197
+ "toggle": {
198
+ "height": {
199
+ "s": "16px",
200
+ "m": "24px"
201
+ },
202
+ "width": {
203
+ "s": "28px",
204
+ "m": "40px"
205
+ }
206
+ },
207
+ "textarea": {
208
+ "minHeight": {
209
+ "m": "36px"
210
+ }
211
+ },
212
+ "togglePoint": {
213
+ "s": "8px",
214
+ "m": "16px"
215
+ },
216
+ "toggleButton": {
217
+ "height": {
218
+ "m": "32px"
219
+ }
220
+ },
221
+ "dropdownMenu": {
222
+ "width": "120px"
223
+ },
224
+ "modal": {
225
+ "width": "560px"
226
+ },
227
+ "mediaViewerBar": {
228
+ "separator": {
229
+ "width": "1px"
230
+ }
231
+ }
232
+ },
233
+ "borderRadius": {
234
+ "button": {
235
+ "m": "4px"
236
+ },
237
+ "container": {
238
+ "m": "12px"
239
+ },
240
+ "card": {
241
+ "m": "12px"
242
+ },
243
+ "input": {
244
+ "s": "4px"
245
+ },
246
+ "textarea": {
247
+ "s": "4px"
248
+ },
249
+ "dropdown": {
250
+ "s": "4px",
251
+ "m": "8px"
252
+ },
253
+ "checkbox": {
254
+ "m": "4px"
255
+ },
256
+ "radio": {
257
+ "m": "12px"
258
+ },
259
+ "toggle": {
260
+ "s": "8px",
261
+ "m": "16px"
262
+ },
263
+ "badge": {
264
+ "m": "24px"
265
+ },
266
+ "toggleButton": {
267
+ "m": "16px"
268
+ },
269
+ "progressBar": "4px"
270
+ },
271
+ "spacing": {
272
+ "zero": "0px",
273
+ "xxxs": "2px",
274
+ "xxs": "4px",
275
+ "xs": "8px",
276
+ "s": "12px",
277
+ "m": "16px",
278
+ "l": "24px",
279
+ "xl": "32px",
280
+ "xxl": "48px"
281
+ },
282
+ "letterSpacing": {
283
+ "badge": {
284
+ "m": "1px"
285
+ }
286
+ },
287
+ "font": {
288
+ "button": {
289
+ "m": "14px"
290
+ },
291
+ "icon": {
292
+ "s": "16px",
293
+ "m": "24px",
294
+ "l": "48px"
295
+ },
296
+ "link": {
297
+ "xs": "10px",
298
+ "s": "12px",
299
+ "m": "14px",
300
+ "l": "16px"
301
+ },
302
+ "badge": {
303
+ "m": "12px"
304
+ },
305
+ "toggleButton": {
306
+ "m": "14px"
307
+ },
308
+ "text": {
309
+ "xs": "12px",
310
+ "s": "14px",
311
+ "m": "16px"
312
+ },
313
+ "header": {
314
+ "xxs": "12px",
315
+ "xs": "16px",
316
+ "s": "18px",
317
+ "m": "20px",
318
+ "l": "23px",
319
+ "xl": "26px"
320
+ }
321
+ },
322
+ "lineHeight": {
323
+ "button": {
324
+ "m": "16px"
325
+ },
326
+ "callout": {
327
+ "s": "24px"
328
+ },
329
+ "link": {
330
+ "xs": "16px",
331
+ "s": "18px",
332
+ "m": "20px",
333
+ "l": "22px"
334
+ },
335
+ "badge": {
336
+ "m": "16px"
337
+ },
338
+ "toggleButton": {
339
+ "m": "16px"
340
+ },
341
+ "text": {
342
+ "xs": "18px",
343
+ "s": "20px",
344
+ "m": "24px"
345
+ },
346
+ "header": {
347
+ "xxs": "16px",
348
+ "xs": "20px",
349
+ "s": "22px",
350
+ "m": "24px",
351
+ "l": "28px",
352
+ "xl": "32px"
353
+ }
354
+ }
355
+ },
356
+ "weight": {
357
+ "normal": 400,
358
+ "bold": 700,
359
+ "black": 900,
360
+ "inherit": "inherit"
361
+ }
362
+ };
363
+ const ambossVisualConfiguration = {
364
+ "dark": {
365
+ "variables": variables,
366
+ "values": {
367
+ "color": {
368
+ "logo": {
369
+ "base": "#d8dade"
370
+ },
371
+ "background": {
372
+ "layer_1": "#1e2125",
373
+ "layer_2": "#24282d",
374
+ "layer_3": "#282c34",
375
+ "layer_4": "#393e47",
376
+ "backdrop": "rgba(0, 0, 0, 0.6)",
377
+ "button": {
378
+ "primary": {
379
+ "base": "#28816b",
380
+ "hover": "#41a48a",
381
+ "active": "#233d3d",
382
+ "disabled": "rgba(40, 129, 107, 0.3)"
383
+ },
384
+ "secondary": {
385
+ "base": "transparent",
386
+ "hover": "rgba(147, 151, 159, 0.08)",
387
+ "active": "transparent",
388
+ "disabled": "transparent"
389
+ },
390
+ "tertiary": {
391
+ "base": "transparent",
392
+ "hover": "rgba(147, 151, 159, 0.08)",
393
+ "active": "rgba(147, 151, 159, 0.08)",
394
+ "disabled": "transparent"
395
+ }
396
+ },
397
+ "callout": {
398
+ "warning": "#32302f",
399
+ "success": "#262e33",
400
+ "info": "#282e39",
401
+ "error": "#312b31"
402
+ },
403
+ "input": {
404
+ "default": "#1a1c1c"
405
+ },
406
+ "textarea": {
407
+ "default": "#1a1c1c"
408
+ },
409
+ "checkbox": {
410
+ "default": "#24282d",
411
+ "checked": "#28816b",
412
+ "checkedHover": "#41a48a"
413
+ },
414
+ "dropdown": {
415
+ "active": "#393e47"
416
+ },
417
+ "toggle": {
418
+ "default": "#757a84",
419
+ "checked": "#28816b",
420
+ "highlighted": "#f9f4a9"
421
+ },
422
+ "togglePoint": {
423
+ "default": "#ced1d6"
424
+ },
425
+ "radio": {
426
+ "default": "#24282d",
427
+ "checked": "#24282d",
428
+ "checkedHover": "#24282d"
429
+ },
430
+ "tabs": {
431
+ "header": "#282c34",
432
+ "buttonActive": "#24282d",
433
+ "buttonHover": "#393e47"
434
+ },
435
+ "badge": {
436
+ "default": "transparent",
437
+ "green": "transparent",
438
+ "blue": "transparent",
439
+ "yellow": "transparent",
440
+ "brand": "transparent",
441
+ "purple": "transparent",
442
+ "red": "transparent",
443
+ "gray": "transparent"
444
+ },
445
+ "toggleButton": {
446
+ "default": "transparent",
447
+ "active": "#40515e",
448
+ "activeHover": "#607585"
449
+ }
450
+ },
451
+ "icon": {
452
+ "callout": {
453
+ "warning": "#fae0b3",
454
+ "success": "#a6f2dd",
455
+ "info": "#99c1fa",
456
+ "error": "#f49a9a"
457
+ },
458
+ "checkbox": {
459
+ "default": "#ced1d6"
460
+ },
461
+ "radio": {
462
+ "default": "#28816b"
463
+ }
464
+ },
465
+ "header": {
466
+ "primary": "#b9bcc3",
467
+ "secondary": "#93979f"
468
+ },
469
+ "text": {
470
+ "primary": "#41a48a",
471
+ "secondary": "#ced1d6",
472
+ "tertiary": "#93979f",
473
+ "lightPrimary": "#d8dade",
474
+ "info": "#6e95cf",
475
+ "error": "#d07c7c",
476
+ "warning": "#4d412c",
477
+ "placeholder": "#b9bcc3",
478
+ "callout": {
479
+ "warning": "#fef3e1",
480
+ "success": "#e2fef7",
481
+ "info": "#e7effe",
482
+ "error": "#fee7e7"
483
+ },
484
+ "link": {
485
+ "primary": "#41a48a",
486
+ "secondary": "#ced1d6",
487
+ "tertiary": "#93979f",
488
+ "lightPrimary": "#d8dade",
489
+ "primaryHover": "#a6f2dd",
490
+ "secondaryHover": "#d8dade",
491
+ "tertiaryHover": "#d8dade"
492
+ },
493
+ "button": {
494
+ "primary": {
495
+ "base": "#d8dade",
496
+ "hover": "#d8dade",
497
+ "active": "#d8dade",
498
+ "disabled": "rgba(216, 218, 222, 0.3)"
499
+ },
500
+ "secondary": {
501
+ "base": "#d8dade",
502
+ "hover": "#d8dade",
503
+ "active": "#d8dade",
504
+ "disabled": "rgba(216, 218, 222, 0.3)"
505
+ },
506
+ "tertiary": {
507
+ "base": "#d8dade",
508
+ "hover": "#d8dade",
509
+ "active": "#ffffff",
510
+ "disabled": "rgba(216, 218, 222, 0.3)"
511
+ }
512
+ },
513
+ "badge": {
514
+ "default": "#ced1d6",
515
+ "green": "#41a48a",
516
+ "blue": "#6e95cf",
517
+ "yellow": "#cbac76",
518
+ "brand": "#62b2bc",
519
+ "purple": "#ad97f7",
520
+ "red": "#d07c7c",
521
+ "gray": "#93979f"
522
+ },
523
+ "toggleButton": {
524
+ "default": "#a3b2bd",
525
+ "active": "#ffffff",
526
+ "labelDefault": "#93979f",
527
+ "labelActive": "#f5f7f9"
528
+ }
529
+ },
530
+ "divider": {
531
+ "primary": "#32363e"
532
+ },
533
+ "segementedProgressBar": {
534
+ "monochrome": "#ced1d6",
535
+ "success": "#28816b",
536
+ "warning": "#a4792d",
537
+ "alert": "#a45355",
538
+ "inProgress": "#5b5f67"
539
+ },
540
+ "border": {
541
+ "primary": "#32363e",
542
+ "tabs": {
543
+ "buttonActive": "#b9bcc3"
544
+ },
545
+ "button": {
546
+ "secondary": {
547
+ "base": "#32363e",
548
+ "hover": "#40454f",
549
+ "active": "#40454f",
550
+ "disabled": "rgba(50, 54, 62, 0.3)"
551
+ }
552
+ },
553
+ "input": {
554
+ "default": "#757a84",
555
+ "active": "#93979f",
556
+ "error": "#d07c7c"
557
+ },
558
+ "textarea": {
559
+ "default": "#757a84",
560
+ "active": "#93979f",
561
+ "error": "#d07c7c"
562
+ },
563
+ "checkbox": {
564
+ "default": "#5b5f67",
565
+ "defaultHover": "#28816b"
566
+ },
567
+ "radio": {
568
+ "default": "#5b5f67",
569
+ "defaultHover": "#28816b"
570
+ },
571
+ "toggle": {
572
+ "default": "#757a84",
573
+ "checked": "#28816b",
574
+ "highlighted": "#f9f4a9",
575
+ "hover": "#41a48a"
576
+ },
577
+ "badge": {
578
+ "default": "#393e47",
579
+ "green": "#393e47",
580
+ "blue": "#393e47",
581
+ "yellow": "#393e47",
582
+ "brand": "#393e47",
583
+ "purple": "#393e47",
584
+ "red": "#393e47",
585
+ "gray": "#393e47"
586
+ },
587
+ "toggleButton": {
588
+ "default": "#607585",
589
+ "defaultHover": "#a3b2bd",
590
+ "active": "#40515e",
591
+ "activeHover": "#607585"
592
+ }
593
+ }
594
+ },
595
+ "subThemes": {
596
+ "dimmed": {
597
+ "color": {
598
+ "background": {
599
+ "layer_1": "#314554",
600
+ "layer_2": "#40515e",
601
+ "button": {
602
+ "primary": {
603
+ "base": "transparent",
604
+ "hover": "rgba(255, 255, 255, 0.08)",
605
+ "active": "transparent",
606
+ "disabled": "transparent"
607
+ },
608
+ "secondary": {
609
+ "base": "transparent",
610
+ "hover": "rgba(255, 255, 255, 0.08)",
611
+ "active": "transparent",
612
+ "disabled": "transparent"
613
+ },
614
+ "tertiary": {
615
+ "base": "transparent",
616
+ "hover": "rgba(255, 255, 255, 0.08)",
617
+ "active": "transparent",
618
+ "disabled": "transparent"
619
+ }
620
+ }
621
+ },
622
+ "header": {
623
+ "primary": "#ffffff",
624
+ "secondary": "#ffffff"
625
+ },
626
+ "text": {
627
+ "primary": "#ffffff",
628
+ "secondary": "#ffffff",
629
+ "tertiary": "#e0e6eb",
630
+ "error": "#ee6160",
631
+ "link": {
632
+ "primary": "#ffffff",
633
+ "secondary": "#ffffff",
634
+ "tertiary": "#e0e6eb",
635
+ "primaryHover": "#e0e6eb",
636
+ "secondaryHover": "#e0e6eb",
637
+ "tertiaryHover": "#a3b2bd"
638
+ },
639
+ "button": {
640
+ "primary": {
641
+ "base": "#ffffff",
642
+ "hover": "#ffffff",
643
+ "active": "#ffffff",
644
+ "disabled": "rgba(255, 255, 255, 0.6)"
645
+ },
646
+ "secondary": {
647
+ "base": "#ffffff",
648
+ "hover": "#ffffff",
649
+ "active": "#ffffff",
650
+ "disabled": "rgba(255, 255, 255, 0.6)"
651
+ },
652
+ "tertiary": {
653
+ "base": "#ffffff",
654
+ "hover": "#ffffff",
655
+ "active": "#ffffff",
656
+ "disabled": "rgba(255, 255, 255, 0.6)"
657
+ }
658
+ }
659
+ },
660
+ "divider": {
661
+ "primary": "#e0e6eb"
662
+ },
663
+ "border": {
664
+ "button": {
665
+ "secondary": {
666
+ "base": "transparent",
667
+ "hover": "transparent",
668
+ "active": "transparent",
669
+ "disabled": "transparent"
670
+ }
671
+ }
672
+ }
673
+ }
674
+ },
675
+ "error": {
676
+ "color": {
677
+ "background": {
678
+ "layer_2": "#a45355",
679
+ "button": {
680
+ "primary": {
681
+ "base": "#ffffff",
682
+ "hover": "rgba(255, 255, 255, 0.8)",
683
+ "active": "rgba(255, 255, 255, 0.6)",
684
+ "disabled": "rgba(255, 255, 255, 0.6)"
685
+ },
686
+ "secondary": {
687
+ "base": "transparent",
688
+ "hover": "rgba(255, 255, 255, 0.08)",
689
+ "active": "transparent",
690
+ "disabled": "transparent"
691
+ },
692
+ "tertiary": {
693
+ "base": "transparent",
694
+ "hover": "rgba(255, 255, 255, 0.08)",
695
+ "active": "transparent",
696
+ "disabled": "transparent"
697
+ }
698
+ }
699
+ },
700
+ "header": {
701
+ "primary": "#ffffff",
702
+ "secondary": "#ffffff"
703
+ },
704
+ "text": {
705
+ "primary": "#ffffff",
706
+ "secondary": "#ffffff",
707
+ "tertiary": "#ced1d6",
708
+ "error": "#d07c7c",
709
+ "link": {
710
+ "primary": "#ffffff",
711
+ "secondary": "#ffffff",
712
+ "tertiary": "#ced1d6",
713
+ "primaryHover": "#d8dade",
714
+ "secondaryHover": "#d8dade",
715
+ "tertiaryHover": "#b9bcc3"
716
+ },
717
+ "button": {
718
+ "primary": {
719
+ "base": "#312b31",
720
+ "hover": "#312b31",
721
+ "active": "#312b31",
722
+ "disabled": "rgba(49, 43, 49, 0.3)"
723
+ },
724
+ "secondary": {
725
+ "base": "#ffffff",
726
+ "hover": "#ffffff",
727
+ "active": "#ffffff",
728
+ "disabled": "rgba(255, 255, 255, 0.6)"
729
+ },
730
+ "tertiary": {
731
+ "base": "#d8dade",
732
+ "hover": "#d8dade",
733
+ "active": "#ffffff",
734
+ "disabled": "rgba(255, 255, 255, 0.6)"
735
+ }
736
+ }
737
+ },
738
+ "divider": {
739
+ "primary": "#ced1d6"
740
+ },
741
+ "border": {
742
+ "button": {
743
+ "secondary": {
744
+ "base": "#ffffff",
745
+ "hover": "#ffffff",
746
+ "active": "#ffffff",
747
+ "disabled": "#ffffff"
748
+ }
749
+ }
750
+ }
751
+ }
752
+ },
753
+ "info": {
754
+ "color": {
755
+ "background": {
756
+ "layer_2": "#29364c",
757
+ "button": {
758
+ "primary": {
759
+ "base": "#ffffff",
760
+ "hover": "rgba(255, 255, 255, 0.8)",
761
+ "active": "rgba(255, 255, 255, 0.6)",
762
+ "disabled": "rgba(255, 255, 255, 0.6)"
763
+ },
764
+ "secondary": {
765
+ "base": "transparent",
766
+ "hover": "rgba(255, 255, 255, 0.08)",
767
+ "active": "transparent",
768
+ "disabled": "transparent"
769
+ },
770
+ "tertiary": {
771
+ "base": "transparent",
772
+ "hover": "rgba(255, 255, 255, 0.08)",
773
+ "active": "transparent",
774
+ "disabled": "transparent"
775
+ }
776
+ }
777
+ },
778
+ "header": {
779
+ "primary": "#ffffff",
780
+ "secondary": "#ffffff"
781
+ },
782
+ "text": {
783
+ "primary": "#ffffff",
784
+ "secondary": "#ffffff",
785
+ "tertiary": "#e0e6eb",
786
+ "info": "#6e95cf",
787
+ "error": "#ee6160",
788
+ "link": {
789
+ "primary": "#ffffff",
790
+ "secondary": "#ffffff",
791
+ "tertiary": "#e0e6eb",
792
+ "primaryHover": "#e0e6eb",
793
+ "secondaryHover": "#e0e6eb",
794
+ "tertiaryHover": "#a3b2bd"
795
+ },
796
+ "button": {
797
+ "primary": {
798
+ "base": "#1c427d",
799
+ "hover": "#1c427d",
800
+ "active": "#1c427d",
801
+ "disabled": "rgba(28, 66, 125, 0.3)"
802
+ },
803
+ "secondary": {
804
+ "base": "#ffffff",
805
+ "hover": "#ffffff",
806
+ "active": "#ffffff",
807
+ "disabled": "rgba(255, 255, 255, 0.6)"
808
+ },
809
+ "tertiary": {
810
+ "base": "#ffffff",
811
+ "hover": "#ffffff",
812
+ "active": "#ffffff",
813
+ "disabled": "rgba(255, 255, 255, 0.6)"
814
+ }
815
+ }
816
+ },
817
+ "divider": {
818
+ "primary": "#e0e6eb"
819
+ },
820
+ "border": {
821
+ "button": {
822
+ "secondary": {
823
+ "base": "#ffffff",
824
+ "hover": "#ffffff",
825
+ "active": "#ffffff",
826
+ "disabled": "#ffffff"
827
+ }
828
+ }
829
+ }
830
+ }
831
+ },
832
+ "success": {
833
+ "color": {
834
+ "background": {
835
+ "layer_2": "#28816b",
836
+ "button": {
837
+ "primary": {
838
+ "base": "#ffffff",
839
+ "hover": "rgba(255, 255, 255, 0.8)",
840
+ "active": "rgba(255, 255, 255, 0.6)",
841
+ "disabled": "rgba(255, 255, 255, 0.6)"
842
+ },
843
+ "secondary": {
844
+ "base": "transparent",
845
+ "hover": "rgba(255, 255, 255, 0.08)",
846
+ "active": "transparent",
847
+ "disabled": "transparent"
848
+ },
849
+ "tertiary": {
850
+ "base": "transparent",
851
+ "hover": "rgba(255, 255, 255, 0.08)",
852
+ "active": "transparent",
853
+ "disabled": "transparent"
854
+ }
855
+ }
856
+ },
857
+ "header": {
858
+ "primary": "#ffffff",
859
+ "secondary": "#ffffff"
860
+ },
861
+ "text": {
862
+ "primary": "#ffffff",
863
+ "secondary": "#ffffff",
864
+ "tertiary": "#ced1d6",
865
+ "error": "#d07c7c",
866
+ "link": {
867
+ "primary": "#ffffff",
868
+ "secondary": "#ffffff",
869
+ "tertiary": "#ced1d6",
870
+ "primaryHover": "#d8dade",
871
+ "secondaryHover": "#d8dade",
872
+ "tertiaryHover": "#b9bcc3"
873
+ },
874
+ "button": {
875
+ "primary": {
876
+ "base": "#262e33",
877
+ "hover": "#262e33",
878
+ "active": "#262e33",
879
+ "disabled": "rgba(28, 66, 125, 0.3)"
880
+ },
881
+ "secondary": {
882
+ "base": "#ffffff",
883
+ "hover": "#ffffff",
884
+ "active": "#ffffff",
885
+ "disabled": "rgba(255, 255, 255, 0.6)"
886
+ },
887
+ "tertiary": {
888
+ "base": "#d8dade",
889
+ "hover": "#d8dade",
890
+ "active": "#ffffff",
891
+ "disabled": "rgba(255, 255, 255, 0.6)"
892
+ }
893
+ }
894
+ },
895
+ "divider": {
896
+ "primary": "#ced1d6"
897
+ },
898
+ "border": {
899
+ "button": {
900
+ "secondary": {
901
+ "base": "#ffffff",
902
+ "hover": "#ffffff",
903
+ "active": "#ffffff",
904
+ "disabled": "#ffffff"
905
+ }
906
+ }
907
+ }
908
+ }
909
+ }
910
+ }
911
+ }
912
+ },
913
+ "light": {
914
+ "variables": variables,
915
+ "values": {
916
+ "color": {
917
+ "logo": {
918
+ "base": "#1a1c1c"
919
+ },
920
+ "background": {
921
+ "layer_1": "#ffffff",
922
+ "layer_2": "#ffffff",
923
+ "layer_3": "#ffffff",
924
+ "layer_4": "#ffffff",
925
+ "backdrop": "rgba(0, 0, 0, 0.6)",
926
+ "button": {
927
+ "primary": {
928
+ "base": "#0fa980",
929
+ "hover": "#0b8363",
930
+ "active": "#0a5c45",
931
+ "disabled": "rgba(15, 169, 128, 0.3)"
932
+ },
933
+ "secondary": {
934
+ "base": "transparent",
935
+ "hover": "rgba(96, 117, 133, 0.08)",
936
+ "active": "transparent",
937
+ "disabled": "transparent"
938
+ },
939
+ "tertiary": {
940
+ "base": "transparent",
941
+ "hover": "rgba(96, 117, 133, 0.08)",
942
+ "active": "rgba(96, 117, 133, 0.08)",
943
+ "disabled": "transparent"
944
+ }
945
+ },
946
+ "callout": {
947
+ "warning": "#fef3e1",
948
+ "success": "#e8f8f4",
949
+ "info": "#e7effe",
950
+ "error": "#fde8e8"
951
+ },
952
+ "input": {
953
+ "default": "#ffffff"
954
+ },
955
+ "textarea": {
956
+ "default": "#ffffff"
957
+ },
958
+ "checkbox": {
959
+ "default": "#ffffff",
960
+ "checked": "#0fa980",
961
+ "checkedHover": "#0b8363"
962
+ },
963
+ "dropdown": {
964
+ "active": "#eef2f5"
965
+ },
966
+ "toggle": {
967
+ "default": "#a3b2bd",
968
+ "checked": "#0fa980",
969
+ "highlighted": "#faf5b8"
970
+ },
971
+ "togglePoint": {
972
+ "default": "#ffffff"
973
+ },
974
+ "radio": {
975
+ "default": "#ffffff",
976
+ "checked": "#ffffff",
977
+ "checkedHover": "#ffffff"
978
+ },
979
+ "tabs": {
980
+ "header": "#f5f7f9",
981
+ "buttonActive": "#ffffff",
982
+ "buttonHover": "#eef2f5"
983
+ },
984
+ "badge": {
985
+ "default": "#ffffff",
986
+ "green": "#e8f8f4",
987
+ "blue": "#e7effe",
988
+ "yellow": "#fef3e1",
989
+ "brand": "#e7f6f8",
990
+ "purple": "#f2effb",
991
+ "red": "#fde8e8",
992
+ "gray": "#eef2f5"
993
+ },
994
+ "toggleButton": {
995
+ "default": "transparent",
996
+ "active": "#607585",
997
+ "activeHover": "#40515e"
998
+ }
999
+ },
1000
+ "icon": {
1001
+ "callout": {
1002
+ "warning": "#df9411",
1003
+ "success": "#0b8363",
1004
+ "info": "#295dae",
1005
+ "error": "#dc4847"
1006
+ },
1007
+ "checkbox": {
1008
+ "default": "#ffffff"
1009
+ },
1010
+ "radio": {
1011
+ "default": "#0fa980"
1012
+ }
1013
+ },
1014
+ "header": {
1015
+ "primary": "#1a1c1c",
1016
+ "secondary": "#607585"
1017
+ },
1018
+ "text": {
1019
+ "primary": "#0b8363",
1020
+ "secondary": "#1a1c1c",
1021
+ "tertiary": "#607585",
1022
+ "lightPrimary": "#ffffff",
1023
+ "info": "#295dae",
1024
+ "error": "#dc4847",
1025
+ "warning": "#df9411",
1026
+ "placeholder": "#a3b2bd",
1027
+ "callout": {
1028
+ "warning": "#314554",
1029
+ "success": "#0a5c45",
1030
+ "info": "#1c427d",
1031
+ "error": "#c02725"
1032
+ },
1033
+ "link": {
1034
+ "primary": "#0b8363",
1035
+ "secondary": "#1a1c1c",
1036
+ "tertiary": "#607585",
1037
+ "lightPrimary": "#ffffff",
1038
+ "primaryHover": "#0a5c45",
1039
+ "secondaryHover": "#1a1c1c",
1040
+ "tertiaryHover": "#40515e"
1041
+ },
1042
+ "button": {
1043
+ "primary": {
1044
+ "base": "#ffffff",
1045
+ "hover": "#ffffff",
1046
+ "active": "#ffffff",
1047
+ "disabled": "rgba(255, 255, 255, 0.6)"
1048
+ },
1049
+ "secondary": {
1050
+ "base": "#40515e",
1051
+ "hover": "#40515e",
1052
+ "active": "#40515e",
1053
+ "disabled": "rgba(64, 81, 94, 0.3)"
1054
+ },
1055
+ "tertiary": {
1056
+ "base": "#40515e",
1057
+ "hover": "#40515e",
1058
+ "active": "#1a1c1c",
1059
+ "disabled": "rgba(64, 81, 94, 0.3)"
1060
+ }
1061
+ },
1062
+ "badge": {
1063
+ "default": "#1a1c1c",
1064
+ "green": "#0b8363",
1065
+ "blue": "#295dae",
1066
+ "yellow": "#9a6304",
1067
+ "brand": "#067c89",
1068
+ "purple": "#5d44ab",
1069
+ "red": "#c02725",
1070
+ "gray": "#607585"
1071
+ },
1072
+ "toggleButton": {
1073
+ "default": "#40515e",
1074
+ "active": "#ffffff",
1075
+ "labelDefault": "#607585",
1076
+ "labelActive": "#f5f7f9"
1077
+ }
1078
+ },
1079
+ "divider": {
1080
+ "primary": "#e0e6eb"
1081
+ },
1082
+ "segementedProgressBar": {
1083
+ "monochrome": "#607585",
1084
+ "success": "#39d6ac",
1085
+ "warning": "#f1d56b",
1086
+ "alert": "#f07575",
1087
+ "inProgress": "#e0e6eb"
1088
+ },
1089
+ "border": {
1090
+ "primary": "#e0e6eb",
1091
+ "tabs": {
1092
+ "buttonActive": "#607585"
1093
+ },
1094
+ "button": {
1095
+ "secondary": {
1096
+ "base": "#a3b2bd",
1097
+ "hover": "#607585",
1098
+ "active": "#40515e",
1099
+ "disabled": "rgba(163, 178, 189, 0.3)"
1100
+ }
1101
+ },
1102
+ "input": {
1103
+ "default": "#a3b2bd",
1104
+ "active": "#607585",
1105
+ "error": "#dc4847"
1106
+ },
1107
+ "textarea": {
1108
+ "default": "#a3b2bd",
1109
+ "active": "#a3b2bd",
1110
+ "error": "#dc4847"
1111
+ },
1112
+ "checkbox": {
1113
+ "default": "#e0e6eb",
1114
+ "defaultHover": "#0fa980"
1115
+ },
1116
+ "radio": {
1117
+ "default": "#e0e6eb",
1118
+ "defaultHover": "#0fa980"
1119
+ },
1120
+ "toggle": {
1121
+ "default": "#a3b2bd",
1122
+ "checked": "#0fa980",
1123
+ "highlighted": "#faf5b8",
1124
+ "hover": "#0a5c45"
1125
+ },
1126
+ "badge": {
1127
+ "default": "#e0e6eb",
1128
+ "green": "#e8f8f4",
1129
+ "blue": "#e7effe",
1130
+ "yellow": "#fef3e1",
1131
+ "brand": "#e7f6f8",
1132
+ "purple": "#f2effb",
1133
+ "red": "#fde8e8",
1134
+ "gray": "#eef2f5"
1135
+ },
1136
+ "toggleButton": {
1137
+ "default": "#e0e6eb",
1138
+ "defaultHover": "#a3b2bd",
1139
+ "active": "#607585",
1140
+ "activeHover": "#40515e"
1141
+ }
1142
+ }
1143
+ },
1144
+ "subThemes": {
1145
+ "dimmed": {
1146
+ "color": {
1147
+ "background": {
1148
+ "layer_1": "#314554",
1149
+ "layer_2": "#40515e",
1150
+ "button": {
1151
+ "primary": {
1152
+ "base": "transparent",
1153
+ "hover": "rgba(255, 255, 255, 0.08)",
1154
+ "active": "transparent",
1155
+ "disabled": "transparent"
1156
+ },
1157
+ "secondary": {
1158
+ "base": "transparent",
1159
+ "hover": "rgba(255, 255, 255, 0.08)",
1160
+ "active": "transparent",
1161
+ "disabled": "transparent"
1162
+ },
1163
+ "tertiary": {
1164
+ "base": "transparent",
1165
+ "hover": "rgba(255, 255, 255, 0.08)",
1166
+ "active": "transparent",
1167
+ "disabled": "transparent"
1168
+ }
1169
+ }
1170
+ },
1171
+ "header": {
1172
+ "primary": "#ffffff",
1173
+ "secondary": "#ffffff"
1174
+ },
1175
+ "text": {
1176
+ "primary": "#ffffff",
1177
+ "secondary": "#ffffff",
1178
+ "tertiary": "#e0e6eb",
1179
+ "error": "#ee6160",
1180
+ "link": {
1181
+ "primary": "#ffffff",
1182
+ "secondary": "#ffffff",
1183
+ "tertiary": "#e0e6eb",
1184
+ "primaryHover": "#e0e6eb",
1185
+ "secondaryHover": "#e0e6eb",
1186
+ "tertiaryHover": "#a3b2bd"
1187
+ },
1188
+ "button": {
1189
+ "primary": {
1190
+ "base": "#ffffff",
1191
+ "hover": "#ffffff",
1192
+ "active": "#ffffff",
1193
+ "disabled": "rgba(255, 255, 255, 0.6)"
1194
+ },
1195
+ "secondary": {
1196
+ "base": "#ffffff",
1197
+ "hover": "#ffffff",
1198
+ "active": "#ffffff",
1199
+ "disabled": "rgba(255, 255, 255, 0.6)"
1200
+ },
1201
+ "tertiary": {
1202
+ "base": "#ffffff",
1203
+ "hover": "#ffffff",
1204
+ "active": "#ffffff",
1205
+ "disabled": "rgba(255, 255, 255, 0.6)"
1206
+ }
1207
+ }
1208
+ },
1209
+ "divider": {
1210
+ "primary": "#e0e6eb"
1211
+ },
1212
+ "border": {
1213
+ "button": {
1214
+ "secondary": {
1215
+ "base": "transparent",
1216
+ "hover": "transparent",
1217
+ "active": "transparent",
1218
+ "disabled": "transparent"
1219
+ }
1220
+ }
1221
+ }
1222
+ }
1223
+ },
1224
+ "error": {
1225
+ "color": {
1226
+ "background": {
1227
+ "layer_2": "#ee6160",
1228
+ "button": {
1229
+ "primary": {
1230
+ "base": "#ffffff",
1231
+ "hover": "rgba(255, 255, 255, 0.8)",
1232
+ "active": "rgba(255, 255, 255, 0.6)",
1233
+ "disabled": "rgba(255, 255, 255, 0.6)"
1234
+ },
1235
+ "secondary": {
1236
+ "base": "transparent",
1237
+ "hover": "rgba(255, 255, 255, 0.08)",
1238
+ "active": "transparent",
1239
+ "disabled": "transparent"
1240
+ },
1241
+ "tertiary": {
1242
+ "base": "transparent",
1243
+ "hover": "rgba(255, 255, 255, 0.08)",
1244
+ "active": "transparent",
1245
+ "disabled": "transparent"
1246
+ }
1247
+ }
1248
+ },
1249
+ "header": {
1250
+ "primary": "#ffffff",
1251
+ "secondary": "#ffffff"
1252
+ },
1253
+ "text": {
1254
+ "primary": "#ffffff",
1255
+ "secondary": "#ffffff",
1256
+ "tertiary": "#e0e6eb",
1257
+ "error": "#ee6160",
1258
+ "link": {
1259
+ "primary": "#ffffff",
1260
+ "secondary": "#ffffff",
1261
+ "tertiary": "#e0e6eb",
1262
+ "primaryHover": "#e0e6eb",
1263
+ "secondaryHover": "#e0e6eb",
1264
+ "tertiaryHover": "#a3b2bd"
1265
+ },
1266
+ "button": {
1267
+ "primary": {
1268
+ "base": "#c02725",
1269
+ "hover": "#c02725",
1270
+ "active": "#c02725",
1271
+ "disabled": "rgba(192, 39, 37, 0.3)"
1272
+ },
1273
+ "secondary": {
1274
+ "base": "#ffffff",
1275
+ "hover": "#ffffff",
1276
+ "active": "#ffffff",
1277
+ "disabled": "rgba(255, 255, 255, 0.6)"
1278
+ },
1279
+ "tertiary": {
1280
+ "base": "#ffffff",
1281
+ "hover": "#ffffff",
1282
+ "active": "#ffffff",
1283
+ "disabled": "rgba(255, 255, 255, 0.6)"
1284
+ }
1285
+ }
1286
+ },
1287
+ "divider": {
1288
+ "primary": "#e0e6eb"
1289
+ },
1290
+ "border": {
1291
+ "button": {
1292
+ "secondary": {
1293
+ "base": "#ffffff",
1294
+ "hover": "#ffffff",
1295
+ "active": "#ffffff",
1296
+ "disabled": "#ffffff"
1297
+ }
1298
+ }
1299
+ }
1300
+ }
1301
+ },
1302
+ "info": {
1303
+ "color": {
1304
+ "background": {
1305
+ "layer_2": "#295dae",
1306
+ "button": {
1307
+ "primary": {
1308
+ "base": "#ffffff",
1309
+ "hover": "rgba(255, 255, 255, 0.8)",
1310
+ "active": "rgba(255, 255, 255, 0.6)",
1311
+ "disabled": "rgba(255, 255, 255, 0.6)"
1312
+ },
1313
+ "secondary": {
1314
+ "base": "transparent",
1315
+ "hover": "rgba(255, 255, 255, 0.08)",
1316
+ "active": "transparent",
1317
+ "disabled": "transparent"
1318
+ },
1319
+ "tertiary": {
1320
+ "base": "transparent",
1321
+ "hover": "rgba(255, 255, 255, 0.08)",
1322
+ "active": "transparent",
1323
+ "disabled": "transparent"
1324
+ }
1325
+ }
1326
+ },
1327
+ "header": {
1328
+ "primary": "#ffffff",
1329
+ "secondary": "#ffffff"
1330
+ },
1331
+ "text": {
1332
+ "primary": "#ffffff",
1333
+ "secondary": "#ffffff",
1334
+ "tertiary": "#e0e6eb",
1335
+ "info": "#d2e2f9",
1336
+ "error": "#ee6160",
1337
+ "link": {
1338
+ "primary": "#ffffff",
1339
+ "secondary": "#ffffff",
1340
+ "tertiary": "#e0e6eb",
1341
+ "primaryHover": "#e0e6eb",
1342
+ "secondaryHover": "#e0e6eb",
1343
+ "tertiaryHover": "#a3b2bd"
1344
+ },
1345
+ "button": {
1346
+ "primary": {
1347
+ "base": "#1c427d",
1348
+ "hover": "#1c427d",
1349
+ "active": "#1c427d",
1350
+ "disabled": "rgba(28, 66, 125, 0.3)"
1351
+ },
1352
+ "secondary": {
1353
+ "base": "#ffffff",
1354
+ "hover": "#ffffff",
1355
+ "active": "#ffffff",
1356
+ "disabled": "rgba(255, 255, 255, 0.6)"
1357
+ },
1358
+ "tertiary": {
1359
+ "base": "#ffffff",
1360
+ "hover": "#ffffff",
1361
+ "active": "#ffffff",
1362
+ "disabled": "rgba(255, 255, 255, 0.6)"
1363
+ }
1364
+ }
1365
+ },
1366
+ "divider": {
1367
+ "primary": "#e0e6eb"
1368
+ },
1369
+ "border": {
1370
+ "button": {
1371
+ "secondary": {
1372
+ "base": "#ffffff",
1373
+ "hover": "#ffffff",
1374
+ "active": "#ffffff",
1375
+ "disabled": "#ffffff"
1376
+ }
1377
+ }
1378
+ }
1379
+ }
1380
+ },
1381
+ "success": {
1382
+ "color": {
1383
+ "background": {
1384
+ "layer_2": "#0fa980",
1385
+ "button": {
1386
+ "primary": {
1387
+ "base": "#ffffff",
1388
+ "hover": "rgba(255, 255, 255, 0.8)",
1389
+ "active": "rgba(255, 255, 255, 0.6)",
1390
+ "disabled": "rgba(255, 255, 255, 0.6)"
1391
+ },
1392
+ "secondary": {
1393
+ "base": "transparent",
1394
+ "hover": "rgba(255, 255, 255, 0.08)",
1395
+ "active": "transparent",
1396
+ "disabled": "transparent"
1397
+ },
1398
+ "tertiary": {
1399
+ "base": "transparent",
1400
+ "hover": "rgba(255, 255, 255, 0.08)",
1401
+ "active": "transparent",
1402
+ "disabled": "transparent"
1403
+ }
1404
+ }
1405
+ },
1406
+ "header": {
1407
+ "primary": "#ffffff",
1408
+ "secondary": "#ffffff"
1409
+ },
1410
+ "text": {
1411
+ "primary": "#ffffff",
1412
+ "secondary": "#ffffff",
1413
+ "tertiary": "#e0e6eb",
1414
+ "error": "#ee6160",
1415
+ "link": {
1416
+ "primary": "#ffffff",
1417
+ "secondary": "#ffffff",
1418
+ "tertiary": "#e0e6eb",
1419
+ "primaryHover": "#e0e6eb",
1420
+ "secondaryHover": "#e0e6eb",
1421
+ "tertiaryHover": "#a3b2bd"
1422
+ },
1423
+ "button": {
1424
+ "primary": {
1425
+ "base": "#0a5c45",
1426
+ "hover": "#0a5c45",
1427
+ "active": "#0a5c45",
1428
+ "disabled": "rgba(10, 92, 69, 0.3)"
1429
+ },
1430
+ "secondary": {
1431
+ "base": "#ffffff",
1432
+ "hover": "#ffffff",
1433
+ "active": "#ffffff",
1434
+ "disabled": "rgba(255, 255, 255, 0.6)"
1435
+ },
1436
+ "tertiary": {
1437
+ "base": "#d8dade",
1438
+ "hover": "#d8dade",
1439
+ "active": "#ffffff",
1440
+ "disabled": "rgba(255, 255, 255, 0.6)"
1441
+ }
1442
+ }
1443
+ },
1444
+ "divider": {
1445
+ "primary": "#e0e6eb"
1446
+ },
1447
+ "border": {
1448
+ "button": {
1449
+ "secondary": {
1450
+ "base": "#ffffff",
1451
+ "hover": "#ffffff",
1452
+ "active": "#ffffff",
1453
+ "disabled": "#ffffff"
1454
+ }
1455
+ }
1456
+ }
1457
+ }
1458
+ }
1459
+ }
1460
+ }
1461
+ }
1462
+ };
1463
+
1464
+ exports.ambossVisualConfiguration = ambossVisualConfiguration;