@amboss/design-system 1.14.5 → 1.15.0--canary-1
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.
- package/README.md +17 -10
- package/build/cjs/build-tokens/visualConfig.js +42 -187
- package/build/cjs/scss/themes/dark.scss +108 -102
- package/build/cjs/scss/themes/light.scss +108 -102
- package/build/cjs/src/components/Button/Button.js +41 -23
- package/build/cjs/src/components/Callout/Callout.js +2 -3
- package/build/cjs/src/components/Form/Toggle/Toggle.js +6 -6
- package/build/cjs/src/components/Form/ToggleButton/ToggleButton.js +8 -8
- package/build/cjs/src/components/Link/Link.js +2 -7
- package/build/cjs/src/components/LoadingSpinner/LoadingSpinner.js +4 -4
- package/build/cjs/src/components/MediaItem/MediaItem.js +5 -10
- package/build/cjs/src/components/Patterns/ButtonGroup/ButtonGroup.js +12 -4
- package/build/cjs/src/components/Tabs/Tabs.js +3 -3
- package/build/esm/build-tokens/_breakpoints.json +17 -0
- package/build/esm/build-tokens/_colors.json +918 -0
- package/build/esm/build-tokens/_icon_sizes_map.json +7 -0
- package/build/esm/build-tokens/_sizes.json +782 -0
- package/build/esm/build-tokens/_zindex.json +17 -0
- package/build/esm/build-tokens/assets/icons.json +141 -0
- package/build/esm/build-tokens/assets/icons16.json +153 -0
- package/build/esm/build-tokens/assets/logo.json +3 -0
- package/build/esm/build-tokens/visualConfig.d.ts +19 -174
- package/build/esm/build-tokens/visualConfig.js +42 -187
- package/build/esm/build-tokens/visualConfig.js.map +1 -1
- package/build/esm/scss/themes/dark.scss +108 -102
- package/build/esm/scss/themes/light.scss +108 -102
- package/build/esm/src/components/Button/Button.d.ts +3 -1
- package/build/esm/src/components/Button/Button.js +41 -23
- package/build/esm/src/components/Button/Button.js.map +1 -1
- package/build/esm/src/components/Callout/Callout.js +2 -3
- package/build/esm/src/components/Callout/Callout.js.map +1 -1
- package/build/esm/src/components/Form/Toggle/Toggle.js +6 -6
- package/build/esm/src/components/Form/Toggle/Toggle.js.map +1 -1
- package/build/esm/src/components/Form/ToggleButton/ToggleButton.js +8 -8
- package/build/esm/src/components/Form/ToggleButton/ToggleButton.js.map +1 -1
- package/build/esm/src/components/Link/Link.d.ts +4 -4
- package/build/esm/src/components/Link/Link.js +2 -7
- package/build/esm/src/components/Link/Link.js.map +1 -1
- package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js +4 -4
- package/build/esm/src/components/LoadingSpinner/LoadingSpinner.js.map +1 -1
- package/build/esm/src/components/MediaItem/MediaItem.d.ts +0 -7
- package/build/esm/src/components/MediaItem/MediaItem.js +5 -10
- package/build/esm/src/components/MediaItem/MediaItem.js.map +1 -1
- package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.d.ts +3 -4
- package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js +11 -4
- package/build/esm/src/components/Patterns/ButtonGroup/ButtonGroup.js.map +1 -1
- package/build/esm/src/components/Tabs/Tabs.js +3 -3
- package/build/esm/src/components/Tabs/Tabs.js.map +1 -1
- package/build/esm/src/types/index.d.ts +1 -1
- 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
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
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/
|
|
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
|
-
`
|
|
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
|
},
|
|
@@ -397,7 +232,10 @@ const ambossVisualConfiguration = {
|
|
|
397
232
|
"disabled": "rgba(255, 255, 255, 0.6)"
|
|
398
233
|
},
|
|
399
234
|
"error": {
|
|
400
|
-
"default": "#a45355"
|
|
235
|
+
"default": "#a45355",
|
|
236
|
+
"hover": "#d07c7c",
|
|
237
|
+
"active": "#4d3237",
|
|
238
|
+
"disabled": "rgba(164, 83, 85, 0.3)"
|
|
401
239
|
},
|
|
402
240
|
"success": {
|
|
403
241
|
"default": "#28816b"
|
|
@@ -423,7 +261,7 @@ const ambossVisualConfiguration = {
|
|
|
423
261
|
"warningSubtle": {
|
|
424
262
|
"default": "#32302f"
|
|
425
263
|
},
|
|
426
|
-
"
|
|
264
|
+
"highlight": {
|
|
427
265
|
"default": "#40454f",
|
|
428
266
|
"hover": "#393e47"
|
|
429
267
|
},
|
|
@@ -468,7 +306,8 @@ const ambossVisualConfiguration = {
|
|
|
468
306
|
"default": "#99c1fa"
|
|
469
307
|
},
|
|
470
308
|
"error": {
|
|
471
|
-
"default": "#f49a9a"
|
|
309
|
+
"default": "#f49a9a",
|
|
310
|
+
"disabled": "rgba(244, 154, 154, 0.3)"
|
|
472
311
|
},
|
|
473
312
|
"warning": {
|
|
474
313
|
"default": "#fae0b3"
|
|
@@ -516,10 +355,10 @@ const ambossVisualConfiguration = {
|
|
|
516
355
|
},
|
|
517
356
|
"toggle": {
|
|
518
357
|
"background": {
|
|
519
|
-
"
|
|
358
|
+
"highlight": "#b2ab39"
|
|
520
359
|
},
|
|
521
360
|
"border": {
|
|
522
|
-
"
|
|
361
|
+
"highlight": "#b2ab39"
|
|
523
362
|
}
|
|
524
363
|
},
|
|
525
364
|
"badge": {
|
|
@@ -554,6 +393,13 @@ const ambossVisualConfiguration = {
|
|
|
554
393
|
"gray": "#393e47"
|
|
555
394
|
}
|
|
556
395
|
},
|
|
396
|
+
"segmentedProgressBar": {
|
|
397
|
+
"monochrome": "#ced1d6",
|
|
398
|
+
"success": "#28816b",
|
|
399
|
+
"warning": "#a4792d",
|
|
400
|
+
"alert": "#a45355",
|
|
401
|
+
"inProgress": "#5b5f67"
|
|
402
|
+
},
|
|
557
403
|
"tag": {
|
|
558
404
|
"background": {
|
|
559
405
|
"gray": "#5b5f67",
|
|
@@ -564,12 +410,11 @@ const ambossVisualConfiguration = {
|
|
|
564
410
|
"blue": "#e7effe"
|
|
565
411
|
}
|
|
566
412
|
},
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
"inProgress": "#5b5f67"
|
|
413
|
+
"destructiveTertiaryButton": {
|
|
414
|
+
"background": {
|
|
415
|
+
"hover": "rgba(164, 83, 85, 0.08)",
|
|
416
|
+
"active": "rgba(164, 83, 85, 0.08)"
|
|
417
|
+
}
|
|
573
418
|
}
|
|
574
419
|
},
|
|
575
420
|
"subThemes": {
|
|
@@ -947,7 +792,10 @@ const ambossVisualConfiguration = {
|
|
|
947
792
|
"disabled": "rgba(255, 255, 255, 0.6)"
|
|
948
793
|
},
|
|
949
794
|
"error": {
|
|
950
|
-
"default": "#dc4847"
|
|
795
|
+
"default": "#dc4847",
|
|
796
|
+
"hover": "#c02725",
|
|
797
|
+
"active": "#c02725",
|
|
798
|
+
"disabled": "rgba(238, 97, 96, 0.3)"
|
|
951
799
|
},
|
|
952
800
|
"success": {
|
|
953
801
|
"default": "#0b8363"
|
|
@@ -973,7 +821,7 @@ const ambossVisualConfiguration = {
|
|
|
973
821
|
"warningSubtle": {
|
|
974
822
|
"default": "#fef3e1"
|
|
975
823
|
},
|
|
976
|
-
"
|
|
824
|
+
"highlight": {
|
|
977
825
|
"default": "#607585",
|
|
978
826
|
"hover": "#40515e"
|
|
979
827
|
},
|
|
@@ -1018,7 +866,8 @@ const ambossVisualConfiguration = {
|
|
|
1018
866
|
"default": "#1c427d"
|
|
1019
867
|
},
|
|
1020
868
|
"error": {
|
|
1021
|
-
"default": "#c02725"
|
|
869
|
+
"default": "#c02725",
|
|
870
|
+
"disabled": "rgba(192, 39, 37, 0.3)"
|
|
1022
871
|
},
|
|
1023
872
|
"warning": {
|
|
1024
873
|
"default": "#314554"
|
|
@@ -1066,10 +915,10 @@ const ambossVisualConfiguration = {
|
|
|
1066
915
|
},
|
|
1067
916
|
"toggle": {
|
|
1068
917
|
"background": {
|
|
1069
|
-
"
|
|
918
|
+
"highlight": "#f3eb75"
|
|
1070
919
|
},
|
|
1071
920
|
"border": {
|
|
1072
|
-
"
|
|
921
|
+
"highlight": "#f3eb75"
|
|
1073
922
|
}
|
|
1074
923
|
},
|
|
1075
924
|
"badge": {
|
|
@@ -1104,6 +953,13 @@ const ambossVisualConfiguration = {
|
|
|
1104
953
|
"gray": "#eef2f5"
|
|
1105
954
|
}
|
|
1106
955
|
},
|
|
956
|
+
"segmentedProgressBar": {
|
|
957
|
+
"monochrome": "#607585",
|
|
958
|
+
"success": "#39d6ac",
|
|
959
|
+
"warning": "#f1d56b",
|
|
960
|
+
"alert": "#f07575",
|
|
961
|
+
"inProgress": "#e0e6eb"
|
|
962
|
+
},
|
|
1107
963
|
"tag": {
|
|
1108
964
|
"background": {
|
|
1109
965
|
"gray": "#e0e6eb",
|
|
@@ -1114,12 +970,11 @@ const ambossVisualConfiguration = {
|
|
|
1114
970
|
"blue": "#1c427d"
|
|
1115
971
|
}
|
|
1116
972
|
},
|
|
1117
|
-
"
|
|
1118
|
-
"
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
"inProgress": "#e0e6eb"
|
|
973
|
+
"destructiveTertiaryButton": {
|
|
974
|
+
"background": {
|
|
975
|
+
"hover": "rgba(238, 97, 96, 0.08)",
|
|
976
|
+
"active": "rgba(238, 97, 96, 0.08)"
|
|
977
|
+
}
|
|
1123
978
|
}
|
|
1124
979
|
},
|
|
1125
980
|
"subThemes": {
|
|
@@ -1,105 +1,111 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Wed, 13 Sep 2023 07:09:24 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-
|
|
20
|
-
$color-background-
|
|
21
|
-
$color-background-
|
|
22
|
-
$color-background-
|
|
23
|
-
$color-background-
|
|
24
|
-
$color-background-
|
|
25
|
-
$color-background-
|
|
26
|
-
$color-background-
|
|
27
|
-
$color-background-
|
|
28
|
-
$color-background-
|
|
29
|
-
$color-background-
|
|
30
|
-
$color-background-
|
|
31
|
-
$color-background-
|
|
32
|
-
$color-background-
|
|
33
|
-
$color-background-
|
|
34
|
-
$color-
|
|
35
|
-
$color-
|
|
36
|
-
$color-
|
|
37
|
-
$color-text-
|
|
38
|
-
$color-text-
|
|
39
|
-
$color-text-
|
|
40
|
-
$color-text-
|
|
41
|
-
$color-text-
|
|
42
|
-
$color-text-
|
|
43
|
-
$color-text-
|
|
44
|
-
$color-text-
|
|
45
|
-
$color-text-
|
|
46
|
-
$color-text-
|
|
47
|
-
$color-text-
|
|
48
|
-
$color-text-
|
|
49
|
-
$color-text-
|
|
50
|
-
$color-
|
|
51
|
-
$color-
|
|
52
|
-
$color-
|
|
53
|
-
$color-
|
|
54
|
-
$color-icon-
|
|
55
|
-
$color-icon-
|
|
56
|
-
$color-icon-
|
|
57
|
-
$color-icon-
|
|
58
|
-
$color-icon-
|
|
59
|
-
$color-icon-
|
|
60
|
-
$color-icon-
|
|
61
|
-
$color-
|
|
62
|
-
$color-
|
|
63
|
-
$color-
|
|
64
|
-
$color-
|
|
65
|
-
$color-border-
|
|
66
|
-
$color-border-
|
|
67
|
-
$color-border-
|
|
68
|
-
$color-border-
|
|
69
|
-
$color-
|
|
70
|
-
$color-
|
|
71
|
-
$color-
|
|
72
|
-
$color-
|
|
73
|
-
$color-
|
|
74
|
-
$color-
|
|
75
|
-
$color-
|
|
76
|
-
$color-
|
|
77
|
-
$color-badge-background-
|
|
78
|
-
$color-badge-background-
|
|
79
|
-
$color-badge-background-
|
|
80
|
-
$color-badge-background-
|
|
81
|
-
$color-badge-
|
|
82
|
-
$color-badge-
|
|
83
|
-
$color-badge-
|
|
84
|
-
$color-badge-
|
|
85
|
-
$color-badge-text-
|
|
86
|
-
$color-badge-text-
|
|
87
|
-
$color-badge-text-
|
|
88
|
-
$color-badge-text-
|
|
89
|
-
$color-badge-
|
|
90
|
-
$color-badge-
|
|
91
|
-
$color-badge-
|
|
92
|
-
$color-badge-
|
|
93
|
-
$color-badge-border-
|
|
94
|
-
$color-badge-border-
|
|
95
|
-
$color-badge-border-
|
|
96
|
-
$color-badge-border-
|
|
97
|
-
$color-
|
|
98
|
-
$color-
|
|
99
|
-
$color-
|
|
100
|
-
$color-
|
|
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-error-hover: #d07c7c;
|
|
20
|
+
$dark-color-background-error-active: #4d3237;
|
|
21
|
+
$dark-color-background-error-disabled: rgba(164, 83, 85, 0.3);
|
|
22
|
+
$dark-color-background-success-default: #28816b;
|
|
23
|
+
$dark-color-background-info-default: #2f538a;
|
|
24
|
+
$dark-color-background-warning-default: #a4792d;
|
|
25
|
+
$dark-color-background-accentSubtle-default: #233d3d;
|
|
26
|
+
$dark-color-background-errorSubtle-default: #312b31;
|
|
27
|
+
$dark-color-background-successSubtle-default: #262e33;
|
|
28
|
+
$dark-color-background-infoSubtle-default: #282e39;
|
|
29
|
+
$dark-color-background-warningSubtle-default: #32302f;
|
|
30
|
+
$dark-color-background-highlight-default: #40454f;
|
|
31
|
+
$dark-color-background-highlight-hover: #393e47;
|
|
32
|
+
$dark-color-background-contrast-default: #ced1d6;
|
|
33
|
+
$dark-color-background-transparent-default: rgba(255, 255, 255, 0);
|
|
34
|
+
$dark-color-background-transparent-hover: rgba(147, 151, 159, 0.08);
|
|
35
|
+
$dark-color-background-transparent-active: rgba(147, 151, 159, 0.08);
|
|
36
|
+
$dark-color-background-backdrop-default: rgba(0, 0, 0, 0.6);
|
|
37
|
+
$dark-color-text-primary-default: #ced1d6;
|
|
38
|
+
$dark-color-text-primary-hover: #ffffff;
|
|
39
|
+
$dark-color-text-secondary-default: #b9bcc3;
|
|
40
|
+
$dark-color-text-secondary-hover: #ced1d6;
|
|
41
|
+
$dark-color-text-tertiary-default: #93979f;
|
|
42
|
+
$dark-color-text-tertiary-disabled: rgba(216, 218, 222, 0.3);
|
|
43
|
+
$dark-color-text-tertiary-hover: #b9bcc3;
|
|
44
|
+
$dark-color-text-quaternary-default: #757a84;
|
|
45
|
+
$dark-color-text-accent-default: #41a48a;
|
|
46
|
+
$dark-color-text-accent-hover: #a6f2dd;
|
|
47
|
+
$dark-color-text-onAccent-default: #ffffff;
|
|
48
|
+
$dark-color-text-onAccent-disabled: rgba(216, 218, 222, 0.3);
|
|
49
|
+
$dark-color-text-info-default: #99c1fa;
|
|
50
|
+
$dark-color-text-error-default: #f49a9a;
|
|
51
|
+
$dark-color-text-error-disabled: rgba(244, 154, 154, 0.3);
|
|
52
|
+
$dark-color-text-warning-default: #fae0b3;
|
|
53
|
+
$dark-color-text-success-default: #a6f2dd;
|
|
54
|
+
$dark-color-icon-primary: #d8dade;
|
|
55
|
+
$dark-color-icon-secondary: #ced1d6;
|
|
56
|
+
$dark-color-icon-tertiary: #93979f;
|
|
57
|
+
$dark-color-icon-quaternary: #757a84;
|
|
58
|
+
$dark-color-icon-accent: #41a48a;
|
|
59
|
+
$dark-color-icon-onAccent: #ffffff;
|
|
60
|
+
$dark-color-icon-info: #6e95cf;
|
|
61
|
+
$dark-color-icon-error: #d07c7c;
|
|
62
|
+
$dark-color-icon-warning: #cbac76;
|
|
63
|
+
$dark-color-icon-success: #41a48a;
|
|
64
|
+
$dark-color-icon-brand: #62b2bc;
|
|
65
|
+
$dark-color-border-primary-default: #5b5f67;
|
|
66
|
+
$dark-color-border-primary-hover: #757a84;
|
|
67
|
+
$dark-color-border-primary-active: #93979f;
|
|
68
|
+
$dark-color-border-primary-disabled: rgba(147, 151, 159, 0.08);
|
|
69
|
+
$dark-color-border-secondary-default: rgba(147, 149, 159, 0.3);
|
|
70
|
+
$dark-color-border-accent-default: #41a48a;
|
|
71
|
+
$dark-color-border-error-default: #d07c7c;
|
|
72
|
+
$dark-color-border-accentSubtle-default: #28816b;
|
|
73
|
+
$dark-color-divider-primary: #40454f;
|
|
74
|
+
$dark-color-divider-secondary: rgba(147, 151, 159, 0.08);
|
|
75
|
+
$dark-color-toggle-background-highlight: #b2ab39;
|
|
76
|
+
$dark-color-toggle-border-highlight: #b2ab39;
|
|
77
|
+
$dark-color-badge-background-default: transparent;
|
|
78
|
+
$dark-color-badge-background-green: transparent;
|
|
79
|
+
$dark-color-badge-background-blue: transparent;
|
|
80
|
+
$dark-color-badge-background-yellow: transparent;
|
|
81
|
+
$dark-color-badge-background-brand: transparent;
|
|
82
|
+
$dark-color-badge-background-purple: transparent;
|
|
83
|
+
$dark-color-badge-background-red: transparent;
|
|
84
|
+
$dark-color-badge-background-gray: transparent;
|
|
85
|
+
$dark-color-badge-text-default: #ced1d6;
|
|
86
|
+
$dark-color-badge-text-green: #41a48a;
|
|
87
|
+
$dark-color-badge-text-blue: #6e95cf;
|
|
88
|
+
$dark-color-badge-text-yellow: #cbac76;
|
|
89
|
+
$dark-color-badge-text-brand: #62b2bc;
|
|
90
|
+
$dark-color-badge-text-purple: #ad97f7;
|
|
91
|
+
$dark-color-badge-text-red: #d07c7c;
|
|
92
|
+
$dark-color-badge-text-gray: #93979f;
|
|
93
|
+
$dark-color-badge-border-default: #393e47;
|
|
94
|
+
$dark-color-badge-border-green: #393e47;
|
|
95
|
+
$dark-color-badge-border-blue: #393e47;
|
|
96
|
+
$dark-color-badge-border-yellow: #393e47;
|
|
97
|
+
$dark-color-badge-border-brand: #393e47;
|
|
98
|
+
$dark-color-badge-border-purple: #393e47;
|
|
99
|
+
$dark-color-badge-border-red: #393e47;
|
|
100
|
+
$dark-color-badge-border-gray: #393e47;
|
|
101
|
+
$dark-color-segmented-progress-bar-monochrome: #ced1d6;
|
|
102
|
+
$dark-color-segmented-progress-bar-success: #28816b;
|
|
103
|
+
$dark-color-segmented-progress-bar-warning: #a4792d;
|
|
104
|
+
$dark-color-segmented-progress-bar-alert: #a45355;
|
|
105
|
+
$dark-color-segmented-progress-bar-in-progress: #5b5f67;
|
|
106
|
+
$dark-color-tag-background-gray: #5b5f67;
|
|
107
|
+
$dark-color-tag-background-blue: #2f538a;
|
|
108
|
+
$dark-color-tag-text-gray: #ced1d6;
|
|
109
|
+
$dark-color-tag-text-blue: #e7effe;
|
|
110
|
+
$dark-color-destructive-tertiary-button-background-hover: rgba(164, 83, 85, 0.08);
|
|
111
|
+
$dark-color-destructive-tertiary-button-background-active: rgba(164, 83, 85, 0.08);
|