@hopper-ui/tokens 4.0.1 → 4.1.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/CHANGELOG.md +12 -0
- package/dist/dark/tokens.css +366 -135
- package/dist/tokens.css +360 -129
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @hopper-ui/tokens
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d689dd8: Added new status tokens - updated some status tokens
|
|
8
|
+
|
|
9
|
+
## 4.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8ad853b: Retro fitted active color tokens to ease with migrations, these will be deprecated eventually.
|
|
14
|
+
|
|
3
15
|
## 4.0.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/dark/tokens.css
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
[data-mode="dark"] {
|
|
2
|
+
--hop-danger-border-active: var(--hop-amanita-300);
|
|
3
|
+
--hop-danger-icon-active: var(--hop-amanita-50);
|
|
4
|
+
--hop-danger-icon-weak-active: var(--hop-amanita-300);
|
|
5
|
+
--hop-danger-surface-active: var(--hop-amanita-600);
|
|
6
|
+
--hop-danger-surface-weak-active: var(--hop-amanita-600);
|
|
7
|
+
--hop-danger-text-active: var(--hop-amanita-50);
|
|
8
|
+
--hop-danger-text-weak-active: var(--hop-amanita-300);
|
|
2
9
|
--hop-danger-border: var(--hop-amanita-500);
|
|
3
10
|
--hop-danger-border-selected: var(--hop-amanita-100);
|
|
4
11
|
--hop-danger-border-press: var(--hop-amanita-300);
|
|
@@ -33,6 +40,128 @@
|
|
|
33
40
|
--hop-danger-text-weak: var(--hop-amanita-100);
|
|
34
41
|
--hop-danger-text-weak-hover: var(--hop-amanita-200);
|
|
35
42
|
--hop-danger-text-weak-press: var(--hop-amanita-300);
|
|
43
|
+
--hop-neutral-border-active: var(--hop-rock-700);
|
|
44
|
+
--hop-neutral-icon-active: var(--hop-toad-25);
|
|
45
|
+
--hop-neutral-icon-weak-active: var(--hop-rock-50);
|
|
46
|
+
--hop-neutral-surface-active: var(--hop-rock-700);
|
|
47
|
+
--hop-neutral-surface-weak-active: var(--hop-rock-600);
|
|
48
|
+
--hop-neutral-text-active: var(--hop-toad-25);
|
|
49
|
+
--hop-neutral-text-weak-active: var(--hop-rock-50);
|
|
50
|
+
--hop-neutral-border: var(--hop-rock-500);
|
|
51
|
+
--hop-neutral-border-selected: var(--hop-toad-25);
|
|
52
|
+
--hop-neutral-border-disabled: var(--hop-rock-800);
|
|
53
|
+
--hop-neutral-border-hover: var(--hop-rock-300);
|
|
54
|
+
--hop-neutral-border-press: var(--hop-rock-700);
|
|
55
|
+
--hop-neutral-border-strong: var(--hop-samoyed);
|
|
56
|
+
--hop-neutral-border-strong-hover: var(--hop-samoyed);
|
|
57
|
+
--hop-neutral-border-weakest: var(--hop-rock-800);
|
|
58
|
+
--hop-neutral-border-weak: var(--hop-rock-800);
|
|
59
|
+
--hop-neutral-icon: var(--hop-rock-25);
|
|
60
|
+
--hop-neutral-icon-selected: var(--hop-rock-900);
|
|
61
|
+
--hop-neutral-icon-disabled: var(--hop-rock-500);
|
|
62
|
+
--hop-neutral-icon-hover: var(--hop-rock-50);
|
|
63
|
+
--hop-neutral-icon-press: var(--hop-toad-25);
|
|
64
|
+
--hop-neutral-icon-strong: var(--hop-rock-900);
|
|
65
|
+
--hop-neutral-icon-strong-hover: var(--hop-rock-900);
|
|
66
|
+
--hop-neutral-icon-weak: var(--hop-rock-200);
|
|
67
|
+
--hop-neutral-icon-weak-hover: var(--hop-rock-75);
|
|
68
|
+
--hop-neutral-icon-weak-press: var(--hop-rock-50);
|
|
69
|
+
--hop-neutral-icon-weakest: var(--hop-rock-400);
|
|
70
|
+
--hop-neutral-surface: var(--hop-abyss);
|
|
71
|
+
--hop-neutral-surface-selected: var(--hop-toad-25);
|
|
72
|
+
--hop-neutral-surface-disabled: var(--hop-rock-700);
|
|
73
|
+
--hop-neutral-surface-hover: var(--hop-rock-800);
|
|
74
|
+
--hop-neutral-surface-press: var(--hop-rock-700);
|
|
75
|
+
--hop-neutral-surface-strong: var(--hop-toad-25);
|
|
76
|
+
--hop-neutral-surface-weakest: var(--hop-rock-900);
|
|
77
|
+
--hop-neutral-surface-weak: var(--hop-rock-800);
|
|
78
|
+
--hop-neutral-surface-weak-selected: var(--hop-rock-800);
|
|
79
|
+
--hop-neutral-surface-weak-hover: var(--hop-rock-700);
|
|
80
|
+
--hop-neutral-surface-weak-press: var(--hop-rock-600);
|
|
81
|
+
--hop-neutral-surface-weakest-selected: var(--hop-rock-800);
|
|
82
|
+
--hop-neutral-surface-weakest-hover: var(--hop-rock-800);
|
|
83
|
+
--hop-neutral-text: var(--hop-rock-25);
|
|
84
|
+
--hop-neutral-text-selected: var(--hop-rock-900);
|
|
85
|
+
--hop-neutral-text-disabled: var(--hop-rock-500);
|
|
86
|
+
--hop-neutral-text-hover: var(--hop-rock-50);
|
|
87
|
+
--hop-neutral-text-press: var(--hop-toad-25);
|
|
88
|
+
--hop-neutral-text-strong: var(--hop-rock-900);
|
|
89
|
+
--hop-neutral-text-weak: var(--hop-rock-200);
|
|
90
|
+
--hop-neutral-text-weak-hover: var(--hop-rock-75);
|
|
91
|
+
--hop-neutral-text-weak-press: var(--hop-rock-50);
|
|
92
|
+
--hop-neutral-text-weakest: var(--hop-rock-400);
|
|
93
|
+
--hop-primary-border-active: var(--hop-sapphire-500);
|
|
94
|
+
--hop-primary-icon-active: var(--hop-sapphire-75);
|
|
95
|
+
--hop-primary-surface-active: var(--hop-sapphire-500);
|
|
96
|
+
--hop-primary-surface-strong-active: var(--hop-sapphire-600);
|
|
97
|
+
--hop-primary-surface-weak-active: var(--hop-sapphire-600);
|
|
98
|
+
--hop-primary-text-active: var(--hop-sapphire-75);
|
|
99
|
+
--hop-primary-border: var(--hop-sapphire-300);
|
|
100
|
+
--hop-primary-border-selected: var(--hop-sapphire-300);
|
|
101
|
+
--hop-primary-border-focus: var(--hop-sapphire-200);
|
|
102
|
+
--hop-primary-border-press: var(--hop-sapphire-500);
|
|
103
|
+
--hop-primary-icon: var(--hop-sapphire-200);
|
|
104
|
+
--hop-primary-icon-selected: var(--hop-sapphire-200);
|
|
105
|
+
--hop-primary-icon-disabled: var(--hop-sapphire-700);
|
|
106
|
+
--hop-primary-icon-hover: var(--hop-sapphire-300);
|
|
107
|
+
--hop-primary-icon-press: var(--hop-sapphire-75);
|
|
108
|
+
--hop-primary-icon-strong: var(--hop-samoyed);
|
|
109
|
+
--hop-primary-icon-strong-hover: var(--hop-sapphire-300);
|
|
110
|
+
--hop-primary-surface: var(--hop-sapphire-200);
|
|
111
|
+
--hop-primary-surface-selected: var(--hop-sapphire-800);
|
|
112
|
+
--hop-primary-surface-disabled: var(--hop-sapphire-700);
|
|
113
|
+
--hop-primary-surface-focus: var(--hop-sapphire-900);
|
|
114
|
+
--hop-primary-surface-hover: var(--hop-sapphire-400);
|
|
115
|
+
--hop-primary-surface-press: var(--hop-sapphire-500);
|
|
116
|
+
--hop-primary-surface-strong: var(--hop-sapphire-400);
|
|
117
|
+
--hop-primary-surface-strong-selected: var(--hop-sapphire-800);
|
|
118
|
+
--hop-primary-surface-strong-hover: var(--hop-sapphire-500);
|
|
119
|
+
--hop-primary-surface-strong-press: var(--hop-sapphire-600);
|
|
120
|
+
--hop-primary-surface-weak: var(--hop-sapphire-800);
|
|
121
|
+
--hop-primary-surface-weak-hover: var(--hop-sapphire-700);
|
|
122
|
+
--hop-primary-surface-weak-press: var(--hop-sapphire-600);
|
|
123
|
+
--hop-primary-text: var(--hop-sapphire-100);
|
|
124
|
+
--hop-primary-text-hover: var(--hop-sapphire-200);
|
|
125
|
+
--hop-primary-text-press: var(--hop-sapphire-75);
|
|
126
|
+
--hop-primary-text-strong: var(--hop-samoyed);
|
|
127
|
+
--hop-primary-text-strong-hover: var(--hop-samoyed);
|
|
128
|
+
--hop-primary-text-selected: var(--hop-sapphire-200);
|
|
129
|
+
--hop-primary-text-disabled: var(--hop-sapphire-700);
|
|
130
|
+
--hop-upsell-border-active: var(--hop-sunken-treasure-400);
|
|
131
|
+
--hop-upsell-icon-active: var(--hop-sunken-treasure-900);
|
|
132
|
+
--hop-upsell-icon-weak-active: var(--hop-sunken-treasure-300);
|
|
133
|
+
--hop-upsell-surface-active: var(--hop-sunken-treasure-300);
|
|
134
|
+
--hop-upsell-surface-weak-active: var(--hop-sunken-treasure-600);
|
|
135
|
+
--hop-upsell-text-active: var(--hop-sunken-treasure-900);
|
|
136
|
+
--hop-upsell-text-weak-active: var(--hop-sunken-treasure-300);
|
|
137
|
+
--hop-upsell-border: var(--hop-sunken-treasure-200);
|
|
138
|
+
--hop-upsell-border-selected: var(--hop-sunken-treasure-100);
|
|
139
|
+
--hop-upsell-border-disabled: var(--hop-sunken-treasure-700);
|
|
140
|
+
--hop-upsell-border-press: var(--hop-sunken-treasure-400);
|
|
141
|
+
--hop-upsell-icon: var(--hop-sunken-treasure-700);
|
|
142
|
+
--hop-upsell-icon-selected: var(--hop-sunken-treasure-100);
|
|
143
|
+
--hop-upsell-icon-hover: var(--hop-sunken-treasure-800);
|
|
144
|
+
--hop-upsell-icon-press: var(--hop-sunken-treasure-900);
|
|
145
|
+
--hop-upsell-icon-weakest: var(--hop-sunken-treasure-100);
|
|
146
|
+
--hop-upsell-icon-weak: var(--hop-sunken-treasure-300);
|
|
147
|
+
--hop-upsell-icon-weak-hover: var(--hop-sunken-treasure-200);
|
|
148
|
+
--hop-upsell-icon-weak-press: var(--hop-sunken-treasure-300);
|
|
149
|
+
--hop-upsell-surface: var(--hop-sunken-treasure-50);
|
|
150
|
+
--hop-upsell-surface-selected: var(--hop-sunken-treasure-800);
|
|
151
|
+
--hop-upsell-surface-disabled: var(--hop-sunken-treasure-700);
|
|
152
|
+
--hop-upsell-surface-hover: var(--hop-sunken-treasure-200);
|
|
153
|
+
--hop-upsell-surface-press: var(--hop-sunken-treasure-300);
|
|
154
|
+
--hop-upsell-surface-weak: var(--hop-sunken-treasure-900);
|
|
155
|
+
--hop-upsell-surface-weak-hover: var(--hop-sunken-treasure-700);
|
|
156
|
+
--hop-upsell-surface-weak-press: var(--hop-sunken-treasure-600);
|
|
157
|
+
--hop-upsell-text: var(--hop-sunken-treasure-700);
|
|
158
|
+
--hop-upsell-text-selected: var(--hop-sunken-treasure-100);
|
|
159
|
+
--hop-upsell-text-disabled: var(--hop-sunken-treasure-300);
|
|
160
|
+
--hop-upsell-text-hover: var(--hop-sunken-treasure-800);
|
|
161
|
+
--hop-upsell-text-press: var(--hop-sunken-treasure-900);
|
|
162
|
+
--hop-upsell-text-weak: var(--hop-sunken-treasure-100);
|
|
163
|
+
--hop-upsell-text-weak-hover: var(--hop-sunken-treasure-200);
|
|
164
|
+
--hop-upsell-text-weak-press: var(--hop-sunken-treasure-300);
|
|
36
165
|
--hop-decorative-option1-border: var(--hop-sapphire-400);
|
|
37
166
|
--hop-decorative-option1-icon: var(--hop-sapphire-900);
|
|
38
167
|
--hop-decorative-option1-surface: var(--hop-sapphire-100);
|
|
@@ -132,128 +261,258 @@
|
|
|
132
261
|
--hop-information-surface-weak: var(--hop-coastal-800);
|
|
133
262
|
--hop-information-text: var(--hop-coastal-900);
|
|
134
263
|
--hop-information-text-weak: var(--hop-coastal-75);
|
|
135
|
-
--hop-
|
|
136
|
-
--hop-
|
|
137
|
-
--hop-
|
|
138
|
-
--hop-
|
|
139
|
-
--hop-
|
|
140
|
-
--hop-
|
|
141
|
-
--hop-
|
|
142
|
-
--hop-
|
|
143
|
-
--hop-
|
|
144
|
-
--hop-
|
|
145
|
-
--hop-
|
|
146
|
-
--hop-
|
|
147
|
-
--hop-
|
|
148
|
-
--hop-
|
|
149
|
-
--hop-
|
|
150
|
-
--hop-neutral-icon-strong-hover: var(--hop-rock-900);
|
|
151
|
-
--hop-neutral-icon-weak: var(--hop-rock-200);
|
|
152
|
-
--hop-neutral-icon-weak-hover: var(--hop-rock-75);
|
|
153
|
-
--hop-neutral-icon-weak-press: var(--hop-rock-50);
|
|
154
|
-
--hop-neutral-icon-weakest: var(--hop-rock-400);
|
|
155
|
-
--hop-neutral-surface: var(--hop-abyss);
|
|
156
|
-
--hop-neutral-surface-selected: var(--hop-toad-25);
|
|
157
|
-
--hop-neutral-surface-disabled: var(--hop-rock-700);
|
|
158
|
-
--hop-neutral-surface-hover: var(--hop-rock-800);
|
|
159
|
-
--hop-neutral-surface-press: var(--hop-rock-700);
|
|
160
|
-
--hop-neutral-surface-strong: var(--hop-toad-25);
|
|
161
|
-
--hop-neutral-surface-weakest: var(--hop-rock-900);
|
|
162
|
-
--hop-neutral-surface-weak: var(--hop-rock-800);
|
|
163
|
-
--hop-neutral-surface-weak-selected: var(--hop-rock-800);
|
|
164
|
-
--hop-neutral-surface-weak-hover: var(--hop-rock-700);
|
|
165
|
-
--hop-neutral-surface-weak-press: var(--hop-rock-600);
|
|
166
|
-
--hop-neutral-surface-weakest-selected: var(--hop-rock-800);
|
|
167
|
-
--hop-neutral-surface-weakest-hover: var(--hop-rock-800);
|
|
168
|
-
--hop-neutral-text: var(--hop-rock-25);
|
|
169
|
-
--hop-neutral-text-selected: var(--hop-rock-900);
|
|
170
|
-
--hop-neutral-text-disabled: var(--hop-rock-500);
|
|
171
|
-
--hop-neutral-text-hover: var(--hop-rock-50);
|
|
172
|
-
--hop-neutral-text-press: var(--hop-toad-25);
|
|
173
|
-
--hop-neutral-text-strong: var(--hop-rock-900);
|
|
174
|
-
--hop-neutral-text-weak: var(--hop-rock-200);
|
|
175
|
-
--hop-neutral-text-weak-hover: var(--hop-rock-75);
|
|
176
|
-
--hop-neutral-text-weak-press: var(--hop-rock-50);
|
|
177
|
-
--hop-neutral-text-weakest: var(--hop-rock-400);
|
|
178
|
-
--hop-primary-border: var(--hop-sapphire-300);
|
|
179
|
-
--hop-primary-border-selected: var(--hop-sapphire-300);
|
|
180
|
-
--hop-primary-border-focus: var(--hop-sapphire-200);
|
|
181
|
-
--hop-primary-border-press: var(--hop-sapphire-500);
|
|
182
|
-
--hop-primary-icon: var(--hop-sapphire-200);
|
|
183
|
-
--hop-primary-icon-selected: var(--hop-sapphire-200);
|
|
184
|
-
--hop-primary-icon-disabled: var(--hop-sapphire-700);
|
|
185
|
-
--hop-primary-icon-hover: var(--hop-sapphire-300);
|
|
186
|
-
--hop-primary-icon-press: var(--hop-sapphire-75);
|
|
187
|
-
--hop-primary-icon-strong: var(--hop-samoyed);
|
|
188
|
-
--hop-primary-icon-strong-hover: var(--hop-sapphire-300);
|
|
189
|
-
--hop-primary-surface: var(--hop-sapphire-200);
|
|
190
|
-
--hop-primary-surface-selected: var(--hop-sapphire-800);
|
|
191
|
-
--hop-primary-surface-disabled: var(--hop-sapphire-700);
|
|
192
|
-
--hop-primary-surface-focus: var(--hop-sapphire-900);
|
|
193
|
-
--hop-primary-surface-hover: var(--hop-sapphire-400);
|
|
194
|
-
--hop-primary-surface-press: var(--hop-sapphire-500);
|
|
195
|
-
--hop-primary-surface-strong: var(--hop-sapphire-400);
|
|
196
|
-
--hop-primary-surface-strong-selected: var(--hop-sapphire-800);
|
|
197
|
-
--hop-primary-surface-strong-hover: var(--hop-sapphire-500);
|
|
198
|
-
--hop-primary-surface-strong-press: var(--hop-sapphire-600);
|
|
199
|
-
--hop-primary-surface-weak: var(--hop-sapphire-800);
|
|
200
|
-
--hop-primary-surface-weak-hover: var(--hop-sapphire-700);
|
|
201
|
-
--hop-primary-surface-weak-press: var(--hop-sapphire-600);
|
|
202
|
-
--hop-primary-text: var(--hop-sapphire-100);
|
|
203
|
-
--hop-primary-text-hover: var(--hop-sapphire-200);
|
|
204
|
-
--hop-primary-text-press: var(--hop-sapphire-75);
|
|
205
|
-
--hop-primary-text-strong: var(--hop-samoyed);
|
|
206
|
-
--hop-primary-text-strong-hover: var(--hop-samoyed);
|
|
207
|
-
--hop-primary-text-selected: var(--hop-sapphire-200);
|
|
208
|
-
--hop-primary-text-disabled: var(--hop-sapphire-700);
|
|
209
|
-
--hop-status-caution-icon: var(--hop-koi-900);
|
|
210
|
-
--hop-status-caution-surface: var(--hop-koi-75);
|
|
264
|
+
--hop-status-caution-border: var(--hop-koi-400);
|
|
265
|
+
--hop-status-caution-border-disabled: var(--hop-koi-600);
|
|
266
|
+
--hop-status-caution-border-hover: var(--hop-koi-500);
|
|
267
|
+
--hop-status-caution-border-press: var(--hop-koi-400);
|
|
268
|
+
--hop-status-caution-border-selected: var(--hop-koi-75);
|
|
269
|
+
--hop-status-caution-icon: var(--hop-koi-800);
|
|
270
|
+
--hop-status-caution-icon-disabled: var(--hop-koi-500);
|
|
271
|
+
--hop-status-caution-icon-hover: var(--hop-koi-900);
|
|
272
|
+
--hop-status-caution-icon-press: var(--hop-koi-800);
|
|
273
|
+
--hop-status-caution-icon-selected: var(--hop-koi-75);
|
|
274
|
+
--hop-status-caution-surface: var(--hop-koi-100);
|
|
275
|
+
--hop-status-caution-surface-disabled: var(--hop-koi-800);
|
|
276
|
+
--hop-status-caution-surface-hover: var(--hop-koi-200);
|
|
277
|
+
--hop-status-caution-surface-press: var(--hop-koi-300);
|
|
278
|
+
--hop-status-caution-surface-selected: var(--hop-koi-800);
|
|
211
279
|
--hop-status-caution-surface-strong: var(--hop-koi-200);
|
|
212
|
-
--hop-status-caution-text: var(--hop-koi-
|
|
213
|
-
--hop-status-
|
|
214
|
-
--hop-status-
|
|
215
|
-
--hop-status-
|
|
216
|
-
--hop-status-
|
|
217
|
-
--hop-status-
|
|
218
|
-
--hop-status-
|
|
280
|
+
--hop-status-caution-text: var(--hop-koi-800);
|
|
281
|
+
--hop-status-caution-text-disabled: var(--hop-koi-500);
|
|
282
|
+
--hop-status-caution-text-hover: var(--hop-koi-900);
|
|
283
|
+
--hop-status-caution-text-press: var(--hop-koi-800);
|
|
284
|
+
--hop-status-caution-text-selected: var(--hop-koi-75);
|
|
285
|
+
--hop-status-inactive-border: var(--hop-rock-400);
|
|
286
|
+
--hop-status-inactive-border-disabled: var(--hop-rock-600);
|
|
287
|
+
--hop-status-inactive-border-hover: var(--hop-rock-500);
|
|
288
|
+
--hop-status-inactive-border-press: var(--hop-rock-400);
|
|
289
|
+
--hop-status-inactive-border-selected: var(--hop-rock-75);
|
|
290
|
+
--hop-status-inactive-icon: var(--hop-rock-800);
|
|
291
|
+
--hop-status-inactive-icon-disabled: var(--hop-rock-500);
|
|
292
|
+
--hop-status-inactive-icon-hover: var(--hop-rock-900);
|
|
293
|
+
--hop-status-inactive-icon-press: var(--hop-rock-800);
|
|
294
|
+
--hop-status-inactive-icon-selected: var(--hop-rock-75);
|
|
295
|
+
--hop-status-inactive-surface: var(--hop-rock-75);
|
|
296
|
+
--hop-status-inactive-surface-disabled: var(--hop-rock-800);
|
|
297
|
+
--hop-status-inactive-surface-hover: var(--hop-rock-200);
|
|
298
|
+
--hop-status-inactive-surface-press: var(--hop-rock-300);
|
|
299
|
+
--hop-status-inactive-surface-selected: var(--hop-rock-800);
|
|
300
|
+
--hop-status-inactive-surface-strong: var(--hop-rock-100);
|
|
301
|
+
--hop-status-inactive-text: var(--hop-rock-800);
|
|
302
|
+
--hop-status-inactive-text-disabled: var(--hop-rock-500);
|
|
303
|
+
--hop-status-inactive-text-hover: var(--hop-rock-900);
|
|
304
|
+
--hop-status-inactive-text-press: var(--hop-rock-800);
|
|
305
|
+
--hop-status-inactive-text-selected: var(--hop-rock-75);
|
|
306
|
+
--hop-status-negative-border: var(--hop-amanita-400);
|
|
307
|
+
--hop-status-negative-border-disabled: var(--hop-amanita-600);
|
|
308
|
+
--hop-status-negative-border-hover: var(--hop-amanita-500);
|
|
309
|
+
--hop-status-negative-border-press: var(--hop-amanita-400);
|
|
310
|
+
--hop-status-negative-border-selected: var(--hop-amanita-75);
|
|
311
|
+
--hop-status-negative-icon: var(--hop-amanita-800);
|
|
312
|
+
--hop-status-negative-icon-disabled: var(--hop-amanita-500);
|
|
313
|
+
--hop-status-negative-icon-hover: var(--hop-amanita-900);
|
|
314
|
+
--hop-status-negative-icon-press: var(--hop-amanita-800);
|
|
315
|
+
--hop-status-negative-icon-selected: var(--hop-amanita-75);
|
|
316
|
+
--hop-status-negative-surface: var(--hop-amanita-100);
|
|
317
|
+
--hop-status-negative-surface-disabled: var(--hop-amanita-800);
|
|
318
|
+
--hop-status-negative-surface-hover: var(--hop-amanita-200);
|
|
319
|
+
--hop-status-negative-surface-press: var(--hop-amanita-300);
|
|
320
|
+
--hop-status-negative-surface-selected: var(--hop-amanita-800);
|
|
219
321
|
--hop-status-negative-surface-strong: var(--hop-amanita-200);
|
|
220
|
-
--hop-status-negative-text: var(--hop-amanita-
|
|
322
|
+
--hop-status-negative-text: var(--hop-amanita-800);
|
|
323
|
+
--hop-status-negative-text-disabled: var(--hop-amanita-500);
|
|
324
|
+
--hop-status-negative-text-hover: var(--hop-amanita-900);
|
|
325
|
+
--hop-status-negative-text-press: var(--hop-amanita-800);
|
|
326
|
+
--hop-status-negative-text-selected: var(--hop-amanita-75);
|
|
327
|
+
--hop-status-neutral-border: var(--hop-rock-25);
|
|
328
|
+
--hop-status-neutral-border-disabled: var(--hop-rock-800);
|
|
329
|
+
--hop-status-neutral-border-hover: var(--hop-rock-50);
|
|
330
|
+
--hop-status-neutral-border-press: var(--hop-rock-25);
|
|
331
|
+
--hop-status-neutral-border-selected: var(--hop-rock-25);
|
|
221
332
|
--hop-status-neutral-icon: var(--hop-rock-25);
|
|
333
|
+
--hop-status-neutral-icon-disabled: var(--hop-rock-500);
|
|
334
|
+
--hop-status-neutral-icon-hover: var(--hop-rock-50);
|
|
335
|
+
--hop-status-neutral-icon-press: var(--hop-rock-25);
|
|
336
|
+
--hop-status-neutral-icon-selected: var(--hop-rock-25);
|
|
222
337
|
--hop-status-neutral-surface: var(--hop-abyss);
|
|
338
|
+
--hop-status-neutral-surface-disabled: var(--hop-rock-700);
|
|
339
|
+
--hop-status-neutral-surface-hover: var(--hop-rock-800);
|
|
340
|
+
--hop-status-neutral-surface-press: var(--hop-rock-700);
|
|
341
|
+
--hop-status-neutral-surface-selected: var(--hop-toad-25);
|
|
223
342
|
--hop-status-neutral-surface-strong: var(--hop-rock-100);
|
|
224
343
|
--hop-status-neutral-text: var(--hop-rock-25);
|
|
225
|
-
--hop-status-
|
|
226
|
-
--hop-status-
|
|
344
|
+
--hop-status-neutral-text-disabled: var(--hop-rock-500);
|
|
345
|
+
--hop-status-neutral-text-hover: var(--hop-rock-50);
|
|
346
|
+
--hop-status-neutral-text-press: var(--hop-rock-25);
|
|
347
|
+
--hop-status-neutral-text-selected: var(--hop-rock-900);
|
|
348
|
+
--hop-status-option1-border: var(--hop-coastal-400);
|
|
349
|
+
--hop-status-option1-border-disabled: var(--hop-coastal-600);
|
|
350
|
+
--hop-status-option1-border-hover: var(--hop-coastal-500);
|
|
351
|
+
--hop-status-option1-border-press: var(--hop-coastal-400);
|
|
352
|
+
--hop-status-option1-border-selected: var(--hop-coastal-75);
|
|
353
|
+
--hop-status-option1-icon: var(--hop-coastal-800);
|
|
354
|
+
--hop-status-option1-icon-disabled: var(--hop-coastal-500);
|
|
355
|
+
--hop-status-option1-icon-hover: var(--hop-coastal-900);
|
|
356
|
+
--hop-status-option1-icon-press: var(--hop-coastal-800);
|
|
357
|
+
--hop-status-option1-icon-selected: var(--hop-coastal-75);
|
|
358
|
+
--hop-status-option1-surface: var(--hop-coastal-100);
|
|
359
|
+
--hop-status-option1-surface-disabled: var(--hop-coastal-800);
|
|
360
|
+
--hop-status-option1-surface-hover: var(--hop-coastal-200);
|
|
361
|
+
--hop-status-option1-surface-press: var(--hop-coastal-300);
|
|
362
|
+
--hop-status-option1-surface-selected: var(--hop-coastal-800);
|
|
227
363
|
--hop-status-option1-surface-strong: var(--hop-coastal-100);
|
|
228
|
-
--hop-status-option1-text: var(--hop-coastal-
|
|
229
|
-
--hop-status-
|
|
230
|
-
--hop-status-
|
|
364
|
+
--hop-status-option1-text: var(--hop-coastal-800);
|
|
365
|
+
--hop-status-option1-text-disabled: var(--hop-coastal-500);
|
|
366
|
+
--hop-status-option1-text-hover: var(--hop-coastal-900);
|
|
367
|
+
--hop-status-option1-text-press: var(--hop-coastal-800);
|
|
368
|
+
--hop-status-option1-text-selected: var(--hop-coastal-75);
|
|
369
|
+
--hop-status-option2-border: var(--hop-orchid-bloom-300);
|
|
370
|
+
--hop-status-option2-border-disabled: var(--hop-orchid-bloom-600);
|
|
371
|
+
--hop-status-option2-border-hover: var(--hop-orchid-bloom-500);
|
|
372
|
+
--hop-status-option2-border-press: var(--hop-orchid-bloom-300);
|
|
373
|
+
--hop-status-option2-border-selected: var(--hop-orchid-bloom-800);
|
|
374
|
+
--hop-status-option2-icon: var(--hop-orchid-bloom-800);
|
|
375
|
+
--hop-status-option2-icon-disabled: var(--hop-orchid-bloom-500);
|
|
376
|
+
--hop-status-option2-icon-hover: var(--hop-orchid-bloom-900);
|
|
377
|
+
--hop-status-option2-icon-press: var(--hop-orchid-bloom-800);
|
|
378
|
+
--hop-status-option2-icon-selected: var(--hop-orchid-bloom-75);
|
|
379
|
+
--hop-status-option2-surface: var(--hop-orchid-bloom-100);
|
|
380
|
+
--hop-status-option2-surface-disabled: var(--hop-orchid-bloom-800);
|
|
381
|
+
--hop-status-option2-surface-hover: var(--hop-orchid-bloom-200);
|
|
382
|
+
--hop-status-option2-surface-press: var(--hop-orchid-bloom-300);
|
|
383
|
+
--hop-status-option2-surface-selected: var(--hop-orchid-bloom-800);
|
|
231
384
|
--hop-status-option2-surface-strong: var(--hop-orchid-bloom-100);
|
|
232
|
-
--hop-status-option2-text: var(--hop-orchid-bloom-
|
|
233
|
-
--hop-status-
|
|
234
|
-
--hop-status-
|
|
385
|
+
--hop-status-option2-text: var(--hop-orchid-bloom-800);
|
|
386
|
+
--hop-status-option2-text-disabled: var(--hop-orchid-bloom-500);
|
|
387
|
+
--hop-status-option2-text-hover: var(--hop-orchid-bloom-900);
|
|
388
|
+
--hop-status-option2-text-press: var(--hop-orchid-bloom-800);
|
|
389
|
+
--hop-status-option2-text-selected: var(--hop-orchid-bloom-75);
|
|
390
|
+
--hop-status-option3-border: var(--hop-quetzal-400);
|
|
391
|
+
--hop-status-option3-border-disabled: var(--hop-quetzal-600);
|
|
392
|
+
--hop-status-option3-border-hover: var(--hop-quetzal-500);
|
|
393
|
+
--hop-status-option3-border-press: var(--hop-quetzal-400);
|
|
394
|
+
--hop-status-option3-border-selected: var(--hop-quetzal-75);
|
|
395
|
+
--hop-status-option3-icon: var(--hop-quetzal-800);
|
|
396
|
+
--hop-status-option3-icon-disabled: var(--hop-quetzal-500);
|
|
397
|
+
--hop-status-option3-icon-hover: var(--hop-quetzal-900);
|
|
398
|
+
--hop-status-option3-icon-press: var(--hop-quetzal-800);
|
|
399
|
+
--hop-status-option3-icon-selected: var(--hop-quetzal-75);
|
|
400
|
+
--hop-status-option3-surface: var(--hop-quetzal-100);
|
|
401
|
+
--hop-status-option3-surface-disabled: var(--hop-quetzal-800);
|
|
402
|
+
--hop-status-option3-surface-hover: var(--hop-quetzal-200);
|
|
403
|
+
--hop-status-option3-surface-press: var(--hop-quetzal-300);
|
|
404
|
+
--hop-status-option3-surface-selected: var(--hop-quetzal-800);
|
|
235
405
|
--hop-status-option3-surface-strong: var(--hop-quetzal-100);
|
|
236
|
-
--hop-status-option3-text: var(--hop-quetzal-
|
|
237
|
-
--hop-status-
|
|
238
|
-
--hop-status-
|
|
406
|
+
--hop-status-option3-text: var(--hop-quetzal-800);
|
|
407
|
+
--hop-status-option3-text-disabled: var(--hop-quetzal-200);
|
|
408
|
+
--hop-status-option3-text-hover: var(--hop-quetzal-900);
|
|
409
|
+
--hop-status-option3-text-press: var(--hop-quetzal-800);
|
|
410
|
+
--hop-status-option3-text-selected: var(--hop-quetzal-75);
|
|
411
|
+
--hop-status-option4-border: var(--hop-fog-400);
|
|
412
|
+
--hop-status-option4-border-disabled: var(--hop-fog-600);
|
|
413
|
+
--hop-status-option4-border-hover: var(--hop-fog-500);
|
|
414
|
+
--hop-status-option4-border-press: var(--hop-fog-400);
|
|
415
|
+
--hop-status-option4-border-selected: var(--hop-fog-75);
|
|
416
|
+
--hop-status-option4-icon: var(--hop-fog-800);
|
|
417
|
+
--hop-status-option4-icon-disabled: var(--hop-fog-500);
|
|
418
|
+
--hop-status-option4-icon-hover: var(--hop-fog-900);
|
|
419
|
+
--hop-status-option4-icon-press: var(--hop-fog-800);
|
|
420
|
+
--hop-status-option4-icon-selected: var(--hop-fog-75);
|
|
421
|
+
--hop-status-option4-surface: var(--hop-fog-100);
|
|
422
|
+
--hop-status-option4-surface-disabled: var(--hop-fog-600);
|
|
423
|
+
--hop-status-option4-surface-hover: var(--hop-fog-200);
|
|
424
|
+
--hop-status-option4-surface-press: var(--hop-fog-300);
|
|
425
|
+
--hop-status-option4-surface-selected: var(--hop-fog-800);
|
|
239
426
|
--hop-status-option4-surface-strong: var(--hop-fog-100);
|
|
240
|
-
--hop-status-option4-text: var(--hop-fog-
|
|
241
|
-
--hop-status-
|
|
242
|
-
--hop-status-
|
|
427
|
+
--hop-status-option4-text: var(--hop-fog-800);
|
|
428
|
+
--hop-status-option4-text-disabled: var(--hop-fog-500);
|
|
429
|
+
--hop-status-option4-text-hover: var(--hop-fog-900);
|
|
430
|
+
--hop-status-option4-text-press: var(--hop-fog-900);
|
|
431
|
+
--hop-status-option4-text-selected: var(--hop-fog-75);
|
|
432
|
+
--hop-status-option5-border: var(--hop-toad-400);
|
|
433
|
+
--hop-status-option5-border-disabled: var(--hop-toad-600);
|
|
434
|
+
--hop-status-option5-border-hover: var(--hop-toad-500);
|
|
435
|
+
--hop-status-option5-border-press: var(--hop-toad-400);
|
|
436
|
+
--hop-status-option5-border-selected: var(--hop-toad-75);
|
|
437
|
+
--hop-status-option5-icon: var(--hop-toad-800);
|
|
438
|
+
--hop-status-option5-icon-disabled: var(--hop-toad-500);
|
|
439
|
+
--hop-status-option5-icon-hover: var(--hop-toad-900);
|
|
440
|
+
--hop-status-option5-icon-press: var(--hop-toad-800);
|
|
441
|
+
--hop-status-option5-icon-selected: var(--hop-toad-75);
|
|
442
|
+
--hop-status-option5-surface: var(--hop-toad-100);
|
|
443
|
+
--hop-status-option5-surface-disabled: var(--hop-toad-800);
|
|
444
|
+
--hop-status-option5-surface-hover: var(--hop-toad-200);
|
|
445
|
+
--hop-status-option5-surface-press: var(--hop-toad-300);
|
|
446
|
+
--hop-status-option5-surface-selected: var(--hop-toad-800);
|
|
243
447
|
--hop-status-option5-surface-strong: var(--hop-toad-100);
|
|
244
|
-
--hop-status-option5-text: var(--hop-toad-
|
|
245
|
-
--hop-status-
|
|
246
|
-
--hop-status-
|
|
448
|
+
--hop-status-option5-text: var(--hop-toad-800);
|
|
449
|
+
--hop-status-option5-text-disabled: var(--hop-toad-500);
|
|
450
|
+
--hop-status-option5-text-hover: var(--hop-toad-900);
|
|
451
|
+
--hop-status-option5-text-press: var(--hop-toad-800);
|
|
452
|
+
--hop-status-option5-text-selected: var(--hop-toad-75);
|
|
453
|
+
--hop-status-option6-border: var(--hop-sunken-treasure-400);
|
|
454
|
+
--hop-status-option6-border-disabled: var(--hop-sunken-treasure-600);
|
|
455
|
+
--hop-status-option6-border-hover: var(--hop-sunken-treasure-500);
|
|
456
|
+
--hop-status-option6-border-press: var(--hop-sunken-treasure-400);
|
|
457
|
+
--hop-status-option6-border-selected: var(--hop-sunken-treasure-75);
|
|
458
|
+
--hop-status-option6-icon: var(--hop-sunken-treasure-800);
|
|
459
|
+
--hop-status-option6-icon-disabled: var(--hop-sunken-treasure-500);
|
|
460
|
+
--hop-status-option6-icon-hover: var(--hop-sunken-treasure-900);
|
|
461
|
+
--hop-status-option6-icon-press: var(--hop-sunken-treasure-800);
|
|
462
|
+
--hop-status-option6-icon-selected: var(--hop-sunken-treasure-75);
|
|
463
|
+
--hop-status-option6-surface: var(--hop-sunken-treasure-100);
|
|
464
|
+
--hop-status-option6-surface-disabled: var(--hop-sunken-treasure-800);
|
|
465
|
+
--hop-status-option6-surface-hover: var(--hop-sunken-treasure-200);
|
|
466
|
+
--hop-status-option6-surface-press: var(--hop-sunken-treasure-300);
|
|
467
|
+
--hop-status-option6-surface-selected: var(--hop-sunken-treasure-800);
|
|
247
468
|
--hop-status-option6-surface-strong: var(--hop-sunken-treasure-100);
|
|
248
|
-
--hop-status-option6-text: var(--hop-sunken-treasure-
|
|
249
|
-
--hop-status-
|
|
250
|
-
--hop-status-
|
|
469
|
+
--hop-status-option6-text: var(--hop-sunken-treasure-800);
|
|
470
|
+
--hop-status-option6-text-disabled: var(--hop-sunken-treasure-500);
|
|
471
|
+
--hop-status-option6-text-hover: var(--hop-sunken-treasure-900);
|
|
472
|
+
--hop-status-option6-text-press: var(--hop-sunken-treasure-800);
|
|
473
|
+
--hop-status-option6-text-selected: var(--hop-sunken-treasure-75);
|
|
474
|
+
--hop-status-positive-border: var(--hop-moss-400);
|
|
475
|
+
--hop-status-positive-border-disabled: var(--hop-moss-800);
|
|
476
|
+
--hop-status-positive-border-hover: var(--hop-moss-500);
|
|
477
|
+
--hop-status-positive-border-press: var(--hop-moss-400);
|
|
478
|
+
--hop-status-positive-border-selected: var(--hop-moss-75);
|
|
479
|
+
--hop-status-positive-icon: var(--hop-moss-800);
|
|
480
|
+
--hop-status-positive-icon-disabled: var(--hop-moss-200);
|
|
481
|
+
--hop-status-positive-icon-hover: var(--hop-moss-900);
|
|
482
|
+
--hop-status-positive-icon-press: var(--hop-moss-800);
|
|
483
|
+
--hop-status-positive-icon-selected: var(--hop-moss-75);
|
|
484
|
+
--hop-status-positive-surface: var(--hop-moss-100);
|
|
485
|
+
--hop-status-positive-surface-disabled: var(--hop-moss-800);
|
|
486
|
+
--hop-status-positive-surface-hover: var(--hop-moss-200);
|
|
487
|
+
--hop-status-positive-surface-press: var(--hop-moss-300);
|
|
488
|
+
--hop-status-positive-surface-selected: var(--hop-moss-800);
|
|
251
489
|
--hop-status-positive-surface-strong: var(--hop-moss-200);
|
|
252
|
-
--hop-status-positive-text: var(--hop-moss-
|
|
253
|
-
--hop-status-
|
|
490
|
+
--hop-status-positive-text: var(--hop-moss-800);
|
|
491
|
+
--hop-status-positive-text-disabled: var(--hop-moss-500);
|
|
492
|
+
--hop-status-positive-text-hover: var(--hop-moss-900);
|
|
493
|
+
--hop-status-positive-text-press: var(--hop-moss-800);
|
|
494
|
+
--hop-status-positive-text-selected: var(--hop-moss-75);
|
|
495
|
+
--hop-status-progress-border: var(--hop-sapphire-400);
|
|
496
|
+
--hop-status-progress-border-disabled: var(--hop-sapphire-600);
|
|
497
|
+
--hop-status-progress-border-hover: var(--hop-sapphire-500);
|
|
498
|
+
--hop-status-progress-border-press: var(--hop-sapphire-400);
|
|
499
|
+
--hop-status-progress-border-selected: var(--hop-sapphire-75);
|
|
500
|
+
--hop-status-progress-icon: var(--hop-sapphire-800);
|
|
501
|
+
--hop-status-progress-icon-disabled: var(--hop-sapphire-500);
|
|
502
|
+
--hop-status-progress-icon-hover: var(--hop-sapphire-900);
|
|
503
|
+
--hop-status-progress-icon-press: var(--hop-sapphire-800);
|
|
504
|
+
--hop-status-progress-icon-selected: var(--hop-sapphire-75);
|
|
254
505
|
--hop-status-progress-surface: var(--hop-sapphire-100);
|
|
506
|
+
--hop-status-progress-surface-disabled: var(--hop-sapphire-800);
|
|
507
|
+
--hop-status-progress-surface-hover: var(--hop-sapphire-200);
|
|
508
|
+
--hop-status-progress-surface-press: var(--hop-sapphire-300);
|
|
509
|
+
--hop-status-progress-surface-selected: var(--hop-sapphire-800);
|
|
255
510
|
--hop-status-progress-surface-strong: var(--hop-sapphire-200);
|
|
256
|
-
--hop-status-progress-text: var(--hop-sapphire-
|
|
511
|
+
--hop-status-progress-text: var(--hop-sapphire-800);
|
|
512
|
+
--hop-status-progress-text-disabled: var(--hop-sapphire-500);
|
|
513
|
+
--hop-status-progress-text-hover: var(--hop-sapphire-900);
|
|
514
|
+
--hop-status-progress-text-press: var(--hop-sapphire-800);
|
|
515
|
+
--hop-status-progress-text-selected: var(--hop-sapphire-75);
|
|
257
516
|
--hop-success-border: var(--hop-moss-500);
|
|
258
517
|
--hop-success-icon: var(--hop-moss-900);
|
|
259
518
|
--hop-success-icon-weakest: var(--hop-moss-200);
|
|
@@ -264,34 +523,6 @@
|
|
|
264
523
|
--hop-success-text: var(--hop-moss-900);
|
|
265
524
|
--hop-success-text-weak: var(--hop-moss-75);
|
|
266
525
|
--hop-success-text-hover: var(--hop-moss-700);
|
|
267
|
-
--hop-upsell-border: var(--hop-sunken-treasure-200);
|
|
268
|
-
--hop-upsell-border-selected: var(--hop-sunken-treasure-100);
|
|
269
|
-
--hop-upsell-border-disabled: var(--hop-sunken-treasure-700);
|
|
270
|
-
--hop-upsell-border-press: var(--hop-sunken-treasure-400);
|
|
271
|
-
--hop-upsell-icon: var(--hop-sunken-treasure-700);
|
|
272
|
-
--hop-upsell-icon-selected: var(--hop-sunken-treasure-100);
|
|
273
|
-
--hop-upsell-icon-hover: var(--hop-sunken-treasure-800);
|
|
274
|
-
--hop-upsell-icon-press: var(--hop-sunken-treasure-900);
|
|
275
|
-
--hop-upsell-icon-weakest: var(--hop-sunken-treasure-100);
|
|
276
|
-
--hop-upsell-icon-weak: var(--hop-sunken-treasure-300);
|
|
277
|
-
--hop-upsell-icon-weak-hover: var(--hop-sunken-treasure-200);
|
|
278
|
-
--hop-upsell-icon-weak-press: var(--hop-sunken-treasure-300);
|
|
279
|
-
--hop-upsell-surface: var(--hop-sunken-treasure-50);
|
|
280
|
-
--hop-upsell-surface-selected: var(--hop-sunken-treasure-800);
|
|
281
|
-
--hop-upsell-surface-disabled: var(--hop-sunken-treasure-700);
|
|
282
|
-
--hop-upsell-surface-hover: var(--hop-sunken-treasure-200);
|
|
283
|
-
--hop-upsell-surface-press: var(--hop-sunken-treasure-300);
|
|
284
|
-
--hop-upsell-surface-weak: var(--hop-sunken-treasure-900);
|
|
285
|
-
--hop-upsell-surface-weak-hover: var(--hop-sunken-treasure-700);
|
|
286
|
-
--hop-upsell-surface-weak-press: var(--hop-sunken-treasure-600);
|
|
287
|
-
--hop-upsell-text: var(--hop-sunken-treasure-700);
|
|
288
|
-
--hop-upsell-text-selected: var(--hop-sunken-treasure-100);
|
|
289
|
-
--hop-upsell-text-disabled: var(--hop-sunken-treasure-300);
|
|
290
|
-
--hop-upsell-text-hover: var(--hop-sunken-treasure-800);
|
|
291
|
-
--hop-upsell-text-press: var(--hop-sunken-treasure-900);
|
|
292
|
-
--hop-upsell-text-weak: var(--hop-sunken-treasure-100);
|
|
293
|
-
--hop-upsell-text-weak-hover: var(--hop-sunken-treasure-200);
|
|
294
|
-
--hop-upsell-text-weak-press: var(--hop-sunken-treasure-300);
|
|
295
526
|
--hop-warning-border: var(--hop-koi-500);
|
|
296
527
|
--hop-warning-icon: var(--hop-koi-900);
|
|
297
528
|
--hop-warning-icon-weakest: var(--hop-koi-200);
|
package/dist/tokens.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 05 Jul 2024 19:07:34 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -651,34 +651,6 @@
|
|
|
651
651
|
--hop-warning-icon-weakest: var(--hop-koi-100);
|
|
652
652
|
--hop-warning-icon: var(--hop-koi-700);
|
|
653
653
|
--hop-warning-border: var(--hop-koi-100);
|
|
654
|
-
--hop-upsell-text-weak-press: var(--hop-sunken-treasure-600);
|
|
655
|
-
--hop-upsell-text-weak-hover: var(--hop-sunken-treasure-500);
|
|
656
|
-
--hop-upsell-text-weak: var(--hop-sunken-treasure-300);
|
|
657
|
-
--hop-upsell-text-press: var(--hop-sunken-treasure-900);
|
|
658
|
-
--hop-upsell-text-hover: var(--hop-sunken-treasure-800);
|
|
659
|
-
--hop-upsell-text-disabled: var(--hop-sunken-treasure-400);
|
|
660
|
-
--hop-upsell-text-selected: var(--hop-sunken-treasure-400);
|
|
661
|
-
--hop-upsell-text: var(--hop-sunken-treasure-700);
|
|
662
|
-
--hop-upsell-surface-weak-press: var(--hop-sunken-treasure-75);
|
|
663
|
-
--hop-upsell-surface-weak-hover: var(--hop-sunken-treasure-50);
|
|
664
|
-
--hop-upsell-surface-weak: var(--hop-sunken-treasure-25);
|
|
665
|
-
--hop-upsell-surface-press: var(--hop-sunken-treasure-200);
|
|
666
|
-
--hop-upsell-surface-hover: var(--hop-sunken-treasure-100);
|
|
667
|
-
--hop-upsell-surface-disabled: var(--hop-sunken-treasure-25);
|
|
668
|
-
--hop-upsell-surface-selected: var(--hop-sunken-treasure-50);
|
|
669
|
-
--hop-upsell-surface: var(--hop-sunken-treasure-75);
|
|
670
|
-
--hop-upsell-icon-weak-press: var(--hop-sunken-treasure-600);
|
|
671
|
-
--hop-upsell-icon-weak-hover: var(--hop-sunken-treasure-500);
|
|
672
|
-
--hop-upsell-icon-weak: var(--hop-sunken-treasure-100);
|
|
673
|
-
--hop-upsell-icon-weakest: var(--hop-sunken-treasure-75);
|
|
674
|
-
--hop-upsell-icon-press: var(--hop-sunken-treasure-900);
|
|
675
|
-
--hop-upsell-icon-hover: var(--hop-sunken-treasure-800);
|
|
676
|
-
--hop-upsell-icon-selected: var(--hop-sunken-treasure-400);
|
|
677
|
-
--hop-upsell-icon: var(--hop-sunken-treasure-700);
|
|
678
|
-
--hop-upsell-border-press: var(--hop-sunken-treasure-200);
|
|
679
|
-
--hop-upsell-border-disabled: var(--hop-sunken-treasure-75);
|
|
680
|
-
--hop-upsell-border-selected: var(--hop-sunken-treasure-200);
|
|
681
|
-
--hop-upsell-border: var(--hop-sunken-treasure-100);
|
|
682
654
|
--hop-success-text-weak: var(--hop-moss-300);
|
|
683
655
|
--hop-success-text-hover: var(--hop-moss-800);
|
|
684
656
|
--hop-success-text: var(--hop-moss-700);
|
|
@@ -689,128 +661,258 @@
|
|
|
689
661
|
--hop-success-icon-weakest: var(--hop-moss-100);
|
|
690
662
|
--hop-success-icon: var(--hop-moss-700);
|
|
691
663
|
--hop-success-border: var(--hop-moss-100);
|
|
692
|
-
--hop-status-progress-
|
|
664
|
+
--hop-status-progress-text-selected: var(--hop-sapphire-500);
|
|
665
|
+
--hop-status-progress-text-press: var(--hop-sapphire-800);
|
|
666
|
+
--hop-status-progress-text-hover: var(--hop-sapphire-700);
|
|
667
|
+
--hop-status-progress-text-disabled: var(--hop-sapphire-200);
|
|
693
668
|
--hop-status-progress-text: var(--hop-sapphire-600);
|
|
694
669
|
--hop-status-progress-surface-strong: var(--hop-sapphire-200);
|
|
670
|
+
--hop-status-progress-surface-selected: var(--hop-sapphire-50);
|
|
671
|
+
--hop-status-progress-surface-press: var(--hop-sapphire-100);
|
|
672
|
+
--hop-status-progress-surface-hover: var(--hop-sapphire-75);
|
|
673
|
+
--hop-status-progress-surface-disabled: var(--hop-sapphire-25);
|
|
695
674
|
--hop-status-progress-surface: var(--hop-sapphire-50);
|
|
696
|
-
--hop-status-
|
|
697
|
-
--hop-status-
|
|
675
|
+
--hop-status-progress-icon-selected: var(--hop-sapphire-500);
|
|
676
|
+
--hop-status-progress-icon-press: var(--hop-sapphire-800);
|
|
677
|
+
--hop-status-progress-icon-hover: var(--hop-sapphire-700);
|
|
678
|
+
--hop-status-progress-icon-disabled: var(--hop-sapphire-200);
|
|
679
|
+
--hop-status-progress-icon: var(--hop-sapphire-600);
|
|
680
|
+
--hop-status-progress-border-selected: var(--hop-sapphire-400);
|
|
681
|
+
--hop-status-progress-border-press: var(--hop-sapphire-500);
|
|
682
|
+
--hop-status-progress-border-hover: var(--hop-sapphire-400);
|
|
683
|
+
--hop-status-progress-border-disabled: var(--hop-sapphire-50);
|
|
684
|
+
--hop-status-progress-border: var(--hop-sapphire-300);
|
|
685
|
+
--hop-status-positive-text-selected: var(--hop-moss-700);
|
|
686
|
+
--hop-status-positive-text-press: var(--hop-moss-800);
|
|
687
|
+
--hop-status-positive-text-hover: var(--hop-moss-700);
|
|
688
|
+
--hop-status-positive-text-disabled: var(--hop-moss-200);
|
|
689
|
+
--hop-status-positive-text: var(--hop-moss-600);
|
|
698
690
|
--hop-status-positive-surface-strong: var(--hop-moss-200);
|
|
699
|
-
--hop-status-positive-
|
|
700
|
-
--hop-status-
|
|
691
|
+
--hop-status-positive-surface-selected: var(--hop-moss-50);
|
|
692
|
+
--hop-status-positive-surface-press: var(--hop-moss-100);
|
|
693
|
+
--hop-status-positive-surface-hover: var(--hop-moss-75);
|
|
694
|
+
--hop-status-positive-surface-disabled: var(--hop-moss-25);
|
|
695
|
+
--hop-status-positive-surface: var(--hop-moss-50);
|
|
696
|
+
--hop-status-positive-icon-selected: var(--hop-moss-700);
|
|
697
|
+
--hop-status-positive-icon-press: var(--hop-moss-800);
|
|
698
|
+
--hop-status-positive-icon-hover: var(--hop-moss-700);
|
|
699
|
+
--hop-status-positive-icon-disabled: var(--hop-moss-200);
|
|
700
|
+
--hop-status-positive-icon: var(--hop-moss-600);
|
|
701
|
+
--hop-status-positive-border-selected: var(--hop-moss-700);
|
|
702
|
+
--hop-status-positive-border-press: var(--hop-moss-500);
|
|
703
|
+
--hop-status-positive-border-hover: var(--hop-moss-400);
|
|
704
|
+
--hop-status-positive-border-disabled: var(--hop-moss-50);
|
|
705
|
+
--hop-status-positive-border: var(--hop-moss-300);
|
|
706
|
+
--hop-status-option6-text-selected: var(--hop-sunken-treasure-700);
|
|
707
|
+
--hop-status-option6-text-press: var(--hop-sunken-treasure-800);
|
|
708
|
+
--hop-status-option6-text-hover: var(--hop-sunken-treasure-700);
|
|
709
|
+
--hop-status-option6-text-disabled: var(--hop-sunken-treasure-200);
|
|
701
710
|
--hop-status-option6-text: var(--hop-sunken-treasure-600);
|
|
702
711
|
--hop-status-option6-surface-strong: var(--hop-sunken-treasure-200);
|
|
712
|
+
--hop-status-option6-surface-selected: var(--hop-sunken-treasure-50);
|
|
713
|
+
--hop-status-option6-surface-press: var(--hop-sunken-treasure-100);
|
|
714
|
+
--hop-status-option6-surface-hover: var(--hop-sunken-treasure-50);
|
|
715
|
+
--hop-status-option6-surface-disabled: var(--hop-sunken-treasure-25);
|
|
703
716
|
--hop-status-option6-surface: var(--hop-sunken-treasure-25);
|
|
704
|
-
--hop-status-
|
|
717
|
+
--hop-status-option6-icon-selected: var(--hop-sunken-treasure-700);
|
|
718
|
+
--hop-status-option6-icon-press: var(--hop-sunken-treasure-800);
|
|
719
|
+
--hop-status-option6-icon-hover: var(--hop-sunken-treasure-700);
|
|
720
|
+
--hop-status-option6-icon-disabled: var(--hop-sunken-treasure-200);
|
|
721
|
+
--hop-status-option6-icon: var(--hop-sunken-treasure-600);
|
|
722
|
+
--hop-status-option6-border-selected: var(--hop-sunken-treasure-700);
|
|
723
|
+
--hop-status-option6-border-press: var(--hop-sunken-treasure-500);
|
|
724
|
+
--hop-status-option6-border-hover: var(--hop-sunken-treasure-400);
|
|
725
|
+
--hop-status-option6-border-disabled: var(--hop-sunken-treasure-50);
|
|
726
|
+
--hop-status-option6-border: var(--hop-sunken-treasure-300);
|
|
727
|
+
--hop-status-option5-text-selected: var(--hop-toad-700);
|
|
728
|
+
--hop-status-option5-text-press: var(--hop-toad-800);
|
|
729
|
+
--hop-status-option5-text-hover: var(--hop-toad-700);
|
|
730
|
+
--hop-status-option5-text-disabled: var(--hop-toad-200);
|
|
705
731
|
--hop-status-option5-text: var(--hop-toad-600);
|
|
706
732
|
--hop-status-option5-surface-strong: var(--hop-toad-200);
|
|
733
|
+
--hop-status-option5-surface-selected: var(--hop-toad-50);
|
|
734
|
+
--hop-status-option5-surface-press: var(--hop-toad-100);
|
|
735
|
+
--hop-status-option5-surface-hover: var(--hop-toad-75);
|
|
736
|
+
--hop-status-option5-surface-disabled: var(--hop-toad-25);
|
|
707
737
|
--hop-status-option5-surface: var(--hop-toad-50);
|
|
708
|
-
--hop-status-
|
|
738
|
+
--hop-status-option5-icon-selected: var(--hop-toad-700);
|
|
739
|
+
--hop-status-option5-icon-press: var(--hop-toad-800);
|
|
740
|
+
--hop-status-option5-icon-hover: var(--hop-toad-700);
|
|
741
|
+
--hop-status-option5-icon-disabled: var(--hop-toad-200);
|
|
742
|
+
--hop-status-option5-icon: var(--hop-toad-600);
|
|
743
|
+
--hop-status-option5-border-selected: var(--hop-toad-700);
|
|
744
|
+
--hop-status-option5-border-press: var(--hop-toad-500);
|
|
745
|
+
--hop-status-option5-border-hover: var(--hop-toad-400);
|
|
746
|
+
--hop-status-option5-border-disabled: var(--hop-toad-50);
|
|
747
|
+
--hop-status-option5-border: var(--hop-toad-300);
|
|
748
|
+
--hop-status-option4-text-selected: var(--hop-fog-700);
|
|
749
|
+
--hop-status-option4-text-press: var(--hop-fog-800);
|
|
750
|
+
--hop-status-option4-text-hover: var(--hop-fog-700);
|
|
751
|
+
--hop-status-option4-text-disabled: var(--hop-fog-700);
|
|
752
|
+
--hop-status-option4-text: var(--hop-fog-200);
|
|
753
|
+
--hop-status-option4-surface-strong: var(--hop-fog-200);
|
|
754
|
+
--hop-status-option4-surface-selected: var(--hop-fog-50);
|
|
755
|
+
--hop-status-option4-surface-press: var(--hop-fog-100);
|
|
756
|
+
--hop-status-option4-surface-hover: var(--hop-fog-75);
|
|
757
|
+
--hop-status-option4-surface-disabled: var(--hop-fog-25);
|
|
709
758
|
--hop-status-option4-surface: var(--hop-fog-50);
|
|
759
|
+
--hop-status-option4-icon-selected: var(--hop-fog-700);
|
|
760
|
+
--hop-status-option4-icon-press: var(--hop-fog-800);
|
|
761
|
+
--hop-status-option4-icon-hover: var(--hop-fog-700);
|
|
762
|
+
--hop-status-option4-icon-disabled: var(--hop-fog-200);
|
|
710
763
|
--hop-status-option4-icon: var(--hop-fog-600);
|
|
711
|
-
--hop-status-option4-
|
|
712
|
-
--hop-status-
|
|
713
|
-
--hop-status-
|
|
714
|
-
--hop-status-
|
|
764
|
+
--hop-status-option4-border-selected: var(--hop-fog-700);
|
|
765
|
+
--hop-status-option4-border-press: var(--hop-fog-500);
|
|
766
|
+
--hop-status-option4-border-hover: var(--hop-fog-400);
|
|
767
|
+
--hop-status-option4-border-disabled: var(--hop-fog-50);
|
|
768
|
+
--hop-status-option4-border: var(--hop-fog-300);
|
|
769
|
+
--hop-status-option3-text-selected: var(--hop-quetzal-700);
|
|
770
|
+
--hop-status-option3-text-press: var(--hop-quetzal-800);
|
|
771
|
+
--hop-status-option3-text-hover: var(--hop-quetzal-700);
|
|
772
|
+
--hop-status-option3-text-disabled: var(--hop-quetzal-200);
|
|
773
|
+
--hop-status-option3-text: var(--hop-quetzal-600);
|
|
715
774
|
--hop-status-option3-surface-strong: var(--hop-quetzal-200);
|
|
716
|
-
--hop-status-
|
|
717
|
-
--hop-status-
|
|
718
|
-
--hop-status-
|
|
775
|
+
--hop-status-option3-surface-selected: var(--hop-quetzal-700);
|
|
776
|
+
--hop-status-option3-surface-press: var(--hop-quetzal-100);
|
|
777
|
+
--hop-status-option3-surface-hover: var(--hop-quetzal-75);
|
|
778
|
+
--hop-status-option3-surface-disabled: var(--hop-quetzal-25);
|
|
779
|
+
--hop-status-option3-surface: var(--hop-quetzal-50);
|
|
780
|
+
--hop-status-option3-icon-selected: var(--hop-quetzal-700);
|
|
781
|
+
--hop-status-option3-icon-press: var(--hop-quetzal-800);
|
|
782
|
+
--hop-status-option3-icon-hover: var(--hop-quetzal-700);
|
|
783
|
+
--hop-status-option3-icon-disabled: var(--hop-quetzal-200);
|
|
784
|
+
--hop-status-option3-icon: var(--hop-quetzal-600);
|
|
785
|
+
--hop-status-option3-border-selected: var(--hop-quetzal-50);
|
|
786
|
+
--hop-status-option3-border-press: var(--hop-quetzal-500);
|
|
787
|
+
--hop-status-option3-border-hover: var(--hop-quetzal-400);
|
|
788
|
+
--hop-status-option3-border-disabled: var(--hop-quetzal-50);
|
|
789
|
+
--hop-status-option3-border: var(--hop-quetzal-300);
|
|
790
|
+
--hop-status-option2-text-selected: var(--hop-orchid-bloom-700);
|
|
791
|
+
--hop-status-option2-text-press: var(--hop-orchid-bloom-800);
|
|
792
|
+
--hop-status-option2-text-hover: var(--hop-orchid-bloom-700);
|
|
793
|
+
--hop-status-option2-text-disabled: var(--hop-orchid-bloom-200);
|
|
794
|
+
--hop-status-option2-text: var(--hop-orchid-bloom-600);
|
|
719
795
|
--hop-status-option2-surface-strong: var(--hop-orchid-bloom-200);
|
|
720
|
-
--hop-status-
|
|
721
|
-
--hop-status-
|
|
722
|
-
--hop-status-
|
|
796
|
+
--hop-status-option2-surface-selected: var(--hop-orchid-bloom-50);
|
|
797
|
+
--hop-status-option2-surface-press: var(--hop-orchid-bloom-100);
|
|
798
|
+
--hop-status-option2-surface-hover: var(--hop-orchid-bloom-75);
|
|
799
|
+
--hop-status-option2-surface-disabled: var(--hop-orchid-bloom-25);
|
|
800
|
+
--hop-status-option2-surface: var(--hop-orchid-bloom-50);
|
|
801
|
+
--hop-status-option2-icon-selected: var(--hop-orchid-bloom-700);
|
|
802
|
+
--hop-status-option2-icon-press: var(--hop-orchid-bloom-800);
|
|
803
|
+
--hop-status-option2-icon-hover: var(--hop-orchid-bloom-700);
|
|
804
|
+
--hop-status-option2-icon-disabled: var(--hop-orchid-bloom-200);
|
|
805
|
+
--hop-status-option2-icon: var(--hop-orchid-bloom-600);
|
|
806
|
+
--hop-status-option2-border-selected: var(--hop-orchid-bloom-700);
|
|
807
|
+
--hop-status-option2-border-press: var(--hop-orchid-bloom-500);
|
|
808
|
+
--hop-status-option2-border-hover: var(--hop-orchid-bloom-400);
|
|
809
|
+
--hop-status-option2-border-disabled: var(--hop-orchid-bloom-50);
|
|
810
|
+
--hop-status-option2-border: var(--hop-orchid-bloom-300);
|
|
811
|
+
--hop-status-option1-text-selected: var(--hop-coastal-700);
|
|
812
|
+
--hop-status-option1-text-press: var(--hop-coastal-800);
|
|
813
|
+
--hop-status-option1-text-hover: var(--hop-coastal-700);
|
|
814
|
+
--hop-status-option1-text-disabled: var(--hop-coastal-200);
|
|
815
|
+
--hop-status-option1-text: var(--hop-coastal-600);
|
|
723
816
|
--hop-status-option1-surface-strong: var(--hop-coastal-200);
|
|
817
|
+
--hop-status-option1-surface-selected: var(--hop-coastal-50);
|
|
818
|
+
--hop-status-option1-surface-press: var(--hop-coastal-100);
|
|
819
|
+
--hop-status-option1-surface-hover: var(--hop-coastal-75);
|
|
820
|
+
--hop-status-option1-surface-disabled: var(--hop-coastal-25);
|
|
821
|
+
--hop-status-option1-surface: var(--hop-coastal-50);
|
|
822
|
+
--hop-status-option1-icon-selected: var(--hop-coastal-700);
|
|
823
|
+
--hop-status-option1-icon-press: var(--hop-coastal-800);
|
|
824
|
+
--hop-status-option1-icon-hover: var(--hop-coastal-700);
|
|
825
|
+
--hop-status-option1-icon-disabled: var(--hop-coastal-200);
|
|
826
|
+
--hop-status-option1-icon: var(--hop-coastal-600);
|
|
827
|
+
--hop-status-option1-border-selected: var(--hop-coastal-700);
|
|
828
|
+
--hop-status-option1-border-press: var(--hop-coastal-500);
|
|
829
|
+
--hop-status-option1-border-hover: var(--hop-coastal-400);
|
|
830
|
+
--hop-status-option1-border-disabled: var(--hop-coastal-50);
|
|
831
|
+
--hop-status-option1-border: var(--hop-coastal-300);
|
|
832
|
+
--hop-status-neutral-text-selected: var(--hop-samoyed);
|
|
833
|
+
--hop-status-neutral-text-press: var(--hop-rock-900);
|
|
834
|
+
--hop-status-neutral-text-hover: var(--hop-rock-700);
|
|
835
|
+
--hop-status-neutral-text-disabled: var(--hop-rock-300);
|
|
724
836
|
--hop-status-neutral-text: var(--hop-rock-800);
|
|
725
837
|
--hop-status-neutral-surface-strong: var(--hop-rock-200);
|
|
838
|
+
--hop-status-neutral-surface-selected: var(--hop-rock-800);
|
|
839
|
+
--hop-status-neutral-surface-press: var(--hop-rock-50);
|
|
840
|
+
--hop-status-neutral-surface-hover: var(--hop-rock-25);
|
|
841
|
+
--hop-status-neutral-surface-disabled: var(--hop-rock-50);
|
|
726
842
|
--hop-status-neutral-surface: var(--hop-samoyed);
|
|
843
|
+
--hop-status-neutral-icon-selected: var(--hop-samoyed);
|
|
844
|
+
--hop-status-neutral-icon-press: var(--hop-rock-900);
|
|
845
|
+
--hop-status-neutral-icon-hover: var(--hop-rock-700);
|
|
846
|
+
--hop-status-neutral-icon-disabled: var(--hop-rock-300);
|
|
727
847
|
--hop-status-neutral-icon: var(--hop-rock-800);
|
|
728
|
-
--hop-status-
|
|
729
|
-
--hop-status-
|
|
730
|
-
--hop-status-
|
|
848
|
+
--hop-status-neutral-border-selected: var(--hop-rock-800);
|
|
849
|
+
--hop-status-neutral-border-press: var(--hop-rock-900);
|
|
850
|
+
--hop-status-neutral-border-hover: var(--hop-rock-700);
|
|
851
|
+
--hop-status-neutral-border-disabled: var(--hop-rock-50);
|
|
852
|
+
--hop-status-neutral-border: var(--hop-rock-800);
|
|
853
|
+
--hop-status-negative-text-selected: var(--hop-amanita-700);
|
|
854
|
+
--hop-status-negative-text-press: var(--hop-amanita-800);
|
|
855
|
+
--hop-status-negative-text-hover: var(--hop-amanita-700);
|
|
856
|
+
--hop-status-negative-text-disabled: var(--hop-amanita-200);
|
|
857
|
+
--hop-status-negative-text: var(--hop-amanita-600);
|
|
731
858
|
--hop-status-negative-surface-strong: var(--hop-amanita-200);
|
|
732
|
-
--hop-status-
|
|
733
|
-
--hop-status-
|
|
734
|
-
--hop-status-
|
|
859
|
+
--hop-status-negative-surface-selected: var(--hop-amanita-50);
|
|
860
|
+
--hop-status-negative-surface-press: var(--hop-amanita-100);
|
|
861
|
+
--hop-status-negative-surface-hover: var(--hop-amanita-75);
|
|
862
|
+
--hop-status-negative-surface-disabled: var(--hop-amanita-25);
|
|
863
|
+
--hop-status-negative-surface: var(--hop-amanita-50);
|
|
864
|
+
--hop-status-negative-icon-selected: var(--hop-amanita-700);
|
|
865
|
+
--hop-status-negative-icon-press: var(--hop-amanita-800);
|
|
866
|
+
--hop-status-negative-icon-hover: var(--hop-amanita-700);
|
|
867
|
+
--hop-status-negative-icon-disabled: var(--hop-amanita-200);
|
|
868
|
+
--hop-status-negative-icon: var(--hop-amanita-600);
|
|
869
|
+
--hop-status-negative-border-selected: var(--hop-amanita-700);
|
|
870
|
+
--hop-status-negative-border-press: var(--hop-amanita-500);
|
|
871
|
+
--hop-status-negative-border-hover: var(--hop-amanita-400);
|
|
872
|
+
--hop-status-negative-border-disabled: var(--hop-amanita-50);
|
|
873
|
+
--hop-status-negative-border: var(--hop-amanita-300);
|
|
874
|
+
--hop-status-inactive-text-selected: var(--hop-rock-700);
|
|
875
|
+
--hop-status-inactive-text-press: var(--hop-rock-800);
|
|
876
|
+
--hop-status-inactive-text-hover: var(--hop-rock-700);
|
|
877
|
+
--hop-status-inactive-text-disabled: var(--hop-rock-200);
|
|
878
|
+
--hop-status-inactive-text: var(--hop-rock-600);
|
|
735
879
|
--hop-status-inactive-surface-strong: var(--hop-rock-100);
|
|
736
|
-
--hop-status-
|
|
737
|
-
--hop-status-
|
|
738
|
-
--hop-status-
|
|
880
|
+
--hop-status-inactive-surface-selected: var(--hop-rock-50);
|
|
881
|
+
--hop-status-inactive-surface-press: var(--hop-rock-100);
|
|
882
|
+
--hop-status-inactive-surface-hover: var(--hop-rock-75);
|
|
883
|
+
--hop-status-inactive-surface-disabled: var(--hop-rock-25);
|
|
884
|
+
--hop-status-inactive-surface: var(--hop-rock-50);
|
|
885
|
+
--hop-status-inactive-icon-selected: var(--hop-rock-700);
|
|
886
|
+
--hop-status-inactive-icon-press: var(--hop-rock-800);
|
|
887
|
+
--hop-status-inactive-icon-hover: var(--hop-rock-700);
|
|
888
|
+
--hop-status-inactive-icon-disabled: var(--hop-rock-200);
|
|
889
|
+
--hop-status-inactive-icon: var(--hop-rock-600);
|
|
890
|
+
--hop-status-inactive-border-selected: var(--hop-rock-700);
|
|
891
|
+
--hop-status-inactive-border-press: var(--hop-rock-500);
|
|
892
|
+
--hop-status-inactive-border-hover: var(--hop-rock-400);
|
|
893
|
+
--hop-status-inactive-border-disabled: var(--hop-rock-50);
|
|
894
|
+
--hop-status-inactive-border: var(--hop-rock-300);
|
|
895
|
+
--hop-status-caution-text-selected: var(--hop-koi-700);
|
|
896
|
+
--hop-status-caution-text-press: var(--hop-koi-800);
|
|
897
|
+
--hop-status-caution-text-hover: var(--hop-koi-700);
|
|
898
|
+
--hop-status-caution-text-disabled: var(--hop-koi-200);
|
|
899
|
+
--hop-status-caution-text: var(--hop-koi-600);
|
|
739
900
|
--hop-status-caution-surface-strong: var(--hop-koi-200);
|
|
740
|
-
--hop-
|
|
741
|
-
--hop-
|
|
742
|
-
--hop-
|
|
743
|
-
--hop-
|
|
744
|
-
--hop-
|
|
745
|
-
--hop-
|
|
746
|
-
--hop-
|
|
747
|
-
--hop-
|
|
748
|
-
--hop-
|
|
749
|
-
--hop-
|
|
750
|
-
--hop-
|
|
751
|
-
--hop-
|
|
752
|
-
--hop-
|
|
753
|
-
--hop-
|
|
754
|
-
--hop-
|
|
755
|
-
--hop-primary-surface-hover: var(--hop-sapphire-200);
|
|
756
|
-
--hop-primary-surface-focus: var(--hop-sapphire-25);
|
|
757
|
-
--hop-primary-surface-disabled: var(--hop-sapphire-200);
|
|
758
|
-
--hop-primary-surface-selected: var(--hop-sapphire-50);
|
|
759
|
-
--hop-primary-surface: var(--hop-sapphire-50);
|
|
760
|
-
--hop-primary-icon-strong-hover: var(--hop-samoyed);
|
|
761
|
-
--hop-primary-icon-strong: var(--hop-samoyed);
|
|
762
|
-
--hop-primary-icon-press: var(--hop-sapphire-700);
|
|
763
|
-
--hop-primary-icon-hover: var(--hop-sapphire-600);
|
|
764
|
-
--hop-primary-icon-disabled: var(--hop-sapphire-200);
|
|
765
|
-
--hop-primary-icon-selected: var(--hop-sapphire-500);
|
|
766
|
-
--hop-primary-icon: var(--hop-sapphire-500);
|
|
767
|
-
--hop-primary-border-press: var(--hop-sapphire-300);
|
|
768
|
-
--hop-primary-border-focus: var(--hop-sapphire-500);
|
|
769
|
-
--hop-primary-border-selected: var(--hop-sapphire-400);
|
|
770
|
-
--hop-primary-border: var(--hop-sapphire-400);
|
|
771
|
-
--hop-neutral-text-weakest: var(--hop-rock-200);
|
|
772
|
-
--hop-neutral-text-weak-press: var(--hop-rock-700);
|
|
773
|
-
--hop-neutral-text-weak-hover: var(--hop-rock-600);
|
|
774
|
-
--hop-neutral-text-weak: var(--hop-rock-500);
|
|
775
|
-
--hop-neutral-text-strong: var(--hop-samoyed);
|
|
776
|
-
--hop-neutral-text-press: var(--hop-rock-900);
|
|
777
|
-
--hop-neutral-text-hover: var(--hop-rock-700);
|
|
778
|
-
--hop-neutral-text-disabled: var(--hop-rock-300);
|
|
779
|
-
--hop-neutral-text-selected: var(--hop-samoyed);
|
|
780
|
-
--hop-neutral-text: var(--hop-rock-800);
|
|
781
|
-
--hop-neutral-surface-weakest-hover: var(--hop-rock-50);
|
|
782
|
-
--hop-neutral-surface-weakest-selected: var(--hop-rock-50);
|
|
783
|
-
--hop-neutral-surface-weakest: var(--hop-rock-25);
|
|
784
|
-
--hop-neutral-surface-weak-press: var(--hop-rock-100);
|
|
785
|
-
--hop-neutral-surface-weak-hover: var(--hop-rock-75);
|
|
786
|
-
--hop-neutral-surface-weak-selected: var(--hop-rock-50);
|
|
787
|
-
--hop-neutral-surface-weak: var(--hop-rock-50);
|
|
788
|
-
--hop-neutral-surface-strong: var(--hop-rock-800);
|
|
789
|
-
--hop-neutral-surface-press: var(--hop-rock-50);
|
|
790
|
-
--hop-neutral-surface-hover: var(--hop-rock-25);
|
|
791
|
-
--hop-neutral-surface-disabled: var(--hop-rock-50);
|
|
792
|
-
--hop-neutral-surface-selected: var(--hop-rock-800);
|
|
793
|
-
--hop-neutral-surface: var(--hop-samoyed);
|
|
794
|
-
--hop-neutral-icon-weakest: var(--hop-rock-200);
|
|
795
|
-
--hop-neutral-icon-weak-press: var(--hop-rock-700);
|
|
796
|
-
--hop-neutral-icon-weak-hover: var(--hop-rock-600);
|
|
797
|
-
--hop-neutral-icon-weak: var(--hop-rock-400);
|
|
798
|
-
--hop-neutral-icon-strong-hover: var(--hop-samoyed);
|
|
799
|
-
--hop-neutral-icon-strong: var(--hop-samoyed);
|
|
800
|
-
--hop-neutral-icon-press: var(--hop-rock-900);
|
|
801
|
-
--hop-neutral-icon-hover: var(--hop-rock-700);
|
|
802
|
-
--hop-neutral-icon-disabled: var(--hop-rock-300);
|
|
803
|
-
--hop-neutral-icon-selected: var(--hop-samoyed);
|
|
804
|
-
--hop-neutral-icon: var(--hop-rock-800);
|
|
805
|
-
--hop-neutral-border-weakest: var(--hop-rock-50);
|
|
806
|
-
--hop-neutral-border-weak: var(--hop-rock-75);
|
|
807
|
-
--hop-neutral-border-strong-hover: var(--hop-rock-700);
|
|
808
|
-
--hop-neutral-border-strong: var(--hop-rock-800);
|
|
809
|
-
--hop-neutral-border-press: var(--hop-rock-400);
|
|
810
|
-
--hop-neutral-border-hover: var(--hop-rock-300);
|
|
811
|
-
--hop-neutral-border-disabled: var(--hop-rock-50);
|
|
812
|
-
--hop-neutral-border-selected: var(--hop-rock-800);
|
|
813
|
-
--hop-neutral-border: var(--hop-rock-200);
|
|
901
|
+
--hop-status-caution-surface-selected: var(--hop-koi-50);
|
|
902
|
+
--hop-status-caution-surface-press: var(--hop-koi-100);
|
|
903
|
+
--hop-status-caution-surface-hover: var(--hop-koi-75);
|
|
904
|
+
--hop-status-caution-surface-disabled: var(--hop-koi-25);
|
|
905
|
+
--hop-status-caution-surface: var(--hop-koi-50);
|
|
906
|
+
--hop-status-caution-icon-selected: var(--hop-koi-700);
|
|
907
|
+
--hop-status-caution-icon-press: var(--hop-koi-800);
|
|
908
|
+
--hop-status-caution-icon-hover: var(--hop-koi-700);
|
|
909
|
+
--hop-status-caution-icon-disabled: var(--hop-koi-200);
|
|
910
|
+
--hop-status-caution-icon: var(--hop-koi-600);
|
|
911
|
+
--hop-status-caution-border-selected: var(--hop-koi-700);
|
|
912
|
+
--hop-status-caution-border-press: var(--hop-koi-500);
|
|
913
|
+
--hop-status-caution-border-hover: var(--hop-koi-400);
|
|
914
|
+
--hop-status-caution-border-disabled: var(--hop-koi-50);
|
|
915
|
+
--hop-status-caution-border: var(--hop-koi-300);
|
|
814
916
|
--hop-information-text-weak: var(--hop-coastal-300);
|
|
815
917
|
--hop-information-text: var(--hop-coastal-800);
|
|
816
918
|
--hop-information-surface-weak: var(--hop-coastal-50);
|
|
@@ -910,6 +1012,128 @@
|
|
|
910
1012
|
--hop-decorative-option9-surface: var(--hop-rock-400);
|
|
911
1013
|
--hop-decorative-option9-icon: var(--hop-samoyed);
|
|
912
1014
|
--hop-decorative-option9-border: var(--hop-rock-100);
|
|
1015
|
+
--hop-upsell-text-weak-press: var(--hop-sunken-treasure-600);
|
|
1016
|
+
--hop-upsell-text-weak-hover: var(--hop-sunken-treasure-500);
|
|
1017
|
+
--hop-upsell-text-weak: var(--hop-sunken-treasure-300);
|
|
1018
|
+
--hop-upsell-text-press: var(--hop-sunken-treasure-900);
|
|
1019
|
+
--hop-upsell-text-hover: var(--hop-sunken-treasure-800);
|
|
1020
|
+
--hop-upsell-text-disabled: var(--hop-sunken-treasure-400);
|
|
1021
|
+
--hop-upsell-text-selected: var(--hop-sunken-treasure-400);
|
|
1022
|
+
--hop-upsell-text: var(--hop-sunken-treasure-700);
|
|
1023
|
+
--hop-upsell-surface-weak-press: var(--hop-sunken-treasure-75);
|
|
1024
|
+
--hop-upsell-surface-weak-hover: var(--hop-sunken-treasure-50);
|
|
1025
|
+
--hop-upsell-surface-weak: var(--hop-sunken-treasure-25);
|
|
1026
|
+
--hop-upsell-surface-press: var(--hop-sunken-treasure-200);
|
|
1027
|
+
--hop-upsell-surface-hover: var(--hop-sunken-treasure-100);
|
|
1028
|
+
--hop-upsell-surface-disabled: var(--hop-sunken-treasure-25);
|
|
1029
|
+
--hop-upsell-surface-selected: var(--hop-sunken-treasure-50);
|
|
1030
|
+
--hop-upsell-surface: var(--hop-sunken-treasure-75);
|
|
1031
|
+
--hop-upsell-icon-weak-press: var(--hop-sunken-treasure-600);
|
|
1032
|
+
--hop-upsell-icon-weak-hover: var(--hop-sunken-treasure-500);
|
|
1033
|
+
--hop-upsell-icon-weak: var(--hop-sunken-treasure-100);
|
|
1034
|
+
--hop-upsell-icon-weakest: var(--hop-sunken-treasure-75);
|
|
1035
|
+
--hop-upsell-icon-press: var(--hop-sunken-treasure-900);
|
|
1036
|
+
--hop-upsell-icon-hover: var(--hop-sunken-treasure-800);
|
|
1037
|
+
--hop-upsell-icon-selected: var(--hop-sunken-treasure-400);
|
|
1038
|
+
--hop-upsell-icon: var(--hop-sunken-treasure-700);
|
|
1039
|
+
--hop-upsell-border-press: var(--hop-sunken-treasure-200);
|
|
1040
|
+
--hop-upsell-border-disabled: var(--hop-sunken-treasure-75);
|
|
1041
|
+
--hop-upsell-border-selected: var(--hop-sunken-treasure-200);
|
|
1042
|
+
--hop-upsell-border: var(--hop-sunken-treasure-100);
|
|
1043
|
+
--hop-upsell-text-weak-active: var(--hop-sunken-treasure-600);
|
|
1044
|
+
--hop-upsell-text-active: var(--hop-sunken-treasure-900);
|
|
1045
|
+
--hop-upsell-surface-weak-active: var(--hop-sunken-treasure-75);
|
|
1046
|
+
--hop-upsell-surface-active: var(--hop-sunken-treasure-200);
|
|
1047
|
+
--hop-upsell-icon-weak-active: var(--hop-sunken-treasure-600);
|
|
1048
|
+
--hop-upsell-icon-active: var(--hop-sunken-treasure-900);
|
|
1049
|
+
--hop-upsell-border-active: var(--hop-sunken-treasure-200);
|
|
1050
|
+
--hop-primary-text-strong-hover: var(--hop-samoyed);
|
|
1051
|
+
--hop-primary-text-strong: var(--hop-samoyed);
|
|
1052
|
+
--hop-primary-text-press: var(--hop-sapphire-700);
|
|
1053
|
+
--hop-primary-text-hover: var(--hop-sapphire-600);
|
|
1054
|
+
--hop-primary-text-disabled: var(--hop-sapphire-200);
|
|
1055
|
+
--hop-primary-text-selected: var(--hop-sapphire-500);
|
|
1056
|
+
--hop-primary-text: var(--hop-sapphire-500);
|
|
1057
|
+
--hop-primary-surface-weak-press: var(--hop-sapphire-75);
|
|
1058
|
+
--hop-primary-surface-weak-hover: var(--hop-sapphire-50);
|
|
1059
|
+
--hop-primary-surface-weak: var(--hop-sapphire-25);
|
|
1060
|
+
--hop-primary-surface-strong-press: var(--hop-sapphire-700);
|
|
1061
|
+
--hop-primary-surface-strong-hover: var(--hop-sapphire-600);
|
|
1062
|
+
--hop-primary-surface-strong-selected: var(--hop-sapphire-50);
|
|
1063
|
+
--hop-primary-surface-strong: var(--hop-sapphire-400);
|
|
1064
|
+
--hop-primary-surface-press: var(--hop-sapphire-300);
|
|
1065
|
+
--hop-primary-surface-hover: var(--hop-sapphire-200);
|
|
1066
|
+
--hop-primary-surface-focus: var(--hop-sapphire-25);
|
|
1067
|
+
--hop-primary-surface-disabled: var(--hop-sapphire-200);
|
|
1068
|
+
--hop-primary-surface-selected: var(--hop-sapphire-50);
|
|
1069
|
+
--hop-primary-surface: var(--hop-sapphire-50);
|
|
1070
|
+
--hop-primary-icon-strong-hover: var(--hop-samoyed);
|
|
1071
|
+
--hop-primary-icon-strong: var(--hop-samoyed);
|
|
1072
|
+
--hop-primary-icon-press: var(--hop-sapphire-700);
|
|
1073
|
+
--hop-primary-icon-hover: var(--hop-sapphire-600);
|
|
1074
|
+
--hop-primary-icon-disabled: var(--hop-sapphire-200);
|
|
1075
|
+
--hop-primary-icon-selected: var(--hop-sapphire-500);
|
|
1076
|
+
--hop-primary-icon: var(--hop-sapphire-500);
|
|
1077
|
+
--hop-primary-border-press: var(--hop-sapphire-300);
|
|
1078
|
+
--hop-primary-border-focus: var(--hop-sapphire-500);
|
|
1079
|
+
--hop-primary-border-selected: var(--hop-sapphire-400);
|
|
1080
|
+
--hop-primary-border: var(--hop-sapphire-400);
|
|
1081
|
+
--hop-primary-text-active: var(--hop-sapphire-700);
|
|
1082
|
+
--hop-primary-surface-weak-active: var(--hop-sapphire-75);
|
|
1083
|
+
--hop-primary-surface-strong-active: var(--hop-sapphire-700);
|
|
1084
|
+
--hop-primary-surface-active: var(--hop-sapphire-300);
|
|
1085
|
+
--hop-primary-icon-active: var(--hop-sapphire-700);
|
|
1086
|
+
--hop-primary-border-active: var(--hop-sapphire-300);
|
|
1087
|
+
--hop-neutral-text-weakest: var(--hop-rock-200);
|
|
1088
|
+
--hop-neutral-text-weak-press: var(--hop-rock-700);
|
|
1089
|
+
--hop-neutral-text-weak-hover: var(--hop-rock-600);
|
|
1090
|
+
--hop-neutral-text-weak: var(--hop-rock-500);
|
|
1091
|
+
--hop-neutral-text-strong: var(--hop-samoyed);
|
|
1092
|
+
--hop-neutral-text-press: var(--hop-rock-900);
|
|
1093
|
+
--hop-neutral-text-hover: var(--hop-rock-700);
|
|
1094
|
+
--hop-neutral-text-disabled: var(--hop-rock-300);
|
|
1095
|
+
--hop-neutral-text-selected: var(--hop-samoyed);
|
|
1096
|
+
--hop-neutral-text: var(--hop-rock-800);
|
|
1097
|
+
--hop-neutral-surface-weakest-hover: var(--hop-rock-50);
|
|
1098
|
+
--hop-neutral-surface-weakest-selected: var(--hop-rock-50);
|
|
1099
|
+
--hop-neutral-surface-weakest: var(--hop-rock-25);
|
|
1100
|
+
--hop-neutral-surface-weak-press: var(--hop-rock-100);
|
|
1101
|
+
--hop-neutral-surface-weak-hover: var(--hop-rock-75);
|
|
1102
|
+
--hop-neutral-surface-weak-selected: var(--hop-rock-50);
|
|
1103
|
+
--hop-neutral-surface-weak: var(--hop-rock-50);
|
|
1104
|
+
--hop-neutral-surface-strong: var(--hop-rock-800);
|
|
1105
|
+
--hop-neutral-surface-press: var(--hop-rock-50);
|
|
1106
|
+
--hop-neutral-surface-hover: var(--hop-rock-25);
|
|
1107
|
+
--hop-neutral-surface-disabled: var(--hop-rock-50);
|
|
1108
|
+
--hop-neutral-surface-selected: var(--hop-rock-800);
|
|
1109
|
+
--hop-neutral-surface: var(--hop-samoyed);
|
|
1110
|
+
--hop-neutral-icon-weakest: var(--hop-rock-200);
|
|
1111
|
+
--hop-neutral-icon-weak-press: var(--hop-rock-700);
|
|
1112
|
+
--hop-neutral-icon-weak-hover: var(--hop-rock-600);
|
|
1113
|
+
--hop-neutral-icon-weak: var(--hop-rock-400);
|
|
1114
|
+
--hop-neutral-icon-strong-hover: var(--hop-samoyed);
|
|
1115
|
+
--hop-neutral-icon-strong: var(--hop-samoyed);
|
|
1116
|
+
--hop-neutral-icon-press: var(--hop-rock-900);
|
|
1117
|
+
--hop-neutral-icon-hover: var(--hop-rock-700);
|
|
1118
|
+
--hop-neutral-icon-disabled: var(--hop-rock-300);
|
|
1119
|
+
--hop-neutral-icon-selected: var(--hop-samoyed);
|
|
1120
|
+
--hop-neutral-icon: var(--hop-rock-800);
|
|
1121
|
+
--hop-neutral-border-weakest: var(--hop-rock-50);
|
|
1122
|
+
--hop-neutral-border-weak: var(--hop-rock-75);
|
|
1123
|
+
--hop-neutral-border-strong-hover: var(--hop-rock-700);
|
|
1124
|
+
--hop-neutral-border-strong: var(--hop-rock-800);
|
|
1125
|
+
--hop-neutral-border-press: var(--hop-rock-400);
|
|
1126
|
+
--hop-neutral-border-hover: var(--hop-rock-300);
|
|
1127
|
+
--hop-neutral-border-disabled: var(--hop-rock-50);
|
|
1128
|
+
--hop-neutral-border-selected: var(--hop-rock-800);
|
|
1129
|
+
--hop-neutral-border: var(--hop-rock-200);
|
|
1130
|
+
--hop-neutral-text-weak-active: var(--hop-rock-700);
|
|
1131
|
+
--hop-neutral-text-active: var(--hop-rock-900);
|
|
1132
|
+
--hop-neutral-surface-weak-active: var(--hop-rock-100);
|
|
1133
|
+
--hop-neutral-surface-active: var(--hop-rock-50);
|
|
1134
|
+
--hop-neutral-icon-weak-active: var(--hop-rock-700);
|
|
1135
|
+
--hop-neutral-icon-active: var(--hop-rock-900);
|
|
1136
|
+
--hop-neutral-border-active: var(--hop-rock-400);
|
|
913
1137
|
--hop-danger-text-weak-press: var(--hop-amanita-600);
|
|
914
1138
|
--hop-danger-text-weak-hover: var(--hop-amanita-500);
|
|
915
1139
|
--hop-danger-text-weak: var(--hop-amanita-400);
|
|
@@ -944,4 +1168,11 @@
|
|
|
944
1168
|
--hop-danger-border-strong: var(--hop-amanita-300);
|
|
945
1169
|
--hop-danger-border-selected: var(--hop-amanita-300);
|
|
946
1170
|
--hop-danger-border: var(--hop-amanita-100);
|
|
1171
|
+
--hop-danger-text-weak-active: var(--hop-amanita-600);
|
|
1172
|
+
--hop-danger-text-active: var(--hop-amanita-800);
|
|
1173
|
+
--hop-danger-surface-weak-active: var(--hop-amanita-100);
|
|
1174
|
+
--hop-danger-surface-active: var(--hop-amanita-600);
|
|
1175
|
+
--hop-danger-icon-weak-active: var(--hop-amanita-600);
|
|
1176
|
+
--hop-danger-icon-active: var(--hop-amanita-800);
|
|
1177
|
+
--hop-danger-border-active: var(--hop-amanita-600);
|
|
947
1178
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hopper-ui/tokens",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "4.0
|
|
4
|
+
"version": "4.1.0",
|
|
5
5
|
"description": "The tokens package.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"README.md"
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@types/node": "20.
|
|
33
|
+
"@types/node": "20.14.2",
|
|
34
34
|
"@workleap/eslint-plugin": "3.2.2",
|
|
35
35
|
"@workleap/tsup-configs": "3.0.6",
|
|
36
36
|
"@workleap/typescript-configs": "3.0.2",
|
|
37
37
|
"eslint": "8.57.0",
|
|
38
38
|
"style-dictionary": "3.9.2",
|
|
39
|
-
"tsx": "4.
|
|
39
|
+
"tsx": "4.12.0",
|
|
40
40
|
"typescript": "5.4.5"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|