@sats-group/ui-lib 80.2.1 → 80.3.0
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/package.json
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@use 'sass:color';
|
|
2
1
|
@use '../../tokens/corner-radius';
|
|
3
2
|
@use '../../tokens/elevation';
|
|
4
3
|
@use '../../tokens/light';
|
|
@@ -6,7 +5,11 @@
|
|
|
6
5
|
|
|
7
6
|
.confirmation {
|
|
8
7
|
$padding: spacing.$l;
|
|
9
|
-
background: color
|
|
8
|
+
background: color-mix(
|
|
9
|
+
in srgb,
|
|
10
|
+
light.$fixed-background-secondary-default
|
|
11
|
+
70%, transparent
|
|
12
|
+
);
|
|
10
13
|
box-sizing: border-box;
|
|
11
14
|
display: grid;
|
|
12
15
|
height: 100%;
|
package/react/modal/modal.scss
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
@use 'sass:color';
|
|
2
1
|
@use '../../tokens/corner-radius';
|
|
3
2
|
@use '../../tokens/elevation';
|
|
4
3
|
@use '../../tokens/light';
|
|
5
4
|
@use '../../tokens/spacing';
|
|
6
5
|
|
|
7
6
|
.modal {
|
|
8
|
-
background: color
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
background: color-mix(
|
|
8
|
+
in srgb,
|
|
9
|
+
light.$fixed-background-primary-default
|
|
10
|
+
70%, transparent
|
|
11
11
|
);
|
|
12
12
|
box-sizing: border-box;
|
|
13
13
|
display: grid;
|
|
@@ -170,6 +170,10 @@
|
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
+
&__input {
|
|
174
|
+
color: light.$on-surface-primary-default;
|
|
175
|
+
}
|
|
176
|
+
|
|
173
177
|
&--theme-dark {
|
|
174
178
|
#{$block}__icon {
|
|
175
179
|
color: light.$on-fixed-surface-primary-default;
|
|
@@ -184,10 +188,6 @@
|
|
|
184
188
|
color: light.$on-background-primary-alternate;
|
|
185
189
|
}
|
|
186
190
|
|
|
187
|
-
#{$block}__input {
|
|
188
|
-
background-color: transparent;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
191
|
#{$block}__input-wrapper {
|
|
192
192
|
background-color: light.$fixed-surface-secondary-default;
|
|
193
193
|
border-color: light.$ge-border-default;
|
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
[data-theme="dark"] {
|
|
2
|
+
--background-primary-default: #000000;
|
|
3
|
+
--background-primary-hover: #0b2335;
|
|
4
|
+
--background-primary-selected: #000000;
|
|
5
|
+
--background-secondary-default: #1a1a1a;
|
|
6
|
+
--background-secondary-hover: #262626;
|
|
7
|
+
--background-secondary-selected: #1a1a1a;
|
|
8
|
+
--buttons-action-default: #ffffff00;
|
|
9
|
+
--buttons-action-disabled: #ffffff00;
|
|
10
|
+
--buttons-action-pressed: #ffffff00;
|
|
11
|
+
--buttons-cta-default: #fa5333;
|
|
12
|
+
--buttons-cta-disabled: #333333;
|
|
13
|
+
--buttons-cta-hover: #c84229;
|
|
14
|
+
--buttons-clean-default: #ffffff;
|
|
15
|
+
--buttons-clean-disabled: #ffffff1a;
|
|
16
|
+
--buttons-clean-hover: #ffffffe5;
|
|
17
|
+
--buttons-clean-secondary-default: #ffffff26;
|
|
18
|
+
--buttons-clean-secondary-disabled: #ffffff0d;
|
|
19
|
+
--buttons-clean-secondary-hover: #ffffff1a;
|
|
20
|
+
--buttons-clean-secondary-outline: #ffffff;
|
|
21
|
+
--buttons-clean-secondary-outline-disabled: #ffffff66;
|
|
22
|
+
--buttons-complete-default: #fa5333;
|
|
23
|
+
--buttons-complete-disabled: #333333;
|
|
24
|
+
--buttons-complete-hover: #c84229;
|
|
25
|
+
--buttons-destructive-default: #e15b51;
|
|
26
|
+
--buttons-destructive-disabled: #333333;
|
|
27
|
+
--buttons-destructive-hover: #e8847d;
|
|
28
|
+
--buttons-destructive-outlined-default: #e15b51;
|
|
29
|
+
--buttons-destructive-outlined-disabled: #808080;
|
|
30
|
+
--buttons-destructive-outlined-hover: #410f0b;
|
|
31
|
+
--buttons-fixed-action-default: #ffffff00;
|
|
32
|
+
--buttons-fixed-action-disabled: #ffffff00;
|
|
33
|
+
--buttons-fixed-action-pressed: #ffffff00;
|
|
34
|
+
--buttons-fixed-link-default: #ffffff00;
|
|
35
|
+
--buttons-fixed-link-disabled: #ffffff00;
|
|
36
|
+
--buttons-fixed-link-hover: #0f2f46;
|
|
37
|
+
--buttons-link-default: #ffffff00;
|
|
38
|
+
--buttons-link-disabled: #ffffff00;
|
|
39
|
+
--buttons-link-hover: #0f2f46;
|
|
40
|
+
--buttons-primary-default: #ffffff;
|
|
41
|
+
--buttons-primary-disabled: #ffffff1a;
|
|
42
|
+
--buttons-primary-hover: #d4e4ef;
|
|
43
|
+
--buttons-secondary-default: #ffffff;
|
|
44
|
+
--buttons-secondary-disabled: #333333;
|
|
45
|
+
--buttons-secondary-hover: #0f2f46;
|
|
46
|
+
--buttons-waiting-list-default: #5f5fa2;
|
|
47
|
+
--buttons-waiting-list-disabled: #333333;
|
|
48
|
+
--buttons-waiting-list-hover: #37378b;
|
|
49
|
+
--buttons-waiting-list-outlined-default: #5f5fa2;
|
|
50
|
+
--buttons-waiting-list-outlined-disabled: #808080;
|
|
51
|
+
--buttons-waiting-list-outlined-hover: #161638;
|
|
52
|
+
--fixed-background-primary-default: #0a1826;
|
|
53
|
+
--fixed-background-primary-hover: #0d2134;
|
|
54
|
+
--fixed-background-primary-selected: #253748;
|
|
55
|
+
--fixed-background-secondary-default: #0d2134;
|
|
56
|
+
--fixed-background-secondary-hover: #253748;
|
|
57
|
+
--fixed-background-secondary-selected: #404d5b;
|
|
58
|
+
--fixed-surface-primary-default: #0d2134;
|
|
59
|
+
--fixed-surface-primary-hover: #253748;
|
|
60
|
+
--fixed-surface-primary-selected: #404d5b;
|
|
61
|
+
--fixed-surface-secondary-default: #404d5b;
|
|
62
|
+
--fixed-surface-secondary-hover: #253748;
|
|
63
|
+
--fixed-surface-secondary-selected: #404d5b;
|
|
64
|
+
--ge-graphical-elements-1: #ffffff;
|
|
65
|
+
--ge-graphical-elements-2: #ffffffe5;
|
|
66
|
+
--ge-graphical-elements-3: #ffffffb2;
|
|
67
|
+
--ge-graphical-elements-4: #1a1a1a;
|
|
68
|
+
--ge-shadow: #000000;
|
|
69
|
+
--ge-tabs: #1a1a1a;
|
|
70
|
+
--ge-badge-primary: #fb6447;
|
|
71
|
+
--ge-badge-secondary: #e7e9eb;
|
|
72
|
+
--ge-badge-tertiary: #333333;
|
|
73
|
+
--ge-border-default: #4c4c4c;
|
|
74
|
+
--ge-border-focused: #ffffff66;
|
|
75
|
+
--ge-chips-selected-default: #ffffff;
|
|
76
|
+
--ge-chips-selected-disabled: #333333;
|
|
77
|
+
--ge-chips-selected-hover: #ffffffcc;
|
|
78
|
+
--ge-chips-unselected-default: #ffffffd9;
|
|
79
|
+
--ge-chips-unselected-disabled: #ffffff1a;
|
|
80
|
+
--ge-chips-unselected-hover: #ffffff1a;
|
|
81
|
+
--ge-divider-alternate: #ffffff66;
|
|
82
|
+
--ge-divider-default: #333333;
|
|
83
|
+
--ge-divider-fixed: #ffffff33;
|
|
84
|
+
--ge-divider-fixed-alternate: #ffffff66;
|
|
85
|
+
--ge-fixed-badge-primary: #c84229;
|
|
86
|
+
--ge-fixed-badge-secondary: #e9f1f7;
|
|
87
|
+
--ge-fixed-badge-tertiary: #404d5b;
|
|
88
|
+
--ge-fixed-chips-selected-default: #c84229;
|
|
89
|
+
--ge-fixed-chips-selected-disabled: #566471;
|
|
90
|
+
--ge-fixed-chips-selected-hover: #af3a24;
|
|
91
|
+
--ge-fixed-chips-unselected-default: #ffffff;
|
|
92
|
+
--ge-fixed-chips-unselected-disabled: #ffffff80;
|
|
93
|
+
--ge-fixed-chips-unselected-hover: #00000033;
|
|
94
|
+
--ge-fixed-progress-bar-background: #ffffff66;
|
|
95
|
+
--ge-fixed-progress-bar-indicator-alternate: #e7e9eb;
|
|
96
|
+
--ge-fixed-progress-bar-indicator-default: #fb6447;
|
|
97
|
+
--ge-fixed-progress-bar-indicator-disabled: #ffffff66;
|
|
98
|
+
--ge-fixed-selector-selected-default: #fb6447;
|
|
99
|
+
--ge-fixed-selector-selected-disabled: #af3a24;
|
|
100
|
+
--ge-fixed-selector-selected-bg-default: #4b190f;
|
|
101
|
+
--ge-fixed-selector-selected-bg-disabled: #32110a;
|
|
102
|
+
--ge-fixed-selector-unselected-default: #ffffff;
|
|
103
|
+
--ge-fixed-selector-unselected-disabled: #ffffff80;
|
|
104
|
+
--ge-fixed-tabs-background-default: #ffffff00;
|
|
105
|
+
--ge-fixed-tabs-background-disabled: #404d5b;
|
|
106
|
+
--ge-fixed-tabs-background-hover: #ffffff26;
|
|
107
|
+
--ge-fixed-tabs-selected-default: #fa5333;
|
|
108
|
+
--ge-fixed-tabs-selected-disabled: #566471;
|
|
109
|
+
--ge-fixed-tabs-selected-hover: #c84229;
|
|
110
|
+
--ge-fixed-tabs-unselected-default: #ffffff33;
|
|
111
|
+
--ge-fixed-tabs-unselected-disabled: #ffffff1a;
|
|
112
|
+
--ge-fixed-tabs-unselected-hover: #ffffff66;
|
|
113
|
+
--ge-graphs-bar-primary: #fb6447;
|
|
114
|
+
--ge-graphs-bar-secondary: #9ea6ae;
|
|
115
|
+
--ge-graphs-bar-background-primary: #333333;
|
|
116
|
+
--ge-graphs-bar-background-secondary: #4c4c4c;
|
|
117
|
+
--ge-graphs-trend-downwards: #b93947;
|
|
118
|
+
--ge-graphs-trend-neutral: #af3a24;
|
|
119
|
+
--ge-graphs-trend-upwards: #3a9979;
|
|
120
|
+
--ge-icons-attention: #e2b74a;
|
|
121
|
+
--ge-icons-delete: #e15b51;
|
|
122
|
+
--ge-icons-fixed: #ffffff;
|
|
123
|
+
--ge-icons-negative: #b93947;
|
|
124
|
+
--ge-icons-positive: #3a9979;
|
|
125
|
+
--ge-icons-primary: #ffffff;
|
|
126
|
+
--ge-icons-secondary: #cccccc;
|
|
127
|
+
--ge-icons-waiting-list: #5f5fa2;
|
|
128
|
+
--ge-indicator-tags-attention-alternate: #443716;
|
|
129
|
+
--ge-indicator-tags-attention-default: #e7c46d;
|
|
130
|
+
--ge-indicator-tags-featured-alternate: #4b190f;
|
|
131
|
+
--ge-indicator-tags-featured-default: #fb6447;
|
|
132
|
+
--ge-indicator-tags-information-alternate: #0f2f46;
|
|
133
|
+
--ge-indicator-tags-information-default: #2676b0;
|
|
134
|
+
--ge-indicator-tags-negative-alternate: #381115;
|
|
135
|
+
--ge-indicator-tags-negative-default: #b93947;
|
|
136
|
+
--ge-indicator-tags-neutral-alternate: #1a1a1a;
|
|
137
|
+
--ge-indicator-tags-neutral-default: #666666;
|
|
138
|
+
--ge-indicator-tags-positive-alternate: #03261a;
|
|
139
|
+
--ge-indicator-tags-positive-default: #097f58;
|
|
140
|
+
--ge-indicators-attention-alternate: #443716;
|
|
141
|
+
--ge-indicators-attention-default: #e2b74a;
|
|
142
|
+
--ge-indicators-negative-alternate: #381115;
|
|
143
|
+
--ge-indicators-negative-default: #b93947;
|
|
144
|
+
--ge-indicators-neutral-alternate: #333333;
|
|
145
|
+
--ge-indicators-neutral-default: #9ea6ae;
|
|
146
|
+
--ge-indicators-positive-alternate: #03261a;
|
|
147
|
+
--ge-indicators-positive-default: #3a9979;
|
|
148
|
+
--ge-nav-bar-not-selected: #ffffff;
|
|
149
|
+
--ge-nav-bar-selected: #ffffff;
|
|
150
|
+
--ge-progress-bar-background: #4c4c4c;
|
|
151
|
+
--ge-progress-bar-indicator-alternate: #e7e9eb;
|
|
152
|
+
--ge-progress-bar-indicator-default: #fb6447;
|
|
153
|
+
--ge-progress-bar-indicator-disabled: #ffffff33;
|
|
154
|
+
--ge-rewards-blue: #2676b0;
|
|
155
|
+
--ge-rewards-gold: #cca442;
|
|
156
|
+
--ge-rewards-platinum: #9ea6ae;
|
|
157
|
+
--ge-rewards-silver: #cfd3d6;
|
|
158
|
+
--ge-selector-primary-selected-alternate: #32110a;
|
|
159
|
+
--ge-selector-primary-selected-default: #fb6447;
|
|
160
|
+
--ge-selector-primary-selected-disabled: #af3a24;
|
|
161
|
+
--ge-selector-primary-selected-hover: #fa5333;
|
|
162
|
+
--ge-selector-primary-selected-bg-default: #4b190f;
|
|
163
|
+
--ge-selector-primary-selected-bg-disabled: #32110a;
|
|
164
|
+
--ge-selector-primary-unselected-default: #ffffff;
|
|
165
|
+
--ge-selector-primary-unselected-disabled: #ffffff1a;
|
|
166
|
+
--ge-selector-primary-unselected-hover: #32110a;
|
|
167
|
+
--ge-selector-primary-unselected-bg-default: #ffffff00;
|
|
168
|
+
--ge-selector-primary-unselected-bg-disabled: #ffffff00;
|
|
169
|
+
--ge-selector-secondary-selected-default: #ffffff;
|
|
170
|
+
--ge-selector-secondary-selected-disabled: #ffffff33;
|
|
171
|
+
--ge-selector-secondary-selected-bg-default: #0f2f46;
|
|
172
|
+
--ge-selector-secondary-selected-bg-disabled: #0b2335;
|
|
173
|
+
--ge-selector-secondary-unselected-default: #ffffff;
|
|
174
|
+
--ge-selector-secondary-unselected-disabled: #ffffff1a;
|
|
175
|
+
--ge-selector-secondary-unselected-bg-default: #ffffff00;
|
|
176
|
+
--ge-selector-secondary-unselected-bg-disabled: #ffffff00;
|
|
177
|
+
--ge-signal-error: #b93947;
|
|
178
|
+
--ge-signal-neutral: #9ea6ae;
|
|
179
|
+
--ge-signal-success: #3a9979;
|
|
180
|
+
--ge-signal-waiting-list: #5f5fa2;
|
|
181
|
+
--ge-signal-warning: #e2b74a;
|
|
182
|
+
--ge-signal-border-error: #eac4c8;
|
|
183
|
+
--ge-signal-border-featured: #fdbaad;
|
|
184
|
+
--ge-signal-border-information: #d4e4ef;
|
|
185
|
+
--ge-signal-border-neutral: #cccccc;
|
|
186
|
+
--ge-signal-border-success: #b5d9cd;
|
|
187
|
+
--ge-signal-border-waiting-list: #8787b9;
|
|
188
|
+
--ge-signal-border-warning: #f3e6c5;
|
|
189
|
+
--ge-skeleton-default: #333333;
|
|
190
|
+
--ge-tabs-background-default: #ffffff00;
|
|
191
|
+
--ge-tabs-background-disabled: #0d0d0d;
|
|
192
|
+
--ge-tabs-background-hover: #32110a;
|
|
193
|
+
--ge-tabs-selected-default: #fa5333;
|
|
194
|
+
--ge-tabs-selected-disabled: #4b190f;
|
|
195
|
+
--ge-tabs-selected-hover: #c84229;
|
|
196
|
+
--ge-tabs-unselected-default: #333333;
|
|
197
|
+
--ge-tabs-unselected-disabled: #1a1a1a;
|
|
198
|
+
--ge-tabs-unselected-hover: #4c4c4c;
|
|
199
|
+
--ge-tags-featured: #fb6447;
|
|
200
|
+
--ge-tags-primary: #e7e9eb;
|
|
201
|
+
--ge-tags-secondary: #333333;
|
|
202
|
+
--ge-toggle-interactive-element: #ffffff;
|
|
203
|
+
--ge-toggle-selected-default: #fb6447;
|
|
204
|
+
--ge-toggle-selected-disabled: #af3a24;
|
|
205
|
+
--ge-toggle-unselected-default: #4c4c4c;
|
|
206
|
+
--ge-toggle-unselected-disabled: #333333;
|
|
207
|
+
--ge-toggle-unselected-interactive-element: #000000;
|
|
208
|
+
--ge-workouts-availability: #999999;
|
|
209
|
+
--ge-workouts-bootcamp: #caa9ff;
|
|
210
|
+
--ge-workouts-gx: #ffa9b5;
|
|
211
|
+
--ge-workouts-gym-floor: #fdc666;
|
|
212
|
+
--ge-workouts-other: #a3f0bf;
|
|
213
|
+
--ge-workouts-pt: #a9dcff;
|
|
214
|
+
--ge-workouts-treatments: #6a9ea1;
|
|
215
|
+
--on-background-error: #d58891;
|
|
216
|
+
--on-background-featured: #fb6447;
|
|
217
|
+
--on-background-information: #7dadd0;
|
|
218
|
+
--on-background-neutral: #999999;
|
|
219
|
+
--on-background-success: #3a9979;
|
|
220
|
+
--on-background-waiting-list: #8787b9;
|
|
221
|
+
--on-background-warning: #e7c46d;
|
|
222
|
+
--on-background-primary-alternate: #cccccc;
|
|
223
|
+
--on-background-primary-default: #ffffff;
|
|
224
|
+
--on-background-primary-disabled: #808080;
|
|
225
|
+
--on-background-secondary-alternate: #cccccc;
|
|
226
|
+
--on-background-secondary-default: #ffffff;
|
|
227
|
+
--on-background-secondary-disabled: #808080;
|
|
228
|
+
--on-fixed-background-error: #d58891;
|
|
229
|
+
--on-fixed-background-featured: #fb6447;
|
|
230
|
+
--on-fixed-background-information: #7dadd0;
|
|
231
|
+
--on-fixed-background-neutral: #ffffff99;
|
|
232
|
+
--on-fixed-background-success: #6bb29b;
|
|
233
|
+
--on-fixed-background-waiting-list: #afafd1;
|
|
234
|
+
--on-fixed-background-warning: #ecd290;
|
|
235
|
+
--on-fixed-background-primary-alternate: #ffffff99;
|
|
236
|
+
--on-fixed-background-primary-default: #ffffff;
|
|
237
|
+
--on-fixed-background-primary-disabled: #ffffff80;
|
|
238
|
+
--on-fixed-background-secondary-alternate: #ffffff99;
|
|
239
|
+
--on-fixed-background-secondary-default: #ffffff;
|
|
240
|
+
--on-fixed-background-secondary-disabled: #ffffff80;
|
|
241
|
+
--on-fixed-surface-error: #d58891;
|
|
242
|
+
--on-fixed-surface-featured: #fb6447;
|
|
243
|
+
--on-fixed-surface-information: #7dadd0;
|
|
244
|
+
--on-fixed-surface-neutral: #ffffff99;
|
|
245
|
+
--on-fixed-surface-success: #6bb29b;
|
|
246
|
+
--on-fixed-surface-waiting-list: #afafd1;
|
|
247
|
+
--on-fixed-surface-warning: #ecd290;
|
|
248
|
+
--on-fixed-surface-primary-alternate: #ffffffa6;
|
|
249
|
+
--on-fixed-surface-primary-default: #ffffff;
|
|
250
|
+
--on-fixed-surface-primary-disabled: #ffffff80;
|
|
251
|
+
--on-fixed-surface-secondary-alternate: #ffffffa6;
|
|
252
|
+
--on-fixed-surface-secondary-default: #ffffff;
|
|
253
|
+
--on-fixed-surface-secondary-disabled: #ffffff80;
|
|
254
|
+
--on-ge-on-badge-primary: #0d2134;
|
|
255
|
+
--on-ge-on-badge-secondary: #0d2134;
|
|
256
|
+
--on-ge-on-badge-tertiary: #ffffff;
|
|
257
|
+
--on-ge-on-chips-selected-default: #0d2134;
|
|
258
|
+
--on-ge-on-chips-selected-disabled: #ffffff99;
|
|
259
|
+
--on-ge-on-chips-unselected-default: #ffffff;
|
|
260
|
+
--on-ge-on-chips-unselected-disabled: #ffffff33;
|
|
261
|
+
--on-ge-on-fixed-badge-primary: #ffffff;
|
|
262
|
+
--on-ge-on-fixed-badge-secondary: #0d2134;
|
|
263
|
+
--on-ge-on-fixed-badge-tertiary: #ffffff;
|
|
264
|
+
--on-ge-on-fixed-chips-selected-default: #ffffff;
|
|
265
|
+
--on-ge-on-fixed-chips-selected-disabled: #9ea6ae;
|
|
266
|
+
--on-ge-on-fixed-chips-unselected-default: #ffffff;
|
|
267
|
+
--on-ge-on-fixed-chips-unselected-disabled: #ffffff80;
|
|
268
|
+
--on-ge-on-fixed-selector-selected-default: #0d2134;
|
|
269
|
+
--on-ge-on-fixed-selector-selected-disabled: #4b190f;
|
|
270
|
+
--on-ge-on-fixed-selector-unselected-default: #ffffff;
|
|
271
|
+
--on-ge-on-fixed-selector-unselected-disabled: #ffffff80;
|
|
272
|
+
--on-ge-on-fixed-tabs-default: #ffffff;
|
|
273
|
+
--on-ge-on-fixed-tabs-disabled: #ffffff80;
|
|
274
|
+
--on-ge-on-indicator-tags-attention-alternate: #f3e6c5;
|
|
275
|
+
--on-ge-on-indicator-tags-attention-default: #443716;
|
|
276
|
+
--on-ge-on-indicator-tags-featured-alternate: #fdbaad;
|
|
277
|
+
--on-ge-on-indicator-tags-featured-default: #4b190f;
|
|
278
|
+
--on-ge-on-indicator-tags-information-alternate: #d4e4ef;
|
|
279
|
+
--on-ge-on-indicator-tags-information-default: #ffffff;
|
|
280
|
+
--on-ge-on-indicator-tags-negative-alternate: #eac4c8;
|
|
281
|
+
--on-ge-on-indicator-tags-negative-default: #ffffff;
|
|
282
|
+
--on-ge-on-indicator-tags-neutral-alternate: #cccccc;
|
|
283
|
+
--on-ge-on-indicator-tags-neutral-default: #ffffff;
|
|
284
|
+
--on-ge-on-indicator-tags-positive-alternate: #b5d9cd;
|
|
285
|
+
--on-ge-on-indicator-tags-positive-default: #ffffff;
|
|
286
|
+
--on-ge-on-rewards-default: #0d2134;
|
|
287
|
+
--on-ge-on-selector-primary-selected-alternate: #ffffff;
|
|
288
|
+
--on-ge-on-selector-primary-selected-default: #0d2134;
|
|
289
|
+
--on-ge-on-selector-primary-selected-disabled: #ffffff99;
|
|
290
|
+
--on-ge-on-selector-primary-unselected-default: #ffffff;
|
|
291
|
+
--on-ge-on-selector-primary-unselected-disabled: #ffffff33;
|
|
292
|
+
--on-ge-on-selector-secondary-selected-default: #0d2134;
|
|
293
|
+
--on-ge-on-selector-secondary-selected-disabled: #ffffff99;
|
|
294
|
+
--on-ge-on-selector-secondary-unselected-default: #ffffff;
|
|
295
|
+
--on-ge-on-selector-secondary-unselected-disabled: #ffffff33;
|
|
296
|
+
--on-ge-on-tabs-default: #ffffff;
|
|
297
|
+
--on-ge-on-tabs-disabled: #999999;
|
|
298
|
+
--on-ge-on-tags-featured-alternate: #fb6447;
|
|
299
|
+
--on-ge-on-tags-featured-default: #4b190f;
|
|
300
|
+
--on-ge-on-tags-primary-alternate: #ffffff;
|
|
301
|
+
--on-ge-on-tags-primary-default: #0d2134;
|
|
302
|
+
--on-ge-on-tags-secondary-alternate: #ffffff;
|
|
303
|
+
--on-ge-on-tags-secondary-default: #ffffff;
|
|
304
|
+
--on-ge-on-workouts-bootcamp: #422d66;
|
|
305
|
+
--on-ge-on-workouts-gx: #470009;
|
|
306
|
+
--on-ge-on-workouts-gymfloor: #644000;
|
|
307
|
+
--on-ge-on-workouts-other: #184629;
|
|
308
|
+
--on-ge-on-workouts-pt: #16496c;
|
|
309
|
+
--on-ge-on-workouts-treatments: #011314;
|
|
310
|
+
--on-signal-surface-error-alternate: #d58891;
|
|
311
|
+
--on-signal-surface-error-default: #ffffff;
|
|
312
|
+
--on-signal-surface-featured-alternate: #fb6447;
|
|
313
|
+
--on-signal-surface-featured-default: #ffffff;
|
|
314
|
+
--on-signal-surface-information-alternate: #7dadd0;
|
|
315
|
+
--on-signal-surface-information-default: #ffffff;
|
|
316
|
+
--on-signal-surface-neutral-alternate: #999999;
|
|
317
|
+
--on-signal-surface-neutral-default: #ffffff;
|
|
318
|
+
--on-signal-surface-success-alternate: #3a9979;
|
|
319
|
+
--on-signal-surface-success-default: #ffffff;
|
|
320
|
+
--on-signal-surface-waiting-list-alternate: #8787b9;
|
|
321
|
+
--on-signal-surface-waiting-list-default: #ffffff;
|
|
322
|
+
--on-signal-surface-warning-alternate: #e7c46d;
|
|
323
|
+
--on-signal-surface-warning-default: #ffffff;
|
|
324
|
+
--on-surface-error: #d58891;
|
|
325
|
+
--on-surface-featured: #fb6447;
|
|
326
|
+
--on-surface-information: #7dadd0;
|
|
327
|
+
--on-surface-neutral: #999999;
|
|
328
|
+
--on-surface-success: #3a9979;
|
|
329
|
+
--on-surface-waiting-list: #8787b9;
|
|
330
|
+
--on-surface-warning: #e7c46d;
|
|
331
|
+
--on-surface-primary-alternate: #cccccc;
|
|
332
|
+
--on-surface-primary-default: #ffffff;
|
|
333
|
+
--on-surface-primary-disabled: #808080;
|
|
334
|
+
--on-surface-secondary-alternate: #cccccc;
|
|
335
|
+
--on-surface-secondary-default: #ffffff;
|
|
336
|
+
--on-surface-secondary-disabled: #808080;
|
|
337
|
+
--on-workout-surface-availability-default: #ffffff;
|
|
338
|
+
--on-workout-surface-availability-hover: #ffffffcc;
|
|
339
|
+
--on-workout-surface-bootcamp-alternate: #a670ff;
|
|
340
|
+
--on-workout-surface-bootcamp-default: #ffffff;
|
|
341
|
+
--on-workout-surface-gx-alternate: #ff7083;
|
|
342
|
+
--on-workout-surface-gx-default: #ffffff;
|
|
343
|
+
--on-workout-surface-gymfloor-alternate: #fba000;
|
|
344
|
+
--on-workout-surface-gymfloor-default: #ffffff;
|
|
345
|
+
--on-workout-surface-other-alternate: #65e694;
|
|
346
|
+
--on-workout-surface-other-default: #ffffff;
|
|
347
|
+
--on-workout-surface-pt-alternate: #70c4ff;
|
|
348
|
+
--on-workout-surface-pt-default: #ffffff;
|
|
349
|
+
--on-workout-surface-treatments-alternate: #6a9ea1;
|
|
350
|
+
--on-workout-surface-treatments-default: #ffffff;
|
|
351
|
+
--on-buttons-on-action-default: #fa5333;
|
|
352
|
+
--on-buttons-on-action-disabled: #808080;
|
|
353
|
+
--on-buttons-on-action-pressed: #fb6447;
|
|
354
|
+
--on-buttons-on-cta-default: #ffffff;
|
|
355
|
+
--on-buttons-on-cta-disabled: #ffffffb2;
|
|
356
|
+
--on-buttons-on-clean-default: #0d2134;
|
|
357
|
+
--on-buttons-on-clean-disabled: #ffffff80;
|
|
358
|
+
--on-buttons-on-clean-secondary-default: #ffffff;
|
|
359
|
+
--on-buttons-on-clean-secondary-disabled: #ffffffb2;
|
|
360
|
+
--on-buttons-on-complete-default: #ffffff;
|
|
361
|
+
--on-buttons-on-complete-disabled: #ffffffb2;
|
|
362
|
+
--on-buttons-on-destructive-default: #ffffff;
|
|
363
|
+
--on-buttons-on-destructive-disabled: #808080;
|
|
364
|
+
--on-buttons-on-destructive-outlined-default: #e15b51;
|
|
365
|
+
--on-buttons-on-destructive-outlined-disabled: #808080;
|
|
366
|
+
--on-buttons-on-destructive-outlined-hover: #e8847d;
|
|
367
|
+
--on-buttons-on-fixed-action-default: #fa5333;
|
|
368
|
+
--on-buttons-on-fixed-action-disabled: #ffffff80;
|
|
369
|
+
--on-buttons-on-fixed-action-pressed: #fb6447;
|
|
370
|
+
--on-buttons-on-fixed-link-default: #5191c0;
|
|
371
|
+
--on-buttons-on-fixed-link-disabled: #ffffff80;
|
|
372
|
+
--on-buttons-on-fixed-link-hover: #2676b0;
|
|
373
|
+
--on-buttons-on-link-default: #5191c0;
|
|
374
|
+
--on-buttons-on-link-disabled: #808080;
|
|
375
|
+
--on-buttons-on-link-hover: #2676b0;
|
|
376
|
+
--on-buttons-on-primary-default: #0d2134;
|
|
377
|
+
--on-buttons-on-primary-disabled: #808080;
|
|
378
|
+
--on-buttons-on-secondary-default: #ffffff;
|
|
379
|
+
--on-buttons-on-secondary-disabled: #808080;
|
|
380
|
+
--on-buttons-on-waiting-list-default: #ffffff;
|
|
381
|
+
--on-buttons-on-waiting-list-disabled: #808080;
|
|
382
|
+
--on-buttons-on-waiting-list-outlined-default: #5f5fa2;
|
|
383
|
+
--on-buttons-on-waiting-list-outlined-disabled: #808080;
|
|
384
|
+
--on-buttons-on-waiting-list-outlined-hover: #37378b;
|
|
385
|
+
--signal-surface-error: #381115;
|
|
386
|
+
--signal-surface-featured: #32110a;
|
|
387
|
+
--signal-surface-information: #0f2f46;
|
|
388
|
+
--signal-surface-neutral: #1a1a1a;
|
|
389
|
+
--signal-surface-success: #03261a;
|
|
390
|
+
--signal-surface-waiting-list: #161638;
|
|
391
|
+
--signal-surface-warning: #443716;
|
|
392
|
+
--surface-primary-default: #1a1a1a;
|
|
393
|
+
--surface-primary-disabled: #0d0d0d;
|
|
394
|
+
--surface-primary-hover: #0b2335;
|
|
395
|
+
--surface-primary-selected: #0f2f46;
|
|
396
|
+
--surface-secondary-default: #262626;
|
|
397
|
+
--surface-secondary-disabled: #000000;
|
|
398
|
+
--surface-secondary-hover: #333333;
|
|
399
|
+
--surface-secondary-selected: #262626;
|
|
400
|
+
--workout-surface-availability: #262626;
|
|
401
|
+
--workout-surface-availability-hover: #333333;
|
|
402
|
+
--workout-surface-bootcamp: #211633;
|
|
403
|
+
--workout-surface-bootcamp-hover: #422d66;
|
|
404
|
+
--workout-surface-gx: #470009;
|
|
405
|
+
--workout-surface-gx-hover: #912d3a;
|
|
406
|
+
--workout-surface-gymfloor: #322000;
|
|
407
|
+
--workout-surface-gymfloor-hover: #644000;
|
|
408
|
+
--workout-surface-other: #051e0e;
|
|
409
|
+
--workout-surface-other-hover: #184629;
|
|
410
|
+
--workout-surface-pt: #0b3959;
|
|
411
|
+
--workout-surface-pt-hover: #16496c;
|
|
412
|
+
--workout-surface-treatments: #011314;
|
|
413
|
+
--workout-surface-treatments-hover: #04383b;
|
|
414
|
+
}
|
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
[data-theme="light"] {
|
|
2
|
+
--background-primary-default: #f3f4f5;
|
|
3
|
+
--background-primary-hover: #e9f1f7;
|
|
4
|
+
--background-primary-selected: #f3f4f5;
|
|
5
|
+
--background-secondary-default: #ffffff;
|
|
6
|
+
--background-secondary-hover: #f3f4f5;
|
|
7
|
+
--background-secondary-selected: #ffffff;
|
|
8
|
+
--buttons-action-default: #ffffff00;
|
|
9
|
+
--buttons-action-disabled: #ffffff00;
|
|
10
|
+
--buttons-action-pressed: #ffffff00;
|
|
11
|
+
--buttons-cta-default: #c84229;
|
|
12
|
+
--buttons-cta-disabled: #e5e5e5;
|
|
13
|
+
--buttons-cta-hover: #af3a24;
|
|
14
|
+
--buttons-clean-default: #ffffff;
|
|
15
|
+
--buttons-clean-disabled: #ffffff1a;
|
|
16
|
+
--buttons-clean-hover: #ffffffe5;
|
|
17
|
+
--buttons-clean-secondary-default: #ffffff26;
|
|
18
|
+
--buttons-clean-secondary-disabled: #ffffff0d;
|
|
19
|
+
--buttons-clean-secondary-hover: #ffffff1a;
|
|
20
|
+
--buttons-clean-secondary-outline: #ffffff;
|
|
21
|
+
--buttons-clean-secondary-outline-disabled: #ffffff66;
|
|
22
|
+
--buttons-complete-default: #c84229;
|
|
23
|
+
--buttons-complete-disabled: #e5e5e5;
|
|
24
|
+
--buttons-complete-hover: #af3a24;
|
|
25
|
+
--buttons-destructive-default: #d93226;
|
|
26
|
+
--buttons-destructive-disabled: #e5e5e5;
|
|
27
|
+
--buttons-destructive-hover: #ae281e;
|
|
28
|
+
--buttons-destructive-outlined-default: #d93226;
|
|
29
|
+
--buttons-destructive-outlined-disabled: #666666;
|
|
30
|
+
--buttons-destructive-outlined-hover: #fbeae9;
|
|
31
|
+
--buttons-fixed-action-default: #ffffff00;
|
|
32
|
+
--buttons-fixed-action-disabled: #ffffff00;
|
|
33
|
+
--buttons-fixed-action-pressed: #ffffff00;
|
|
34
|
+
--buttons-fixed-link-default: #ffffff00;
|
|
35
|
+
--buttons-fixed-link-disabled: #ffffff00;
|
|
36
|
+
--buttons-fixed-link-hover: #0f2f46;
|
|
37
|
+
--buttons-link-default: #ffffff00;
|
|
38
|
+
--buttons-link-disabled: #ffffff00;
|
|
39
|
+
--buttons-link-hover: #e9f1f7;
|
|
40
|
+
--buttons-primary-default: #0d2134;
|
|
41
|
+
--buttons-primary-disabled: #e5e5e5;
|
|
42
|
+
--buttons-primary-hover: #404d5b;
|
|
43
|
+
--buttons-secondary-default: #0d2134;
|
|
44
|
+
--buttons-secondary-disabled: #cccccc;
|
|
45
|
+
--buttons-secondary-hover: #e9f1f7;
|
|
46
|
+
--buttons-waiting-list-default: #5f5fa2;
|
|
47
|
+
--buttons-waiting-list-disabled: #e5e5e5;
|
|
48
|
+
--buttons-waiting-list-hover: #37378b;
|
|
49
|
+
--buttons-waiting-list-outlined-default: #5f5fa2;
|
|
50
|
+
--buttons-waiting-list-outlined-disabled: #666666;
|
|
51
|
+
--buttons-waiting-list-outlined-hover: #ebebf3;
|
|
52
|
+
--fixed-background-primary-default: #0a1826;
|
|
53
|
+
--fixed-background-primary-hover: #0d2134;
|
|
54
|
+
--fixed-background-primary-selected: #253748;
|
|
55
|
+
--fixed-background-secondary-default: #0d2134;
|
|
56
|
+
--fixed-background-secondary-hover: #253748;
|
|
57
|
+
--fixed-background-secondary-selected: #404d5b;
|
|
58
|
+
--fixed-surface-primary-default: #0d2134;
|
|
59
|
+
--fixed-surface-primary-hover: #253748;
|
|
60
|
+
--fixed-surface-primary-selected: #404d5b;
|
|
61
|
+
--fixed-surface-secondary-default: #404d5b;
|
|
62
|
+
--fixed-surface-secondary-hover: #253748;
|
|
63
|
+
--fixed-surface-secondary-selected: #404d5b;
|
|
64
|
+
--ge-graphical-elements-1: #0d2134;
|
|
65
|
+
--ge-graphical-elements-2: #9ea6ae;
|
|
66
|
+
--ge-graphical-elements-3: #cfd3d6;
|
|
67
|
+
--ge-graphical-elements-4: #0d2134;
|
|
68
|
+
--ge-shadow: #000000;
|
|
69
|
+
--ge-tabs: #f7f7f7;
|
|
70
|
+
--ge-badge-primary: #c84229;
|
|
71
|
+
--ge-badge-secondary: #0d2134;
|
|
72
|
+
--ge-badge-tertiary: #f3f4f5;
|
|
73
|
+
--ge-border-default: #dcdee0;
|
|
74
|
+
--ge-border-focused: #9ea6ae;
|
|
75
|
+
--ge-chips-selected-default: #0d2134;
|
|
76
|
+
--ge-chips-selected-disabled: #dcdee0;
|
|
77
|
+
--ge-chips-selected-hover: #404d5b;
|
|
78
|
+
--ge-chips-unselected-default: #dcdee0;
|
|
79
|
+
--ge-chips-unselected-disabled: #e7e9eb;
|
|
80
|
+
--ge-chips-unselected-hover: #e9f1f7;
|
|
81
|
+
--ge-divider-alternate: #00000033;
|
|
82
|
+
--ge-divider-default: #dcdee0;
|
|
83
|
+
--ge-divider-fixed: #ffffff33;
|
|
84
|
+
--ge-divider-fixed-alternate: #ffffff66;
|
|
85
|
+
--ge-fixed-badge-primary: #c84229;
|
|
86
|
+
--ge-fixed-badge-secondary: #e9f1f7;
|
|
87
|
+
--ge-fixed-badge-tertiary: #404d5b;
|
|
88
|
+
--ge-fixed-chips-selected-default: #c84229;
|
|
89
|
+
--ge-fixed-chips-selected-disabled: #566471;
|
|
90
|
+
--ge-fixed-chips-selected-hover: #af3a24;
|
|
91
|
+
--ge-fixed-chips-unselected-default: #ffffff;
|
|
92
|
+
--ge-fixed-chips-unselected-disabled: #ffffff80;
|
|
93
|
+
--ge-fixed-chips-unselected-hover: #00000033;
|
|
94
|
+
--ge-fixed-progress-bar-background: #ffffff66;
|
|
95
|
+
--ge-fixed-progress-bar-indicator-alternate: #e7e9eb;
|
|
96
|
+
--ge-fixed-progress-bar-indicator-default: #fb6447;
|
|
97
|
+
--ge-fixed-progress-bar-indicator-disabled: #ffffff66;
|
|
98
|
+
--ge-fixed-selector-selected-default: #fb6447;
|
|
99
|
+
--ge-fixed-selector-selected-disabled: #af3a24;
|
|
100
|
+
--ge-fixed-selector-selected-bg-default: #4b190f;
|
|
101
|
+
--ge-fixed-selector-selected-bg-disabled: #32110a;
|
|
102
|
+
--ge-fixed-selector-unselected-default: #ffffff;
|
|
103
|
+
--ge-fixed-selector-unselected-disabled: #ffffff80;
|
|
104
|
+
--ge-fixed-tabs-background-default: #ffffff00;
|
|
105
|
+
--ge-fixed-tabs-background-disabled: #404d5b;
|
|
106
|
+
--ge-fixed-tabs-background-hover: #ffffff26;
|
|
107
|
+
--ge-fixed-tabs-selected-default: #fa5333;
|
|
108
|
+
--ge-fixed-tabs-selected-disabled: #566471;
|
|
109
|
+
--ge-fixed-tabs-selected-hover: #c84229;
|
|
110
|
+
--ge-fixed-tabs-unselected-default: #ffffff33;
|
|
111
|
+
--ge-fixed-tabs-unselected-disabled: #ffffff1a;
|
|
112
|
+
--ge-fixed-tabs-unselected-hover: #ffffff66;
|
|
113
|
+
--ge-graphs-bar-primary: #fa5333;
|
|
114
|
+
--ge-graphs-bar-secondary: #9ea6ae;
|
|
115
|
+
--ge-graphs-bar-background-primary: #dcdee0;
|
|
116
|
+
--ge-graphs-bar-background-secondary: #f3f4f5;
|
|
117
|
+
--ge-graphs-trend-downwards: #b93947;
|
|
118
|
+
--ge-graphs-trend-neutral: #fdbaad;
|
|
119
|
+
--ge-graphs-trend-upwards: #3a9979;
|
|
120
|
+
--ge-icons-attention: #e2b74a;
|
|
121
|
+
--ge-icons-delete: #d93226;
|
|
122
|
+
--ge-icons-fixed: #ffffff;
|
|
123
|
+
--ge-icons-negative: #b93947;
|
|
124
|
+
--ge-icons-positive: #097f58;
|
|
125
|
+
--ge-icons-primary: #0d2134;
|
|
126
|
+
--ge-icons-secondary: #404d5b;
|
|
127
|
+
--ge-icons-waiting-list: #37378b;
|
|
128
|
+
--ge-indicator-tags-attention-alternate: #f8f3e8;
|
|
129
|
+
--ge-indicator-tags-attention-default: #e7c46d;
|
|
130
|
+
--ge-indicator-tags-featured-alternate: #fff6f5;
|
|
131
|
+
--ge-indicator-tags-featured-default: #c84229;
|
|
132
|
+
--ge-indicator-tags-information-alternate: #e9f1f7;
|
|
133
|
+
--ge-indicator-tags-information-default: #2676b0;
|
|
134
|
+
--ge-indicator-tags-negative-alternate: #f8ebed;
|
|
135
|
+
--ge-indicator-tags-negative-default: #b93947;
|
|
136
|
+
--ge-indicator-tags-neutral-alternate: #f3f4f5;
|
|
137
|
+
--ge-indicator-tags-neutral-default: #666666;
|
|
138
|
+
--ge-indicator-tags-positive-alternate: #e6f2ee;
|
|
139
|
+
--ge-indicator-tags-positive-default: #097f58;
|
|
140
|
+
--ge-indicators-attention-alternate: #f3e6c5;
|
|
141
|
+
--ge-indicators-attention-default: #e2b74a;
|
|
142
|
+
--ge-indicators-negative-alternate: #eac4c8;
|
|
143
|
+
--ge-indicators-negative-default: #b93947;
|
|
144
|
+
--ge-indicators-neutral-alternate: #cfd3d6;
|
|
145
|
+
--ge-indicators-neutral-default: #566471;
|
|
146
|
+
--ge-indicators-positive-alternate: #b5d9cd;
|
|
147
|
+
--ge-indicators-positive-default: #097f58;
|
|
148
|
+
--ge-nav-bar-not-selected: #0d2134;
|
|
149
|
+
--ge-nav-bar-selected: #0d2134;
|
|
150
|
+
--ge-progress-bar-background: #dcdee0;
|
|
151
|
+
--ge-progress-bar-indicator-alternate: #0d2134;
|
|
152
|
+
--ge-progress-bar-indicator-default: #fa5333;
|
|
153
|
+
--ge-progress-bar-indicator-disabled: #999999;
|
|
154
|
+
--ge-rewards-blue: #0d2134;
|
|
155
|
+
--ge-rewards-gold: #9e8034;
|
|
156
|
+
--ge-rewards-platinum: #404d5b;
|
|
157
|
+
--ge-rewards-silver: #808080;
|
|
158
|
+
--ge-selector-primary-selected-alternate: #ffeeeb;
|
|
159
|
+
--ge-selector-primary-selected-default: #c84229;
|
|
160
|
+
--ge-selector-primary-selected-disabled: #fdbaad;
|
|
161
|
+
--ge-selector-primary-selected-hover: #af3a24;
|
|
162
|
+
--ge-selector-primary-selected-bg-default: #ffeeeb;
|
|
163
|
+
--ge-selector-primary-selected-bg-disabled: #fff6f5;
|
|
164
|
+
--ge-selector-primary-unselected-default: #666666;
|
|
165
|
+
--ge-selector-primary-unselected-disabled: #dcdee0;
|
|
166
|
+
--ge-selector-primary-unselected-hover: #ffeeeb;
|
|
167
|
+
--ge-selector-primary-unselected-bg-default: #ffffff00;
|
|
168
|
+
--ge-selector-primary-unselected-bg-disabled: #ffffff00;
|
|
169
|
+
--ge-selector-secondary-selected-default: #0d2134;
|
|
170
|
+
--ge-selector-secondary-selected-disabled: #dcdee0;
|
|
171
|
+
--ge-selector-secondary-selected-bg-default: #e7e9eb;
|
|
172
|
+
--ge-selector-secondary-selected-bg-disabled: #f3f4f5;
|
|
173
|
+
--ge-selector-secondary-unselected-default: #566471;
|
|
174
|
+
--ge-selector-secondary-unselected-disabled: #dcdee0;
|
|
175
|
+
--ge-selector-secondary-unselected-bg-default: #ffffff00;
|
|
176
|
+
--ge-selector-secondary-unselected-bg-disabled: #ffffff00;
|
|
177
|
+
--ge-signal-error: #b93947;
|
|
178
|
+
--ge-signal-neutral: #566471;
|
|
179
|
+
--ge-signal-success: #097f58;
|
|
180
|
+
--ge-signal-waiting-list: #37378b;
|
|
181
|
+
--ge-signal-warning: #e2b74a;
|
|
182
|
+
--ge-signal-border-error: #942e39;
|
|
183
|
+
--ge-signal-border-featured: #c84229;
|
|
184
|
+
--ge-signal-border-information: #566471;
|
|
185
|
+
--ge-signal-border-neutral: #666666;
|
|
186
|
+
--ge-signal-border-success: #076646;
|
|
187
|
+
--ge-signal-border-waiting-list: #5f5fa2;
|
|
188
|
+
--ge-signal-border-warning: #866c2a;
|
|
189
|
+
--ge-skeleton-default: #dcdee0;
|
|
190
|
+
--ge-tabs-background-default: #ffffff00;
|
|
191
|
+
--ge-tabs-background-disabled: #e7e9eb;
|
|
192
|
+
--ge-tabs-background-hover: #fff6f5;
|
|
193
|
+
--ge-tabs-selected-default: #fa5333;
|
|
194
|
+
--ge-tabs-selected-disabled: #566471;
|
|
195
|
+
--ge-tabs-selected-hover: #c84229;
|
|
196
|
+
--ge-tabs-unselected-default: #dcdee0;
|
|
197
|
+
--ge-tabs-unselected-disabled: #00000033;
|
|
198
|
+
--ge-tabs-unselected-hover: #cfd3d6;
|
|
199
|
+
--ge-tags-featured: #c84229;
|
|
200
|
+
--ge-tags-primary: #0d2134;
|
|
201
|
+
--ge-tags-secondary: #f3f4f5;
|
|
202
|
+
--ge-toggle-interactive-element: #ffffff;
|
|
203
|
+
--ge-toggle-selected-default: #fa5333;
|
|
204
|
+
--ge-toggle-selected-disabled: #fdbaad;
|
|
205
|
+
--ge-toggle-unselected-default: #9ea6ae;
|
|
206
|
+
--ge-toggle-unselected-disabled: #dcdee0;
|
|
207
|
+
--ge-toggle-unselected-interactive-element: #ffffff;
|
|
208
|
+
--ge-workouts-availability: #666666;
|
|
209
|
+
--ge-workouts-bootcamp: #a670ff;
|
|
210
|
+
--ge-workouts-gx: #ff7083;
|
|
211
|
+
--ge-workouts-gym-floor: #fba000;
|
|
212
|
+
--ge-workouts-other: #65e694;
|
|
213
|
+
--ge-workouts-pt: #70c4ff;
|
|
214
|
+
--ge-workouts-treatments: #065d63;
|
|
215
|
+
--on-background-error: #942e39;
|
|
216
|
+
--on-background-featured: #c84229;
|
|
217
|
+
--on-background-information: #226a9e;
|
|
218
|
+
--on-background-neutral: #666666;
|
|
219
|
+
--on-background-success: #076646;
|
|
220
|
+
--on-background-waiting-list: #37378b;
|
|
221
|
+
--on-background-warning: #866c2a;
|
|
222
|
+
--on-background-primary-alternate: #566471;
|
|
223
|
+
--on-background-primary-default: #0d2134;
|
|
224
|
+
--on-background-primary-disabled: #707070;
|
|
225
|
+
--on-background-secondary-alternate: #566471;
|
|
226
|
+
--on-background-secondary-default: #0d2134;
|
|
227
|
+
--on-background-secondary-disabled: #707070;
|
|
228
|
+
--on-fixed-background-error: #d58891;
|
|
229
|
+
--on-fixed-background-featured: #fb6447;
|
|
230
|
+
--on-fixed-background-information: #7dadd0;
|
|
231
|
+
--on-fixed-background-neutral: #ffffff99;
|
|
232
|
+
--on-fixed-background-success: #6bb29b;
|
|
233
|
+
--on-fixed-background-waiting-list: #afafd1;
|
|
234
|
+
--on-fixed-background-warning: #ecd290;
|
|
235
|
+
--on-fixed-background-primary-alternate: #ffffff99;
|
|
236
|
+
--on-fixed-background-primary-default: #ffffff;
|
|
237
|
+
--on-fixed-background-primary-disabled: #ffffff80;
|
|
238
|
+
--on-fixed-background-secondary-alternate: #ffffff99;
|
|
239
|
+
--on-fixed-background-secondary-default: #ffffff;
|
|
240
|
+
--on-fixed-background-secondary-disabled: #ffffff80;
|
|
241
|
+
--on-fixed-surface-error: #d58891;
|
|
242
|
+
--on-fixed-surface-featured: #fb6447;
|
|
243
|
+
--on-fixed-surface-information: #7dadd0;
|
|
244
|
+
--on-fixed-surface-neutral: #ffffff99;
|
|
245
|
+
--on-fixed-surface-success: #6bb29b;
|
|
246
|
+
--on-fixed-surface-waiting-list: #afafd1;
|
|
247
|
+
--on-fixed-surface-warning: #ecd290;
|
|
248
|
+
--on-fixed-surface-primary-alternate: #ffffffa6;
|
|
249
|
+
--on-fixed-surface-primary-default: #ffffff;
|
|
250
|
+
--on-fixed-surface-primary-disabled: #ffffff80;
|
|
251
|
+
--on-fixed-surface-secondary-alternate: #ffffffa6;
|
|
252
|
+
--on-fixed-surface-secondary-default: #ffffff;
|
|
253
|
+
--on-fixed-surface-secondary-disabled: #ffffff80;
|
|
254
|
+
--on-ge-on-badge-primary: #ffffff;
|
|
255
|
+
--on-ge-on-badge-secondary: #ffffff;
|
|
256
|
+
--on-ge-on-badge-tertiary: #0d2134;
|
|
257
|
+
--on-ge-on-chips-selected-default: #ffffff;
|
|
258
|
+
--on-ge-on-chips-selected-disabled: #566471;
|
|
259
|
+
--on-ge-on-chips-unselected-default: #0d2134;
|
|
260
|
+
--on-ge-on-chips-unselected-disabled: #999999;
|
|
261
|
+
--on-ge-on-fixed-badge-primary: #ffffff;
|
|
262
|
+
--on-ge-on-fixed-badge-secondary: #0d2134;
|
|
263
|
+
--on-ge-on-fixed-badge-tertiary: #ffffff;
|
|
264
|
+
--on-ge-on-fixed-chips-selected-default: #ffffff;
|
|
265
|
+
--on-ge-on-fixed-chips-selected-disabled: #9ea6ae;
|
|
266
|
+
--on-ge-on-fixed-chips-unselected-default: #ffffff;
|
|
267
|
+
--on-ge-on-fixed-chips-unselected-disabled: #ffffff80;
|
|
268
|
+
--on-ge-on-fixed-selector-selected-default: #0d2134;
|
|
269
|
+
--on-ge-on-fixed-selector-selected-disabled: #4b190f;
|
|
270
|
+
--on-ge-on-fixed-selector-unselected-default: #ffffff;
|
|
271
|
+
--on-ge-on-fixed-selector-unselected-disabled: #ffffff80;
|
|
272
|
+
--on-ge-on-fixed-tabs-default: #ffffff;
|
|
273
|
+
--on-ge-on-fixed-tabs-disabled: #ffffff80;
|
|
274
|
+
--on-ge-on-indicator-tags-attention-alternate: #866c2a;
|
|
275
|
+
--on-ge-on-indicator-tags-attention-default: #443716;
|
|
276
|
+
--on-ge-on-indicator-tags-featured-alternate: #c84229;
|
|
277
|
+
--on-ge-on-indicator-tags-featured-default: #ffffff;
|
|
278
|
+
--on-ge-on-indicator-tags-information-alternate: #566471;
|
|
279
|
+
--on-ge-on-indicator-tags-information-default: #ffffff;
|
|
280
|
+
--on-ge-on-indicator-tags-negative-alternate: #942e39;
|
|
281
|
+
--on-ge-on-indicator-tags-negative-default: #ffffff;
|
|
282
|
+
--on-ge-on-indicator-tags-neutral-alternate: #666666;
|
|
283
|
+
--on-ge-on-indicator-tags-neutral-default: #ffffff;
|
|
284
|
+
--on-ge-on-indicator-tags-positive-alternate: #076646;
|
|
285
|
+
--on-ge-on-indicator-tags-positive-default: #ffffff;
|
|
286
|
+
--on-ge-on-rewards-default: #ffffff;
|
|
287
|
+
--on-ge-on-selector-primary-selected-alternate: #0d2134;
|
|
288
|
+
--on-ge-on-selector-primary-selected-default: #ffffff;
|
|
289
|
+
--on-ge-on-selector-primary-selected-disabled: #ffeeeb;
|
|
290
|
+
--on-ge-on-selector-primary-unselected-default: #0d2134;
|
|
291
|
+
--on-ge-on-selector-primary-unselected-disabled: #999999;
|
|
292
|
+
--on-ge-on-selector-secondary-selected-default: #ffffff;
|
|
293
|
+
--on-ge-on-selector-secondary-selected-disabled: #566471;
|
|
294
|
+
--on-ge-on-selector-secondary-unselected-default: #0d2134;
|
|
295
|
+
--on-ge-on-selector-secondary-unselected-disabled: #999999;
|
|
296
|
+
--on-ge-on-tabs-default: #0d2134;
|
|
297
|
+
--on-ge-on-tabs-disabled: #999999;
|
|
298
|
+
--on-ge-on-tags-featured-alternate: #af3a24;
|
|
299
|
+
--on-ge-on-tags-featured-default: #ffffff;
|
|
300
|
+
--on-ge-on-tags-primary-alternate: #0d2134;
|
|
301
|
+
--on-ge-on-tags-primary-default: #ffffff;
|
|
302
|
+
--on-ge-on-tags-secondary-alternate: #0d2134;
|
|
303
|
+
--on-ge-on-tags-secondary-default: #0d2134;
|
|
304
|
+
--on-ge-on-workouts-bootcamp: #211633;
|
|
305
|
+
--on-ge-on-workouts-gx: #470009;
|
|
306
|
+
--on-ge-on-workouts-gymfloor: #322000;
|
|
307
|
+
--on-ge-on-workouts-other: #184629;
|
|
308
|
+
--on-ge-on-workouts-pt: #16496c;
|
|
309
|
+
--on-ge-on-workouts-treatments: #e6efef;
|
|
310
|
+
--on-signal-surface-error-alternate: #942e39;
|
|
311
|
+
--on-signal-surface-error-default: #0d2134;
|
|
312
|
+
--on-signal-surface-featured-alternate: #fa5333;
|
|
313
|
+
--on-signal-surface-featured-default: #0d2134;
|
|
314
|
+
--on-signal-surface-information-alternate: #226a9e;
|
|
315
|
+
--on-signal-surface-information-default: #0d2134;
|
|
316
|
+
--on-signal-surface-neutral-alternate: #666666;
|
|
317
|
+
--on-signal-surface-neutral-default: #253748;
|
|
318
|
+
--on-signal-surface-success-alternate: #076646;
|
|
319
|
+
--on-signal-surface-success-default: #0d2134;
|
|
320
|
+
--on-signal-surface-waiting-list-alternate: #37378b;
|
|
321
|
+
--on-signal-surface-waiting-list-default: #0d2134;
|
|
322
|
+
--on-signal-surface-warning-alternate: #866c2a;
|
|
323
|
+
--on-signal-surface-warning-default: #0d2134;
|
|
324
|
+
--on-surface-error: #942e39;
|
|
325
|
+
--on-surface-featured: #c84229;
|
|
326
|
+
--on-surface-information: #226a9e;
|
|
327
|
+
--on-surface-neutral: #666666;
|
|
328
|
+
--on-surface-success: #076646;
|
|
329
|
+
--on-surface-waiting-list: #37378b;
|
|
330
|
+
--on-surface-warning: #866c2a;
|
|
331
|
+
--on-surface-primary-alternate: #566471;
|
|
332
|
+
--on-surface-primary-default: #0d2134;
|
|
333
|
+
--on-surface-primary-disabled: #707070;
|
|
334
|
+
--on-surface-secondary-alternate: #566471;
|
|
335
|
+
--on-surface-secondary-default: #0d2134;
|
|
336
|
+
--on-surface-secondary-disabled: #666666;
|
|
337
|
+
--on-workout-surface-availability-default: #0d2134;
|
|
338
|
+
--on-workout-surface-availability-hover: #404d5b;
|
|
339
|
+
--on-workout-surface-bootcamp-alternate: #422d66;
|
|
340
|
+
--on-workout-surface-bootcamp-default: #0d2134;
|
|
341
|
+
--on-workout-surface-gx-alternate: #470009;
|
|
342
|
+
--on-workout-surface-gx-default: #0d2134;
|
|
343
|
+
--on-workout-surface-gymfloor-alternate: #644000;
|
|
344
|
+
--on-workout-surface-gymfloor-default: #0d2134;
|
|
345
|
+
--on-workout-surface-other-alternate: #184629;
|
|
346
|
+
--on-workout-surface-other-default: #0d2134;
|
|
347
|
+
--on-workout-surface-pt-alternate: #16496c;
|
|
348
|
+
--on-workout-surface-pt-default: #0d2134;
|
|
349
|
+
--on-workout-surface-treatments-alternate: #011314;
|
|
350
|
+
--on-workout-surface-treatments-default: #0d2134;
|
|
351
|
+
--on-buttons-on-action-default: #c84229;
|
|
352
|
+
--on-buttons-on-action-disabled: #808080;
|
|
353
|
+
--on-buttons-on-action-pressed: #af3a24;
|
|
354
|
+
--on-buttons-on-cta-default: #ffffff;
|
|
355
|
+
--on-buttons-on-cta-disabled: #666666;
|
|
356
|
+
--on-buttons-on-clean-default: #0d2134;
|
|
357
|
+
--on-buttons-on-clean-disabled: #ffffff80;
|
|
358
|
+
--on-buttons-on-clean-secondary-default: #ffffff;
|
|
359
|
+
--on-buttons-on-clean-secondary-disabled: #ffffff99;
|
|
360
|
+
--on-buttons-on-complete-default: #ffffff;
|
|
361
|
+
--on-buttons-on-complete-disabled: #666666;
|
|
362
|
+
--on-buttons-on-destructive-default: #ffffff;
|
|
363
|
+
--on-buttons-on-destructive-disabled: #666666;
|
|
364
|
+
--on-buttons-on-destructive-outlined-default: #d93226;
|
|
365
|
+
--on-buttons-on-destructive-outlined-disabled: #666666;
|
|
366
|
+
--on-buttons-on-destructive-outlined-hover: #ae281e;
|
|
367
|
+
--on-buttons-on-fixed-action-default: #fa5333;
|
|
368
|
+
--on-buttons-on-fixed-action-disabled: #ffffff80;
|
|
369
|
+
--on-buttons-on-fixed-action-pressed: #fb6447;
|
|
370
|
+
--on-buttons-on-fixed-link-default: #5191c0;
|
|
371
|
+
--on-buttons-on-fixed-link-disabled: #ffffff80;
|
|
372
|
+
--on-buttons-on-fixed-link-hover: #2676b0;
|
|
373
|
+
--on-buttons-on-link-default: #226a9e;
|
|
374
|
+
--on-buttons-on-link-disabled: #808080;
|
|
375
|
+
--on-buttons-on-link-hover: #1b537b;
|
|
376
|
+
--on-buttons-on-primary-default: #ffffff;
|
|
377
|
+
--on-buttons-on-primary-disabled: #666666;
|
|
378
|
+
--on-buttons-on-secondary-default: #0d2134;
|
|
379
|
+
--on-buttons-on-secondary-disabled: #666666;
|
|
380
|
+
--on-buttons-on-waiting-list-default: #ffffff;
|
|
381
|
+
--on-buttons-on-waiting-list-disabled: #666666;
|
|
382
|
+
--on-buttons-on-waiting-list-outlined-default: #5f5fa2;
|
|
383
|
+
--on-buttons-on-waiting-list-outlined-disabled: #666666;
|
|
384
|
+
--on-buttons-on-waiting-list-outlined-hover: #37378b;
|
|
385
|
+
--signal-surface-error: #f8ebed;
|
|
386
|
+
--signal-surface-featured: #fff6f5;
|
|
387
|
+
--signal-surface-information: #e9f1f7;
|
|
388
|
+
--signal-surface-neutral: #f2f2f2;
|
|
389
|
+
--signal-surface-success: #e6f2ee;
|
|
390
|
+
--signal-surface-waiting-list: #ebebf3;
|
|
391
|
+
--signal-surface-warning: #f8f3e8;
|
|
392
|
+
--surface-primary-default: #ffffff;
|
|
393
|
+
--surface-primary-disabled: #e7e9eb;
|
|
394
|
+
--surface-primary-hover: #e9f1f7;
|
|
395
|
+
--surface-primary-selected: #d4e4ef;
|
|
396
|
+
--surface-secondary-default: #f7f7f7;
|
|
397
|
+
--surface-secondary-disabled: #e5e5e5;
|
|
398
|
+
--surface-secondary-hover: #ffffff;
|
|
399
|
+
--surface-secondary-selected: #f2f2f2;
|
|
400
|
+
--workout-surface-availability: #dcdee0;
|
|
401
|
+
--workout-surface-availability-hover: #cfd3d6;
|
|
402
|
+
--workout-surface-bootcamp: #e4d4ff;
|
|
403
|
+
--workout-surface-bootcamp-hover: #dbc6ff;
|
|
404
|
+
--workout-surface-gx: #ffc6cd;
|
|
405
|
+
--workout-surface-gx-hover: #ffa9b5;
|
|
406
|
+
--workout-surface-gymfloor: #fdd999;
|
|
407
|
+
--workout-surface-gymfloor-hover: #fdc666;
|
|
408
|
+
--workout-surface-other: #c1f5d4;
|
|
409
|
+
--workout-surface-other-hover: #a3f0bf;
|
|
410
|
+
--workout-surface-pt: #c6e7ff;
|
|
411
|
+
--workout-surface-pt-hover: #a9dcff;
|
|
412
|
+
--workout-surface-treatments: #9bbec1;
|
|
413
|
+
--workout-surface-treatments-hover: #6a9ea1;
|
|
414
|
+
}
|