@amboss/design-system 1.5.18 → 1.5.20

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