@amboss/design-system 1.14.5 → 1.14.6

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 (35) hide show
  1. package/README.md +17 -10
  2. package/build/cjs/build-tokens/visualConfig.js +20 -185
  3. package/build/cjs/scss/themes/dark.scss +102 -102
  4. package/build/cjs/scss/themes/light.scss +102 -102
  5. package/build/cjs/src/components/Form/Toggle/Toggle.js +6 -6
  6. package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +8 -8
  7. package/build/cjs/src/components/LoadingSpinner/LoadingSpinner.js +4 -4
  8. package/build/cjs/src/components/MediaItem/MediaItem.js +5 -10
  9. package/build/cjs/src/components/Tabs/Tabs.js +3 -3
  10. package/build/esm/build-tokens/_breakpoints.json +17 -0
  11. package/build/esm/build-tokens/_colors.json +868 -0
  12. package/build/esm/build-tokens/_icon_sizes_map.json +7 -0
  13. package/build/esm/build-tokens/_sizes.json +782 -0
  14. package/build/esm/build-tokens/_zindex.json +17 -0
  15. package/build/esm/build-tokens/assets/icons.json +141 -0
  16. package/build/esm/build-tokens/assets/icons16.json +153 -0
  17. package/build/esm/build-tokens/assets/logo.json +3 -0
  18. package/build/esm/build-tokens/visualConfig.d.ts +10 -175
  19. package/build/esm/build-tokens/visualConfig.js +20 -185
  20. package/build/esm/build-tokens/visualConfig.js.map +1 -1
  21. package/build/esm/scss/themes/dark.scss +102 -102
  22. package/build/esm/scss/themes/light.scss +102 -102
  23. package/build/esm/src/components/Form/Toggle/Toggle.js +6 -6
  24. package/build/esm/src/components/Form/Toggle/Toggle.js.map +1 -1
  25. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +8 -8
  26. package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -1
  27. package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js +4 -4
  28. package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js.map +1 -1
  29. package/build/esm/src/components/MediaItem/MediaItem.d.ts +0 -7
  30. package/build/esm/src/components/MediaItem/MediaItem.js +5 -10
  31. package/build/esm/src/components/MediaItem/MediaItem.js.map +1 -1
  32. package/build/esm/src/components/Tabs/Tabs.js +3 -3
  33. package/build/esm/src/components/Tabs/Tabs.js.map +1 -1
  34. package/build/esm/src/types/index.d.ts +1 -1
  35. package/package.json +21 -17
package/README.md CHANGED
@@ -86,11 +86,20 @@ npm run lint
86
86
  |-- static
87
87
      |-- image-for-storybook.png
88
88
  |-- tokens
89
-     |-- themes
90
-         |-- dark.json
91
-         |-- light.json
92
-     |-- assets.json
93
-     |-- colors.json
89
+ |-- global
90
+     |-- themes
91
+         |-- dark.json
92
+         |-- light.json
93
+     |-- assets.json
94
+     |-- colors.json
95
+ |-- web
96
+ |-- component
97
+ |-- dark.json
98
+ |-- light.json
99
+ |-- android
100
+ |-- opacity.json
101
+ |-- ios
102
+ |-- opacity.json
94
103
  |-- src
95
104
      |-- index.ts
96
105
      |-- components
@@ -123,7 +132,7 @@ New variables and mixins gets generated automaticaly:
123
132
  - after npm install
124
133
  - before build
125
134
 
126
- You can generate tokens manually using `npm run tokens` and `npm run tokens:watch`
135
+ You can generate tokens manually using `npm run tokens:web` and `npm run tokens:watch`
127
136
 
128
137
  We use tokens to control the most atomic values in styles and themes.
129
138
 
@@ -133,13 +142,11 @@ We have a set of .json files that are located in `./tokens` folder, and we have
133
142
 
134
143
  For example:
135
144
 
136
- We have a file - `./tokens/colors.json` that gets converted into part of `./build-tokens/visualConfig.ts` and `./build-tokens/_colors.json`.
145
+ We have a file - `./tokens/global/light|dark.json` that gets converted into part of `./build-tokens/visualConfig.ts`.
137
146
 
138
147
  `visualConfig.ts` is used later as a source for emotion.js theme.
139
148
 
140
- `_colors.json` is imported inside `./.storybook/components/ColorGrid.tsx` in order to present in storybook all the colors we currently have.
141
-
142
- The configuration for `style-dictionary` is inside `./style-dictionary/style-dictionary.config.json`. In this config we use some custom transforms, filters and formatters, all of them defined in `./style-dictionary/style-dictionary.build.js`.
149
+ The configuration for `style-dictionary` is inside `./style-dictionary/{platformName}/{platformName}.sd.config.json`. In this config we use some custom transforms, filters and formatters, all of them defined in corresponding files of platform folders.
143
150
 
144
151
  **custom/format/emotion-visual-config** - a formatter that generates visualConfig.ts that contains all variables and themed values.
145
152
 
@@ -1,171 +1,6 @@
1
1
  'use strict';
2
2
 
3
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
- "transparent": "rgba(255, 255, 255, 0)"
13
- },
14
- "green": {
15
- "regular": "#0fa980",
16
- "regularAlt": "#39d6ac",
17
- "dark01": "#0b8363",
18
- "dark02": "#0a5c45",
19
- "light01": "#8adcc6",
20
- "light02": "#d0f1e8",
21
- "light03": "#e8f8f4",
22
- "regularTransparent": "rgba(15, 169, 128, 0.3)",
23
- "dark02Transparent": "rgba(10, 92, 69, 0.3)"
24
- },
25
- "blue": {
26
- "regular": "#1f6ce0",
27
- "dark01": "#295dae",
28
- "dark02": "#1c427d",
29
- "light01": "#6e95cf",
30
- "light02": "#d2e2f9",
31
- "light03": "#e7effe",
32
- "dark02Transparent": "rgba(28, 66, 125, 0.3)"
33
- },
34
- "gray": {
35
- "light04": "#f5f7f9",
36
- "light03": "#eef2f5",
37
- "light02": "#e0e6eb",
38
- "light01": "#a3b2bd",
39
- "regular": "#607585",
40
- "dark01": "#40515e",
41
- "dark02": "#314554",
42
- "transparent": "rgba(96, 117, 133, 0.08)",
43
- "light01Transparent": "rgba(163, 178, 189, 0.3)",
44
- "dark01Transparent": "rgba(64, 81, 94, 0.3)",
45
- "dark02Transparent": "rgba(49, 69, 84, 0.3)"
46
- },
47
- "brand": {
48
- "light03": "#e7f6f8",
49
- "light02": "#ceedf1",
50
- "light01": "#85d3dc",
51
- "regular": "#0aa6b8",
52
- "dark01": "#067c89",
53
- "dark02": "#054f57"
54
- },
55
- "orange": {
56
- "light03": "#fef3e1",
57
- "light02": "#fceaca",
58
- "light01": "#f6c66f",
59
- "regular": "#f6bc56",
60
- "regularAlt": "#f1d56b",
61
- "dark01": "#df9411",
62
- "dark02": "#9a6304"
63
- },
64
- "red": {
65
- "light03": "#fde8e8",
66
- "light02": "#fad1d1",
67
- "light01": "#f07575",
68
- "regular": "#ee6160",
69
- "dark01": "#dc4847",
70
- "dark02": "#c02725",
71
- "dark02Transparent": "rgba(192, 39, 37, 0.3)"
72
- },
73
- "purple": {
74
- "light03": "#f2effb",
75
- "light02": "#d8d0f3",
76
- "light01": "#a592e3",
77
- "regular": "#7254d3",
78
- "dark01": "#5d44ab",
79
- "dark02": "#493687"
80
- },
81
- "yellow": {
82
- "light03": "#fdfbe3",
83
- "light02": "#faf5b8",
84
- "light01": "#f3eb75",
85
- "regular": "#ede13b",
86
- "dark01": "#cec31c",
87
- "dark02": "#a39905"
88
- },
89
- "nightBlack": {
90
- "light03": "#40454f",
91
- "light02": "#393e47",
92
- "light01": "#32363e",
93
- "regular": "#282c34",
94
- "dark01": "#24282d",
95
- "dark02": "#1e2125",
96
- "light01Transparent": "rgba(50, 54, 62, 0.3)"
97
- },
98
- "nightGray": {
99
- "light03": "#d8dade",
100
- "light02": "#ced1d6",
101
- "light01": "#b9bcc3",
102
- "regular": "#93979f",
103
- "dark01": "#757a84",
104
- "dark02": "#5b5f67",
105
- "regularTransparent": "rgba(147, 149, 159, 0.3)",
106
- "transparent": "rgba(147, 151, 159, 0.08)",
107
- "light03Transparent": "rgba(216, 218, 222, 0.3)"
108
- },
109
- "nightGreen": {
110
- "light03": "#e2fef7",
111
- "light02": "#a6f2dd",
112
- "light01": "#41a48a",
113
- "regular": "#28816b",
114
- "dark01": "#233d3d",
115
- "dark02": "#262e33",
116
- "light01Transparent": "rgba(40, 129, 107, 0.3)",
117
- "dark02Transparent": "rgba(38, 46, 51, 0.3)"
118
- },
119
- "nightBlue": {
120
- "light03": "#e7effe",
121
- "light02": "#99c1fa",
122
- "light01": "#6e95cf",
123
- "regular": "#2f538a",
124
- "dark01": "#29364c",
125
- "dark02": "#282e39"
126
- },
127
- "nightBrand": {
128
- "light03": "#e1fbfe",
129
- "light02": "#80dfea",
130
- "light01": "#62b2bc",
131
- "regular": "#1d6670",
132
- "dark01": "#223c44",
133
- "dark02": "#262f36"
134
- },
135
- "nightOrange": {
136
- "light03": "#fef3e1",
137
- "light02": "#fae0b3",
138
- "light01": "#cbac76",
139
- "regular": "#a4792d",
140
- "dark01": "#4d412c",
141
- "dark02": "#32302f"
142
- },
143
- "nightRed": {
144
- "light03": "#fee7e7",
145
- "light02": "#f49a9a",
146
- "light01": "#d07c7c",
147
- "regular": "#a45355",
148
- "dark01": "#4d3237",
149
- "dark02": "#312b31",
150
- "dark02Transparent": "rgba(49, 43, 49, 0.3)"
151
- },
152
- "nightPurple": {
153
- "light03": "#e8e1fe",
154
- "light02": "#ad97f7",
155
- "light01": "#7d67c5",
156
- "regular": "#524389",
157
- "dark01": "#33314b",
158
- "dark02": "#2c2d3a"
159
- },
160
- "nightYellow": {
161
- "light03": "#fefbd2",
162
- "light02": "#f9f4a9",
163
- "light01": "#cbc576",
164
- "regular": "#b2ab39",
165
- "dark01": "#494a2f",
166
- "dark02": "#323530"
167
- }
168
- },
169
4
  "fontFamily": {
170
5
  "lato": "Lato, -apple-system, BlinkMacSystemFont, segoe ui, avenir next, avenir, 'helvetica neue', helvetica, ubuntu, roboto, noto, arial, sans-serif"
171
6
  },
@@ -423,7 +258,7 @@ const ambossVisualConfiguration = {
423
258
  "warningSubtle": {
424
259
  "default": "#32302f"
425
260
  },
426
- "hightlight": {
261
+ "highlight": {
427
262
  "default": "#40454f",
428
263
  "hover": "#393e47"
429
264
  },
@@ -516,10 +351,10 @@ const ambossVisualConfiguration = {
516
351
  },
517
352
  "toggle": {
518
353
  "background": {
519
- "hightlight": "#b2ab39"
354
+ "highlight": "#b2ab39"
520
355
  },
521
356
  "border": {
522
- "hightlight": "#b2ab39"
357
+ "highlight": "#b2ab39"
523
358
  }
524
359
  },
525
360
  "badge": {
@@ -554,6 +389,13 @@ const ambossVisualConfiguration = {
554
389
  "gray": "#393e47"
555
390
  }
556
391
  },
392
+ "segmentedProgressBar": {
393
+ "monochrome": "#ced1d6",
394
+ "success": "#28816b",
395
+ "warning": "#a4792d",
396
+ "alert": "#a45355",
397
+ "inProgress": "#5b5f67"
398
+ },
557
399
  "tag": {
558
400
  "background": {
559
401
  "gray": "#5b5f67",
@@ -563,13 +405,6 @@ const ambossVisualConfiguration = {
563
405
  "gray": "#ced1d6",
564
406
  "blue": "#e7effe"
565
407
  }
566
- },
567
- "segmentedProgressBar": {
568
- "monochrome": "#ced1d6",
569
- "success": "#28816b",
570
- "warning": "#a4792d",
571
- "alert": "#a45355",
572
- "inProgress": "#5b5f67"
573
408
  }
574
409
  },
575
410
  "subThemes": {
@@ -973,7 +808,7 @@ const ambossVisualConfiguration = {
973
808
  "warningSubtle": {
974
809
  "default": "#fef3e1"
975
810
  },
976
- "hightlight": {
811
+ "highlight": {
977
812
  "default": "#607585",
978
813
  "hover": "#40515e"
979
814
  },
@@ -1066,10 +901,10 @@ const ambossVisualConfiguration = {
1066
901
  },
1067
902
  "toggle": {
1068
903
  "background": {
1069
- "hightlight": "#f3eb75"
904
+ "highlight": "#f3eb75"
1070
905
  },
1071
906
  "border": {
1072
- "hightlight": "#f3eb75"
907
+ "highlight": "#f3eb75"
1073
908
  }
1074
909
  },
1075
910
  "badge": {
@@ -1104,6 +939,13 @@ const ambossVisualConfiguration = {
1104
939
  "gray": "#eef2f5"
1105
940
  }
1106
941
  },
942
+ "segmentedProgressBar": {
943
+ "monochrome": "#607585",
944
+ "success": "#39d6ac",
945
+ "warning": "#f1d56b",
946
+ "alert": "#f07575",
947
+ "inProgress": "#e0e6eb"
948
+ },
1107
949
  "tag": {
1108
950
  "background": {
1109
951
  "gray": "#e0e6eb",
@@ -1113,13 +955,6 @@ const ambossVisualConfiguration = {
1113
955
  "gray": "#40515e",
1114
956
  "blue": "#1c427d"
1115
957
  }
1116
- },
1117
- "segmentedProgressBar": {
1118
- "monochrome": "#607585",
1119
- "success": "#39d6ac",
1120
- "warning": "#f1d56b",
1121
- "alert": "#f07575",
1122
- "inProgress": "#e0e6eb"
1123
958
  }
1124
959
  },
1125
960
  "subThemes": {
@@ -1,105 +1,105 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 24 Aug 2023 13:55:58 GMT
3
+ // Generated on Wed, 30 Aug 2023 12:40:52 GMT
4
4
 
5
- $color-canvas: #1e2125;
6
- $color-background-primary-default: #24282d;
7
- $color-background-secondary-default: #282c34;
8
- $color-background-secondary-hover: #393e47;
9
- $color-background-secondary-active: #393e47;
10
- $color-background-accent-default: #28816b;
11
- $color-background-accent-hover: #41a48a;
12
- $color-background-accent-active: #233d3d;
13
- $color-background-accent-disabled: rgba(40, 129, 107, 0.3);
14
- $color-background-onAccent-default: #ffffff;
15
- $color-background-onAccent-hover: #ffffff;
16
- $color-background-onAccent-active: #ffffff;
17
- $color-background-onAccent-disabled: rgba(255, 255, 255, 0.6);
18
- $color-background-error-default: #a45355;
19
- $color-background-success-default: #28816b;
20
- $color-background-info-default: #2f538a;
21
- $color-background-warning-default: #a4792d;
22
- $color-background-accentSubtle-default: #233d3d;
23
- $color-background-errorSubtle-default: #312b31;
24
- $color-background-successSubtle-default: #262e33;
25
- $color-background-infoSubtle-default: #282e39;
26
- $color-background-warningSubtle-default: #32302f;
27
- $color-background-hightlight-default: #40454f;
28
- $color-background-hightlight-hover: #393e47;
29
- $color-background-contrast-default: #ced1d6;
30
- $color-background-transparent-default: rgba(255, 255, 255, 0);
31
- $color-background-transparent-hover: rgba(147, 151, 159, 0.08);
32
- $color-background-transparent-active: rgba(147, 151, 159, 0.08);
33
- $color-background-backdrop-default: rgba(0, 0, 0, 0.6);
34
- $color-text-primary-default: #ced1d6;
35
- $color-text-primary-hover: #ffffff;
36
- $color-text-secondary-default: #b9bcc3;
37
- $color-text-secondary-hover: #ced1d6;
38
- $color-text-tertiary-default: #93979f;
39
- $color-text-tertiary-disabled: rgba(216, 218, 222, 0.3);
40
- $color-text-tertiary-hover: #b9bcc3;
41
- $color-text-quaternary-default: #757a84;
42
- $color-text-accent-default: #41a48a;
43
- $color-text-accent-hover: #a6f2dd;
44
- $color-text-onAccent-default: #ffffff;
45
- $color-text-onAccent-disabled: rgba(216, 218, 222, 0.3);
46
- $color-text-info-default: #99c1fa;
47
- $color-text-error-default: #f49a9a;
48
- $color-text-warning-default: #fae0b3;
49
- $color-text-success-default: #a6f2dd;
50
- $color-icon-primary: #d8dade;
51
- $color-icon-secondary: #ced1d6;
52
- $color-icon-tertiary: #93979f;
53
- $color-icon-quaternary: #757a84;
54
- $color-icon-accent: #41a48a;
55
- $color-icon-onAccent: #ffffff;
56
- $color-icon-info: #6e95cf;
57
- $color-icon-error: #d07c7c;
58
- $color-icon-warning: #cbac76;
59
- $color-icon-success: #41a48a;
60
- $color-icon-brand: #62b2bc;
61
- $color-border-primary-default: #5b5f67;
62
- $color-border-primary-hover: #757a84;
63
- $color-border-primary-active: #93979f;
64
- $color-border-primary-disabled: rgba(147, 151, 159, 0.08);
65
- $color-border-secondary-default: rgba(147, 149, 159, 0.3);
66
- $color-border-accent-default: #41a48a;
67
- $color-border-error-default: #d07c7c;
68
- $color-border-accentSubtle-default: #28816b;
69
- $color-divider-primary: #40454f;
70
- $color-divider-secondary: rgba(147, 151, 159, 0.08);
71
- $color-toggle-background-hightlight: #b2ab39;
72
- $color-toggle-border-hightlight: #b2ab39;
73
- $color-badge-background-default: transparent;
74
- $color-badge-background-green: transparent;
75
- $color-badge-background-blue: transparent;
76
- $color-badge-background-yellow: transparent;
77
- $color-badge-background-brand: transparent;
78
- $color-badge-background-purple: transparent;
79
- $color-badge-background-red: transparent;
80
- $color-badge-background-gray: transparent;
81
- $color-badge-text-default: #ced1d6;
82
- $color-badge-text-green: #41a48a;
83
- $color-badge-text-blue: #6e95cf;
84
- $color-badge-text-yellow: #cbac76;
85
- $color-badge-text-brand: #62b2bc;
86
- $color-badge-text-purple: #ad97f7;
87
- $color-badge-text-red: #d07c7c;
88
- $color-badge-text-gray: #93979f;
89
- $color-badge-border-default: #393e47;
90
- $color-badge-border-green: #393e47;
91
- $color-badge-border-blue: #393e47;
92
- $color-badge-border-yellow: #393e47;
93
- $color-badge-border-brand: #393e47;
94
- $color-badge-border-purple: #393e47;
95
- $color-badge-border-red: #393e47;
96
- $color-badge-border-gray: #393e47;
97
- $color-tag-background-gray: #5b5f67;
98
- $color-tag-background-blue: #2f538a;
99
- $color-tag-text-gray: #ced1d6;
100
- $color-tag-text-blue: #e7effe;
101
- $color-segmented-progress-bar-monochrome: #ced1d6;
102
- $color-segmented-progress-bar-success: #28816b;
103
- $color-segmented-progress-bar-warning: #a4792d;
104
- $color-segmented-progress-bar-alert: #a45355;
105
- $color-segmented-progress-bar-in-progress: #5b5f67;
5
+ $dark-color-canvas: #1e2125;
6
+ $dark-color-background-primary-default: #24282d;
7
+ $dark-color-background-secondary-default: #282c34;
8
+ $dark-color-background-secondary-hover: #393e47;
9
+ $dark-color-background-secondary-active: #393e47;
10
+ $dark-color-background-accent-default: #28816b;
11
+ $dark-color-background-accent-hover: #41a48a;
12
+ $dark-color-background-accent-active: #233d3d;
13
+ $dark-color-background-accent-disabled: rgba(40, 129, 107, 0.3);
14
+ $dark-color-background-onAccent-default: #ffffff;
15
+ $dark-color-background-onAccent-hover: #ffffff;
16
+ $dark-color-background-onAccent-active: #ffffff;
17
+ $dark-color-background-onAccent-disabled: rgba(255, 255, 255, 0.6);
18
+ $dark-color-background-error-default: #a45355;
19
+ $dark-color-background-success-default: #28816b;
20
+ $dark-color-background-info-default: #2f538a;
21
+ $dark-color-background-warning-default: #a4792d;
22
+ $dark-color-background-accentSubtle-default: #233d3d;
23
+ $dark-color-background-errorSubtle-default: #312b31;
24
+ $dark-color-background-successSubtle-default: #262e33;
25
+ $dark-color-background-infoSubtle-default: #282e39;
26
+ $dark-color-background-warningSubtle-default: #32302f;
27
+ $dark-color-background-highlight-default: #40454f;
28
+ $dark-color-background-highlight-hover: #393e47;
29
+ $dark-color-background-contrast-default: #ced1d6;
30
+ $dark-color-background-transparent-default: rgba(255, 255, 255, 0);
31
+ $dark-color-background-transparent-hover: rgba(147, 151, 159, 0.08);
32
+ $dark-color-background-transparent-active: rgba(147, 151, 159, 0.08);
33
+ $dark-color-background-backdrop-default: rgba(0, 0, 0, 0.6);
34
+ $dark-color-text-primary-default: #ced1d6;
35
+ $dark-color-text-primary-hover: #ffffff;
36
+ $dark-color-text-secondary-default: #b9bcc3;
37
+ $dark-color-text-secondary-hover: #ced1d6;
38
+ $dark-color-text-tertiary-default: #93979f;
39
+ $dark-color-text-tertiary-disabled: rgba(216, 218, 222, 0.3);
40
+ $dark-color-text-tertiary-hover: #b9bcc3;
41
+ $dark-color-text-quaternary-default: #757a84;
42
+ $dark-color-text-accent-default: #41a48a;
43
+ $dark-color-text-accent-hover: #a6f2dd;
44
+ $dark-color-text-onAccent-default: #ffffff;
45
+ $dark-color-text-onAccent-disabled: rgba(216, 218, 222, 0.3);
46
+ $dark-color-text-info-default: #99c1fa;
47
+ $dark-color-text-error-default: #f49a9a;
48
+ $dark-color-text-warning-default: #fae0b3;
49
+ $dark-color-text-success-default: #a6f2dd;
50
+ $dark-color-icon-primary: #d8dade;
51
+ $dark-color-icon-secondary: #ced1d6;
52
+ $dark-color-icon-tertiary: #93979f;
53
+ $dark-color-icon-quaternary: #757a84;
54
+ $dark-color-icon-accent: #41a48a;
55
+ $dark-color-icon-onAccent: #ffffff;
56
+ $dark-color-icon-info: #6e95cf;
57
+ $dark-color-icon-error: #d07c7c;
58
+ $dark-color-icon-warning: #cbac76;
59
+ $dark-color-icon-success: #41a48a;
60
+ $dark-color-icon-brand: #62b2bc;
61
+ $dark-color-border-primary-default: #5b5f67;
62
+ $dark-color-border-primary-hover: #757a84;
63
+ $dark-color-border-primary-active: #93979f;
64
+ $dark-color-border-primary-disabled: rgba(147, 151, 159, 0.08);
65
+ $dark-color-border-secondary-default: rgba(147, 149, 159, 0.3);
66
+ $dark-color-border-accent-default: #41a48a;
67
+ $dark-color-border-error-default: #d07c7c;
68
+ $dark-color-border-accentSubtle-default: #28816b;
69
+ $dark-color-divider-primary: #40454f;
70
+ $dark-color-divider-secondary: rgba(147, 151, 159, 0.08);
71
+ $dark-color-toggle-background-highlight: #b2ab39;
72
+ $dark-color-toggle-border-highlight: #b2ab39;
73
+ $dark-color-badge-background-default: transparent;
74
+ $dark-color-badge-background-green: transparent;
75
+ $dark-color-badge-background-blue: transparent;
76
+ $dark-color-badge-background-yellow: transparent;
77
+ $dark-color-badge-background-brand: transparent;
78
+ $dark-color-badge-background-purple: transparent;
79
+ $dark-color-badge-background-red: transparent;
80
+ $dark-color-badge-background-gray: transparent;
81
+ $dark-color-badge-text-default: #ced1d6;
82
+ $dark-color-badge-text-green: #41a48a;
83
+ $dark-color-badge-text-blue: #6e95cf;
84
+ $dark-color-badge-text-yellow: #cbac76;
85
+ $dark-color-badge-text-brand: #62b2bc;
86
+ $dark-color-badge-text-purple: #ad97f7;
87
+ $dark-color-badge-text-red: #d07c7c;
88
+ $dark-color-badge-text-gray: #93979f;
89
+ $dark-color-badge-border-default: #393e47;
90
+ $dark-color-badge-border-green: #393e47;
91
+ $dark-color-badge-border-blue: #393e47;
92
+ $dark-color-badge-border-yellow: #393e47;
93
+ $dark-color-badge-border-brand: #393e47;
94
+ $dark-color-badge-border-purple: #393e47;
95
+ $dark-color-badge-border-red: #393e47;
96
+ $dark-color-badge-border-gray: #393e47;
97
+ $dark-color-segmented-progress-bar-monochrome: #ced1d6;
98
+ $dark-color-segmented-progress-bar-success: #28816b;
99
+ $dark-color-segmented-progress-bar-warning: #a4792d;
100
+ $dark-color-segmented-progress-bar-alert: #a45355;
101
+ $dark-color-segmented-progress-bar-in-progress: #5b5f67;
102
+ $dark-color-tag-background-gray: #5b5f67;
103
+ $dark-color-tag-background-blue: #2f538a;
104
+ $dark-color-tag-text-gray: #ced1d6;
105
+ $dark-color-tag-text-blue: #e7effe;