@tamagui/themes 1.89.0-1706483140977 → 1.89.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.
Files changed (58) hide show
  1. package/dist/cjs/generated-v3.js +1545 -1
  2. package/dist/cjs/generated-v3.js.map +1 -1
  3. package/dist/cjs/generated-v3.native.js +1545 -1
  4. package/dist/cjs/generated-v3.native.js.map +1 -1
  5. package/dist/cjs/v3-themes.js +373 -285
  6. package/dist/cjs/v3-themes.js.map +2 -2
  7. package/dist/cjs/v3-themes.native.js +384 -288
  8. package/dist/cjs/v3-themes.native.js.map +2 -2
  9. package/dist/esm/componentThemeDefinitions.native.js +22 -44
  10. package/dist/esm/componentThemeDefinitions.native.js.map +1 -1
  11. package/dist/esm/generated-new.native.js +2 -1430
  12. package/dist/esm/generated-new.native.js.map +1 -1
  13. package/dist/esm/generated-v2.native.js +2 -1408
  14. package/dist/esm/generated-v2.native.js.map +1 -1
  15. package/dist/esm/generated-v3.js +1545 -1
  16. package/dist/esm/generated-v3.js.map +1 -1
  17. package/dist/esm/generated-v3.native.js +1547 -1607
  18. package/dist/esm/generated-v3.native.js.map +1 -1
  19. package/dist/esm/helpers.native.js +2 -25
  20. package/dist/esm/helpers.native.js.map +1 -1
  21. package/dist/esm/index.native.js +8 -33
  22. package/dist/esm/index.native.js.map +1 -1
  23. package/dist/esm/masks.native.js +34 -47
  24. package/dist/esm/masks.native.js.map +1 -1
  25. package/dist/esm/palettes.native.js +10 -30
  26. package/dist/esm/palettes.native.js.map +1 -1
  27. package/dist/esm/shadows.native.js +2 -23
  28. package/dist/esm/shadows.native.js.map +1 -1
  29. package/dist/esm/templates.native.js +4 -26
  30. package/dist/esm/templates.native.js.map +1 -1
  31. package/dist/esm/themes-new.native.js +17 -32
  32. package/dist/esm/themes-new.native.js.map +1 -1
  33. package/dist/esm/themes-old.native.js +25 -38
  34. package/dist/esm/themes-old.native.js.map +1 -1
  35. package/dist/esm/themes.native.js +3 -32
  36. package/dist/esm/themes.native.js.map +1 -1
  37. package/dist/esm/tokens.native.js +38 -49
  38. package/dist/esm/tokens.native.js.map +1 -1
  39. package/dist/esm/v2-themes.native.js +43 -48
  40. package/dist/esm/v2-themes.native.js.map +2 -2
  41. package/dist/esm/v2.native.js +12 -49
  42. package/dist/esm/v2.native.js.map +2 -2
  43. package/dist/esm/v3-themes.js +373 -287
  44. package/dist/esm/v3-themes.js.map +2 -2
  45. package/dist/esm/v3-themes.mjs +309 -258
  46. package/dist/esm/v3-themes.native.js +411 -330
  47. package/dist/esm/v3-themes.native.js.map +2 -2
  48. package/dist/esm/v3.native.js +12 -49
  49. package/dist/esm/v3.native.js.map +2 -2
  50. package/package.json +20 -7
  51. package/src/generated-v3.ts +3847 -0
  52. package/src/v3-themes.ts +703 -0
  53. package/src/v3.tsx +14 -0
  54. package/types/generated-v3.d.ts +1717 -0
  55. package/types/generated-v3.d.ts.map +1 -1
  56. package/types/v3-themes.d.ts +59730 -0
  57. package/types/v3-themes.d.ts.map +1 -1
  58. package/types/v3.d.ts +12 -0
@@ -0,0 +1,3847 @@
1
+ type Theme = {
2
+ color1: string
3
+ color2: string
4
+ color3: string
5
+ color4: string
6
+ color5: string
7
+ color6: string
8
+ color7: string
9
+ color8: string
10
+ color9: string
11
+ color10: string
12
+ color11: string
13
+ color12: string
14
+ background: string
15
+ backgroundHover: string
16
+ backgroundPress: string
17
+ backgroundFocus: string
18
+ backgroundStrong: string
19
+ backgroundTransparent: string
20
+ color: string
21
+ colorHover: string
22
+ colorPress: string
23
+ colorFocus: string
24
+ colorTransparent: string
25
+ borderColor: string
26
+ borderColorHover: string
27
+ borderColorFocus: string
28
+ borderColorPress: string
29
+ placeholderColor: string
30
+ outlineColor: string
31
+ blue1: string
32
+ blue2: string
33
+ blue3: string
34
+ blue4: string
35
+ blue5: string
36
+ blue6: string
37
+ blue7: string
38
+ blue8: string
39
+ blue9: string
40
+ blue10: string
41
+ blue11: string
42
+ blue12: string
43
+ gray1: string
44
+ gray2: string
45
+ gray3: string
46
+ gray4: string
47
+ gray5: string
48
+ gray6: string
49
+ gray7: string
50
+ gray8: string
51
+ gray9: string
52
+ gray10: string
53
+ gray11: string
54
+ gray12: string
55
+ green1: string
56
+ green2: string
57
+ green3: string
58
+ green4: string
59
+ green5: string
60
+ green6: string
61
+ green7: string
62
+ green8: string
63
+ green9: string
64
+ green10: string
65
+ green11: string
66
+ green12: string
67
+ orange1: string
68
+ orange2: string
69
+ orange3: string
70
+ orange4: string
71
+ orange5: string
72
+ orange6: string
73
+ orange7: string
74
+ orange8: string
75
+ orange9: string
76
+ orange10: string
77
+ orange11: string
78
+ orange12: string
79
+ pink1: string
80
+ pink2: string
81
+ pink3: string
82
+ pink4: string
83
+ pink5: string
84
+ pink6: string
85
+ pink7: string
86
+ pink8: string
87
+ pink9: string
88
+ pink10: string
89
+ pink11: string
90
+ pink12: string
91
+ purple1: string
92
+ purple2: string
93
+ purple3: string
94
+ purple4: string
95
+ purple5: string
96
+ purple6: string
97
+ purple7: string
98
+ purple8: string
99
+ purple9: string
100
+ purple10: string
101
+ purple11: string
102
+ purple12: string
103
+ red1: string
104
+ red2: string
105
+ red3: string
106
+ red4: string
107
+ red5: string
108
+ red6: string
109
+ red7: string
110
+ red8: string
111
+ red9: string
112
+ red10: string
113
+ red11: string
114
+ red12: string
115
+ yellow1: string
116
+ yellow2: string
117
+ yellow3: string
118
+ yellow4: string
119
+ yellow5: string
120
+ yellow6: string
121
+ yellow7: string
122
+ yellow8: string
123
+ yellow9: string
124
+ yellow10: string
125
+ yellow11: string
126
+ yellow12: string
127
+ shadowColor: string
128
+ shadowColorHover: string
129
+ shadowColorPress: string
130
+ shadowColorFocus: string
131
+ }
132
+
133
+ function t(a: [number, number][]) {
134
+ let res: Record<string, string> = {}
135
+ for (const [ki, vi] of a) {
136
+ res[ks[ki] as string] = vs[vi] as string
137
+ }
138
+ return res as Theme
139
+ }
140
+ const vs = [
141
+ '#fff',
142
+ '#f8f8f8',
143
+ 'hsl(0, 0%, 96.3%)',
144
+ 'hsl(0, 0%, 94.1%)',
145
+ 'hsl(0, 0%, 92.0%)',
146
+ 'hsl(0, 0%, 90.0%)',
147
+ 'hsl(0, 0%, 88.5%)',
148
+ 'hsl(0, 0%, 81.0%)',
149
+ 'hsl(0, 0%, 56.1%)',
150
+ 'hsl(0, 0%, 50.3%)',
151
+ 'hsl(0, 0%, 42.5%)',
152
+ 'hsl(0, 0%, 9.0%)',
153
+ 'rgba(255,255,255,0)',
154
+ 'rgba(10,10,10,0)',
155
+ 'hsl(206, 100%, 99.2%)',
156
+ 'hsl(210, 100%, 98.0%)',
157
+ 'hsl(209, 100%, 96.5%)',
158
+ 'hsl(210, 98.8%, 94.0%)',
159
+ 'hsl(209, 95.0%, 90.1%)',
160
+ 'hsl(209, 81.2%, 84.5%)',
161
+ 'hsl(208, 77.5%, 76.9%)',
162
+ 'hsl(206, 81.9%, 65.3%)',
163
+ 'hsl(206, 100%, 50.0%)',
164
+ 'hsl(208, 100%, 47.3%)',
165
+ 'hsl(211, 100%, 43.2%)',
166
+ 'hsl(211, 100%, 15.0%)',
167
+ 'hsl(0, 0%, 99.0%)',
168
+ 'hsl(0, 0%, 97.3%)',
169
+ 'hsl(0, 0%, 95.1%)',
170
+ 'hsl(0, 0%, 93.0%)',
171
+ 'hsl(0, 0%, 90.9%)',
172
+ 'hsl(0, 0%, 88.7%)',
173
+ 'hsl(0, 0%, 85.8%)',
174
+ 'hsl(0, 0%, 78.0%)',
175
+ 'hsl(0, 0%, 52.3%)',
176
+ 'hsl(0, 0%, 43.5%)',
177
+ 'hsl(136, 50.0%, 98.9%)',
178
+ 'hsl(138, 62.5%, 96.9%)',
179
+ 'hsl(139, 55.2%, 94.5%)',
180
+ 'hsl(140, 48.7%, 91.0%)',
181
+ 'hsl(141, 43.7%, 86.0%)',
182
+ 'hsl(143, 40.3%, 79.0%)',
183
+ 'hsl(146, 38.5%, 69.0%)',
184
+ 'hsl(151, 40.2%, 54.1%)',
185
+ 'hsl(151, 55.0%, 41.5%)',
186
+ 'hsl(152, 57.5%, 37.6%)',
187
+ 'hsl(153, 67.0%, 28.5%)',
188
+ 'hsl(155, 40.0%, 14.0%)',
189
+ 'hsl(24, 70.0%, 99.0%)',
190
+ 'hsl(24, 83.3%, 97.6%)',
191
+ 'hsl(24, 100%, 95.3%)',
192
+ 'hsl(25, 100%, 92.2%)',
193
+ 'hsl(25, 100%, 88.2%)',
194
+ 'hsl(25, 100%, 82.8%)',
195
+ 'hsl(24, 100%, 75.3%)',
196
+ 'hsl(24, 94.5%, 64.3%)',
197
+ 'hsl(24, 94.0%, 50.0%)',
198
+ 'hsl(24, 100%, 46.5%)',
199
+ 'hsl(24, 100%, 37.0%)',
200
+ 'hsl(15, 60.0%, 17.0%)',
201
+ 'hsl(322, 100%, 99.4%)',
202
+ 'hsl(323, 100%, 98.4%)',
203
+ 'hsl(323, 86.3%, 96.5%)',
204
+ 'hsl(323, 78.7%, 94.2%)',
205
+ 'hsl(323, 72.2%, 91.1%)',
206
+ 'hsl(323, 66.3%, 86.6%)',
207
+ 'hsl(323, 62.0%, 80.1%)',
208
+ 'hsl(323, 60.3%, 72.4%)',
209
+ 'hsl(322, 65.0%, 54.5%)',
210
+ 'hsl(322, 63.9%, 50.7%)',
211
+ 'hsl(322, 75.0%, 46.0%)',
212
+ 'hsl(320, 70.0%, 13.5%)',
213
+ 'hsl(280, 65.0%, 99.4%)',
214
+ 'hsl(276, 100%, 99.0%)',
215
+ 'hsl(276, 83.1%, 97.0%)',
216
+ 'hsl(275, 76.4%, 94.7%)',
217
+ 'hsl(275, 70.8%, 91.8%)',
218
+ 'hsl(274, 65.4%, 87.8%)',
219
+ 'hsl(273, 61.0%, 81.7%)',
220
+ 'hsl(272, 60.0%, 73.5%)',
221
+ 'hsl(272, 51.0%, 54.0%)',
222
+ 'hsl(272, 46.8%, 50.3%)',
223
+ 'hsl(272, 50.0%, 45.8%)',
224
+ 'hsl(272, 66.0%, 16.0%)',
225
+ 'hsl(359, 100%, 99.4%)',
226
+ 'hsl(359, 100%, 98.6%)',
227
+ 'hsl(360, 100%, 96.8%)',
228
+ 'hsl(360, 97.9%, 94.8%)',
229
+ 'hsl(360, 90.2%, 91.9%)',
230
+ 'hsl(360, 81.7%, 87.8%)',
231
+ 'hsl(359, 74.2%, 81.7%)',
232
+ 'hsl(359, 69.5%, 74.3%)',
233
+ 'hsl(358, 75.0%, 59.0%)',
234
+ 'hsl(358, 69.4%, 55.2%)',
235
+ 'hsl(358, 65.0%, 48.7%)',
236
+ 'hsl(354, 50.0%, 14.6%)',
237
+ 'hsl(60, 54.0%, 98.5%)',
238
+ 'hsl(52, 100%, 95.5%)',
239
+ 'hsl(55, 100%, 90.9%)',
240
+ 'hsl(54, 100%, 86.6%)',
241
+ 'hsl(52, 97.9%, 82.0%)',
242
+ 'hsl(50, 89.4%, 76.1%)',
243
+ 'hsl(47, 80.4%, 68.0%)',
244
+ 'hsl(48, 100%, 46.1%)',
245
+ 'hsl(53, 92.0%, 50.0%)',
246
+ 'hsl(50, 100%, 48.5%)',
247
+ 'hsl(42, 100%, 29.0%)',
248
+ 'hsl(40, 55.0%, 13.5%)',
249
+ 'rgba(0,0,0,0.085)',
250
+ 'rgba(0,0,0,0.04)',
251
+ '#050505',
252
+ '#151515',
253
+ '#191919',
254
+ '#232323',
255
+ '#282828',
256
+ '#323232',
257
+ '#424242',
258
+ '#494949',
259
+ '#545454',
260
+ '#626262',
261
+ '#a5a5a5',
262
+ 'hsl(212, 35.0%, 9.2%)',
263
+ 'hsl(216, 50.0%, 11.8%)',
264
+ 'hsl(214, 59.4%, 15.3%)',
265
+ 'hsl(214, 65.8%, 17.9%)',
266
+ 'hsl(213, 71.2%, 20.2%)',
267
+ 'hsl(212, 77.4%, 23.1%)',
268
+ 'hsl(211, 85.1%, 27.4%)',
269
+ 'hsl(211, 89.7%, 34.1%)',
270
+ 'hsl(209, 100%, 60.6%)',
271
+ 'hsl(210, 100%, 66.1%)',
272
+ 'hsl(206, 98.0%, 95.8%)',
273
+ 'hsl(0, 0%, 8.5%)',
274
+ 'hsl(0, 0%, 11.0%)',
275
+ 'hsl(0, 0%, 13.6%)',
276
+ 'hsl(0, 0%, 15.8%)',
277
+ 'hsl(0, 0%, 17.9%)',
278
+ 'hsl(0, 0%, 20.5%)',
279
+ 'hsl(0, 0%, 24.3%)',
280
+ 'hsl(0, 0%, 31.2%)',
281
+ 'hsl(0, 0%, 43.9%)',
282
+ 'hsl(0, 0%, 49.4%)',
283
+ 'hsl(0, 0%, 62.8%)',
284
+ 'hsl(146, 30.0%, 7.4%)',
285
+ 'hsl(155, 44.2%, 8.4%)',
286
+ 'hsl(155, 46.7%, 10.9%)',
287
+ 'hsl(154, 48.4%, 12.9%)',
288
+ 'hsl(154, 49.7%, 14.9%)',
289
+ 'hsl(154, 50.9%, 17.6%)',
290
+ 'hsl(153, 51.8%, 21.8%)',
291
+ 'hsl(151, 51.7%, 28.4%)',
292
+ 'hsl(151, 49.3%, 46.5%)',
293
+ 'hsl(151, 50.0%, 53.2%)',
294
+ 'hsl(137, 72.0%, 94.0%)',
295
+ 'hsl(30, 70.0%, 7.2%)',
296
+ 'hsl(28, 100%, 8.4%)',
297
+ 'hsl(26, 91.1%, 11.6%)',
298
+ 'hsl(25, 88.3%, 14.1%)',
299
+ 'hsl(24, 87.6%, 16.6%)',
300
+ 'hsl(24, 88.6%, 19.8%)',
301
+ 'hsl(24, 92.4%, 24.0%)',
302
+ 'hsl(25, 100%, 29.0%)',
303
+ 'hsl(24, 100%, 58.5%)',
304
+ 'hsl(24, 100%, 62.2%)',
305
+ 'hsl(24, 97.0%, 93.2%)',
306
+ 'hsl(318, 25.0%, 9.6%)',
307
+ 'hsl(319, 32.2%, 11.6%)',
308
+ 'hsl(319, 41.0%, 16.0%)',
309
+ 'hsl(320, 45.4%, 18.7%)',
310
+ 'hsl(320, 49.0%, 21.1%)',
311
+ 'hsl(321, 53.6%, 24.4%)',
312
+ 'hsl(321, 61.1%, 29.7%)',
313
+ 'hsl(322, 74.9%, 37.5%)',
314
+ 'hsl(323, 72.8%, 59.2%)',
315
+ 'hsl(325, 90.0%, 66.4%)',
316
+ 'hsl(322, 90.0%, 95.8%)',
317
+ 'hsl(284, 20.0%, 9.6%)',
318
+ 'hsl(283, 30.0%, 11.8%)',
319
+ 'hsl(281, 37.5%, 16.5%)',
320
+ 'hsl(280, 41.2%, 20.0%)',
321
+ 'hsl(279, 43.8%, 23.3%)',
322
+ 'hsl(277, 46.4%, 27.5%)',
323
+ 'hsl(275, 49.3%, 34.6%)',
324
+ 'hsl(272, 52.1%, 45.9%)',
325
+ 'hsl(273, 57.3%, 59.1%)',
326
+ 'hsl(275, 80.0%, 71.0%)',
327
+ 'hsl(279, 75.0%, 95.7%)',
328
+ 'hsl(353, 23.0%, 9.8%)',
329
+ 'hsl(357, 34.4%, 12.0%)',
330
+ 'hsl(356, 43.4%, 16.4%)',
331
+ 'hsl(356, 47.6%, 19.2%)',
332
+ 'hsl(356, 51.1%, 21.9%)',
333
+ 'hsl(356, 55.2%, 25.9%)',
334
+ 'hsl(357, 60.2%, 31.8%)',
335
+ 'hsl(358, 65.0%, 40.4%)',
336
+ 'hsl(358, 85.3%, 64.0%)',
337
+ 'hsl(358, 100%, 69.5%)',
338
+ 'hsl(351, 89.0%, 96.0%)',
339
+ 'hsl(45, 100%, 5.5%)',
340
+ 'hsl(46, 100%, 6.7%)',
341
+ 'hsl(45, 100%, 8.7%)',
342
+ 'hsl(45, 100%, 10.4%)',
343
+ 'hsl(47, 100%, 12.1%)',
344
+ 'hsl(49, 100%, 14.3%)',
345
+ 'hsl(49, 90.3%, 18.4%)',
346
+ 'hsl(50, 100%, 22.0%)',
347
+ 'hsl(54, 100%, 68.0%)',
348
+ 'hsl(48, 100%, 47.0%)',
349
+ 'hsl(53, 100%, 91.0%)',
350
+ 'rgba(0,0,0,0.3)',
351
+ 'rgba(0,0,0,0.2)',
352
+ 'rgba(0,0,0,0.5)',
353
+ 'rgba(0,0,0,0.9)',
354
+ ]
355
+
356
+ const ks = [
357
+ 'color1',
358
+ 'color2',
359
+ 'color3',
360
+ 'color4',
361
+ 'color5',
362
+ 'color6',
363
+ 'color7',
364
+ 'color8',
365
+ 'color9',
366
+ 'color10',
367
+ 'color11',
368
+ 'color12',
369
+ 'background',
370
+ 'backgroundHover',
371
+ 'backgroundPress',
372
+ 'backgroundFocus',
373
+ 'backgroundStrong',
374
+ 'backgroundTransparent',
375
+ 'color',
376
+ 'colorHover',
377
+ 'colorPress',
378
+ 'colorFocus',
379
+ 'colorTransparent',
380
+ 'borderColor',
381
+ 'borderColorHover',
382
+ 'borderColorFocus',
383
+ 'borderColorPress',
384
+ 'placeholderColor',
385
+ 'outlineColor',
386
+ 'blue1',
387
+ 'blue2',
388
+ 'blue3',
389
+ 'blue4',
390
+ 'blue5',
391
+ 'blue6',
392
+ 'blue7',
393
+ 'blue8',
394
+ 'blue9',
395
+ 'blue10',
396
+ 'blue11',
397
+ 'blue12',
398
+ 'gray1',
399
+ 'gray2',
400
+ 'gray3',
401
+ 'gray4',
402
+ 'gray5',
403
+ 'gray6',
404
+ 'gray7',
405
+ 'gray8',
406
+ 'gray9',
407
+ 'gray10',
408
+ 'gray11',
409
+ 'gray12',
410
+ 'green1',
411
+ 'green2',
412
+ 'green3',
413
+ 'green4',
414
+ 'green5',
415
+ 'green6',
416
+ 'green7',
417
+ 'green8',
418
+ 'green9',
419
+ 'green10',
420
+ 'green11',
421
+ 'green12',
422
+ 'orange1',
423
+ 'orange2',
424
+ 'orange3',
425
+ 'orange4',
426
+ 'orange5',
427
+ 'orange6',
428
+ 'orange7',
429
+ 'orange8',
430
+ 'orange9',
431
+ 'orange10',
432
+ 'orange11',
433
+ 'orange12',
434
+ 'pink1',
435
+ 'pink2',
436
+ 'pink3',
437
+ 'pink4',
438
+ 'pink5',
439
+ 'pink6',
440
+ 'pink7',
441
+ 'pink8',
442
+ 'pink9',
443
+ 'pink10',
444
+ 'pink11',
445
+ 'pink12',
446
+ 'purple1',
447
+ 'purple2',
448
+ 'purple3',
449
+ 'purple4',
450
+ 'purple5',
451
+ 'purple6',
452
+ 'purple7',
453
+ 'purple8',
454
+ 'purple9',
455
+ 'purple10',
456
+ 'purple11',
457
+ 'purple12',
458
+ 'red1',
459
+ 'red2',
460
+ 'red3',
461
+ 'red4',
462
+ 'red5',
463
+ 'red6',
464
+ 'red7',
465
+ 'red8',
466
+ 'red9',
467
+ 'red10',
468
+ 'red11',
469
+ 'red12',
470
+ 'yellow1',
471
+ 'yellow2',
472
+ 'yellow3',
473
+ 'yellow4',
474
+ 'yellow5',
475
+ 'yellow6',
476
+ 'yellow7',
477
+ 'yellow8',
478
+ 'yellow9',
479
+ 'yellow10',
480
+ 'yellow11',
481
+ 'yellow12',
482
+ 'shadowColor',
483
+ 'shadowColorHover',
484
+ 'shadowColorPress',
485
+ 'shadowColorFocus',
486
+ ]
487
+
488
+ const n1 = t([
489
+ [0, 0],
490
+ [1, 1],
491
+ [2, 2],
492
+ [3, 3],
493
+ [4, 4],
494
+ [5, 5],
495
+ [6, 6],
496
+ [7, 7],
497
+ [8, 8],
498
+ [9, 9],
499
+ [10, 10],
500
+ [11, 11],
501
+ [12, 1],
502
+ [13, 2],
503
+ [14, 3],
504
+ [15, 4],
505
+ [16, 0],
506
+ [17, 12],
507
+ [18, 11],
508
+ [19, 10],
509
+ [20, 11],
510
+ [21, 10],
511
+ [22, 13],
512
+ [23, 4],
513
+ [24, 5],
514
+ [25, 3],
515
+ [26, 4],
516
+ [27, 8],
517
+ [28, 4],
518
+ [29, 14],
519
+ [30, 15],
520
+ [31, 16],
521
+ [32, 17],
522
+ [33, 18],
523
+ [34, 19],
524
+ [35, 20],
525
+ [36, 21],
526
+ [37, 22],
527
+ [38, 23],
528
+ [39, 24],
529
+ [40, 25],
530
+ [41, 26],
531
+ [42, 27],
532
+ [43, 28],
533
+ [44, 29],
534
+ [45, 30],
535
+ [46, 31],
536
+ [47, 32],
537
+ [48, 33],
538
+ [49, 8],
539
+ [50, 34],
540
+ [51, 35],
541
+ [52, 11],
542
+ [53, 36],
543
+ [54, 37],
544
+ [55, 38],
545
+ [56, 39],
546
+ [57, 40],
547
+ [58, 41],
548
+ [59, 42],
549
+ [60, 43],
550
+ [61, 44],
551
+ [62, 45],
552
+ [63, 46],
553
+ [64, 47],
554
+ [65, 48],
555
+ [66, 49],
556
+ [67, 50],
557
+ [68, 51],
558
+ [69, 52],
559
+ [70, 53],
560
+ [71, 54],
561
+ [72, 55],
562
+ [73, 56],
563
+ [74, 57],
564
+ [75, 58],
565
+ [76, 59],
566
+ [77, 60],
567
+ [78, 61],
568
+ [79, 62],
569
+ [80, 63],
570
+ [81, 64],
571
+ [82, 65],
572
+ [83, 66],
573
+ [84, 67],
574
+ [85, 68],
575
+ [86, 69],
576
+ [87, 70],
577
+ [88, 71],
578
+ [89, 72],
579
+ [90, 73],
580
+ [91, 74],
581
+ [92, 75],
582
+ [93, 76],
583
+ [94, 77],
584
+ [95, 78],
585
+ [96, 79],
586
+ [97, 80],
587
+ [98, 81],
588
+ [99, 82],
589
+ [100, 83],
590
+ [101, 84],
591
+ [102, 85],
592
+ [103, 86],
593
+ [104, 87],
594
+ [105, 88],
595
+ [106, 89],
596
+ [107, 90],
597
+ [108, 91],
598
+ [109, 92],
599
+ [110, 93],
600
+ [111, 94],
601
+ [112, 95],
602
+ [113, 96],
603
+ [114, 97],
604
+ [115, 98],
605
+ [116, 99],
606
+ [117, 100],
607
+ [118, 101],
608
+ [119, 102],
609
+ [120, 103],
610
+ [121, 104],
611
+ [122, 105],
612
+ [123, 106],
613
+ [124, 107],
614
+ [125, 108],
615
+ [126, 108],
616
+ [127, 109],
617
+ [128, 109],
618
+ ])
619
+
620
+ export const light = n1
621
+ const n2 = t([
622
+ [0, 110],
623
+ [1, 111],
624
+ [2, 112],
625
+ [3, 113],
626
+ [4, 114],
627
+ [5, 115],
628
+ [6, 116],
629
+ [7, 117],
630
+ [8, 118],
631
+ [9, 119],
632
+ [10, 120],
633
+ [11, 0],
634
+ [12, 111],
635
+ [13, 112],
636
+ [14, 113],
637
+ [15, 114],
638
+ [16, 110],
639
+ [17, 13],
640
+ [18, 0],
641
+ [19, 120],
642
+ [20, 0],
643
+ [21, 120],
644
+ [22, 12],
645
+ [23, 114],
646
+ [24, 115],
647
+ [25, 113],
648
+ [26, 114],
649
+ [27, 118],
650
+ [28, 114],
651
+ [29, 121],
652
+ [30, 122],
653
+ [31, 123],
654
+ [32, 124],
655
+ [33, 125],
656
+ [34, 126],
657
+ [35, 127],
658
+ [36, 128],
659
+ [37, 22],
660
+ [38, 129],
661
+ [39, 130],
662
+ [40, 131],
663
+ [41, 132],
664
+ [42, 133],
665
+ [43, 134],
666
+ [44, 135],
667
+ [45, 136],
668
+ [46, 137],
669
+ [47, 138],
670
+ [48, 139],
671
+ [49, 140],
672
+ [50, 141],
673
+ [51, 142],
674
+ [52, 29],
675
+ [53, 143],
676
+ [54, 144],
677
+ [55, 145],
678
+ [56, 146],
679
+ [57, 147],
680
+ [58, 148],
681
+ [59, 149],
682
+ [60, 150],
683
+ [61, 44],
684
+ [62, 151],
685
+ [63, 152],
686
+ [64, 153],
687
+ [65, 154],
688
+ [66, 155],
689
+ [67, 156],
690
+ [68, 157],
691
+ [69, 158],
692
+ [70, 159],
693
+ [71, 160],
694
+ [72, 161],
695
+ [73, 56],
696
+ [74, 162],
697
+ [75, 163],
698
+ [76, 164],
699
+ [77, 165],
700
+ [78, 166],
701
+ [79, 167],
702
+ [80, 168],
703
+ [81, 169],
704
+ [82, 170],
705
+ [83, 171],
706
+ [84, 172],
707
+ [85, 68],
708
+ [86, 173],
709
+ [87, 174],
710
+ [88, 175],
711
+ [89, 176],
712
+ [90, 177],
713
+ [91, 178],
714
+ [92, 179],
715
+ [93, 180],
716
+ [94, 181],
717
+ [95, 182],
718
+ [96, 183],
719
+ [97, 80],
720
+ [98, 184],
721
+ [99, 185],
722
+ [100, 186],
723
+ [101, 187],
724
+ [102, 188],
725
+ [103, 189],
726
+ [104, 190],
727
+ [105, 191],
728
+ [106, 192],
729
+ [107, 193],
730
+ [108, 194],
731
+ [109, 92],
732
+ [110, 195],
733
+ [111, 196],
734
+ [112, 197],
735
+ [113, 198],
736
+ [114, 199],
737
+ [115, 200],
738
+ [116, 201],
739
+ [117, 202],
740
+ [118, 203],
741
+ [119, 204],
742
+ [120, 205],
743
+ [121, 104],
744
+ [122, 206],
745
+ [123, 207],
746
+ [124, 208],
747
+ [125, 209],
748
+ [126, 209],
749
+ [127, 210],
750
+ [128, 210],
751
+ ])
752
+
753
+ export const dark = n2
754
+ const n3 = t([
755
+ [0, 0],
756
+ [1, 1],
757
+ [2, 2],
758
+ [3, 3],
759
+ [4, 4],
760
+ [5, 5],
761
+ [6, 6],
762
+ [7, 7],
763
+ [8, 8],
764
+ [9, 9],
765
+ [10, 10],
766
+ [11, 11],
767
+ [12, 1],
768
+ [13, 2],
769
+ [14, 3],
770
+ [15, 4],
771
+ [16, 0],
772
+ [17, 12],
773
+ [18, 11],
774
+ [19, 10],
775
+ [20, 11],
776
+ [21, 10],
777
+ [22, 13],
778
+ [23, 4],
779
+ [24, 5],
780
+ [25, 3],
781
+ [26, 4],
782
+ [27, 8],
783
+ [28, 4],
784
+ ])
785
+
786
+ export const light_orange = n3
787
+ export const light_yellow = n3
788
+ export const light_green = n3
789
+ export const light_blue = n3
790
+ export const light_purple = n3
791
+ export const light_pink = n3
792
+ export const light_red = n3
793
+ export const light_gray = n3
794
+ const n4 = t([
795
+ [0, 110],
796
+ [1, 111],
797
+ [2, 112],
798
+ [3, 113],
799
+ [4, 114],
800
+ [5, 115],
801
+ [6, 116],
802
+ [7, 117],
803
+ [8, 118],
804
+ [9, 119],
805
+ [10, 120],
806
+ [11, 0],
807
+ [12, 111],
808
+ [13, 112],
809
+ [14, 113],
810
+ [15, 114],
811
+ [16, 110],
812
+ [17, 13],
813
+ [18, 0],
814
+ [19, 120],
815
+ [20, 0],
816
+ [21, 120],
817
+ [22, 12],
818
+ [23, 114],
819
+ [24, 115],
820
+ [25, 113],
821
+ [26, 114],
822
+ [27, 118],
823
+ [28, 114],
824
+ ])
825
+
826
+ export const dark_orange = n4
827
+ export const dark_yellow = n4
828
+ export const dark_green = n4
829
+ export const dark_blue = n4
830
+ export const dark_purple = n4
831
+ export const dark_pink = n4
832
+ export const dark_red = n4
833
+ export const dark_gray = n4
834
+ const n5 = t([
835
+ [12, 2],
836
+ [13, 3],
837
+ [14, 4],
838
+ [15, 5],
839
+ [16, 1],
840
+ [23, 5],
841
+ [24, 6],
842
+ [25, 4],
843
+ [26, 5],
844
+ [28, 5],
845
+ ])
846
+
847
+ export const light_alt1 = n5
848
+ export const light_ListItem = n5
849
+ export const light_Card = n5
850
+ export const light_DrawerFrame = n5
851
+ export const light_Progress = n5
852
+ export const light_TooltipArrow = n5
853
+ export const light_SliderTrack = n5
854
+ export const light_alt1_ListItem = n5
855
+ export const light_alt1_Card = n5
856
+ export const light_alt1_DrawerFrame = n5
857
+ export const light_alt1_Progress = n5
858
+ export const light_alt1_TooltipArrow = n5
859
+ export const light_alt1_SliderTrack = n5
860
+ export const light_alt2_ListItem = n5
861
+ export const light_alt2_Card = n5
862
+ export const light_alt2_DrawerFrame = n5
863
+ export const light_alt2_Progress = n5
864
+ export const light_alt2_TooltipArrow = n5
865
+ export const light_alt2_SliderTrack = n5
866
+ export const light_active_ListItem = n5
867
+ export const light_active_Card = n5
868
+ export const light_active_DrawerFrame = n5
869
+ export const light_active_Progress = n5
870
+ export const light_active_TooltipArrow = n5
871
+ export const light_active_SliderTrack = n5
872
+ const n6 = t([
873
+ [12, 3],
874
+ [13, 4],
875
+ [14, 5],
876
+ [15, 6],
877
+ [16, 2],
878
+ [23, 6],
879
+ [24, 7],
880
+ [25, 5],
881
+ [26, 6],
882
+ [28, 6],
883
+ ])
884
+
885
+ export const light_alt2 = n6
886
+ export const light_Button = n6
887
+ export const light_Checkbox = n6
888
+ export const light_Switch = n6
889
+ export const light_TooltipContent = n6
890
+ export const light_RadioGroupItem = n6
891
+ export const light_Input = n6
892
+ export const light_TextArea = n6
893
+ export const light_alt1_Button = n6
894
+ export const light_alt1_Checkbox = n6
895
+ export const light_alt1_Switch = n6
896
+ export const light_alt1_TooltipContent = n6
897
+ export const light_alt1_RadioGroupItem = n6
898
+ export const light_alt1_Input = n6
899
+ export const light_alt1_TextArea = n6
900
+ export const light_alt2_Button = n6
901
+ export const light_alt2_Checkbox = n6
902
+ export const light_alt2_Switch = n6
903
+ export const light_alt2_TooltipContent = n6
904
+ export const light_alt2_RadioGroupItem = n6
905
+ export const light_alt2_Input = n6
906
+ export const light_alt2_TextArea = n6
907
+ export const light_active_Button = n6
908
+ export const light_active_Checkbox = n6
909
+ export const light_active_Switch = n6
910
+ export const light_active_TooltipContent = n6
911
+ export const light_active_RadioGroupItem = n6
912
+ export const light_active_Input = n6
913
+ export const light_active_TextArea = n6
914
+ const n7 = t([
915
+ [12, 4],
916
+ [13, 5],
917
+ [14, 6],
918
+ [15, 7],
919
+ [16, 3],
920
+ [23, 7],
921
+ [24, 8],
922
+ [25, 6],
923
+ [26, 7],
924
+ [28, 7],
925
+ ])
926
+
927
+ export const light_active = n7
928
+ export const light_SliderTrackActive = n7
929
+ export const light_alt1_SliderTrackActive = n7
930
+ export const light_alt2_SliderTrackActive = n7
931
+ export const light_active_SliderTrackActive = n7
932
+ const n8 = t([
933
+ [12, 112],
934
+ [13, 113],
935
+ [14, 114],
936
+ [15, 115],
937
+ [16, 111],
938
+ [23, 115],
939
+ [24, 116],
940
+ [25, 114],
941
+ [26, 115],
942
+ [28, 115],
943
+ ])
944
+
945
+ export const dark_alt1 = n8
946
+ export const dark_ListItem = n8
947
+ export const dark_Card = n8
948
+ export const dark_DrawerFrame = n8
949
+ export const dark_Progress = n8
950
+ export const dark_TooltipArrow = n8
951
+ export const dark_SliderTrack = n8
952
+ export const dark_alt1_ListItem = n8
953
+ export const dark_alt1_Card = n8
954
+ export const dark_alt1_DrawerFrame = n8
955
+ export const dark_alt1_Progress = n8
956
+ export const dark_alt1_TooltipArrow = n8
957
+ export const dark_alt1_SliderTrack = n8
958
+ export const dark_alt2_ListItem = n8
959
+ export const dark_alt2_Card = n8
960
+ export const dark_alt2_DrawerFrame = n8
961
+ export const dark_alt2_Progress = n8
962
+ export const dark_alt2_TooltipArrow = n8
963
+ export const dark_alt2_SliderTrack = n8
964
+ export const dark_active_ListItem = n8
965
+ export const dark_active_Card = n8
966
+ export const dark_active_DrawerFrame = n8
967
+ export const dark_active_Progress = n8
968
+ export const dark_active_TooltipArrow = n8
969
+ export const dark_active_SliderTrack = n8
970
+ const n9 = t([
971
+ [12, 113],
972
+ [13, 114],
973
+ [14, 115],
974
+ [15, 116],
975
+ [16, 112],
976
+ [23, 116],
977
+ [24, 117],
978
+ [25, 115],
979
+ [26, 116],
980
+ [28, 116],
981
+ ])
982
+
983
+ export const dark_alt2 = n9
984
+ export const dark_Button = n9
985
+ export const dark_Checkbox = n9
986
+ export const dark_Switch = n9
987
+ export const dark_TooltipContent = n9
988
+ export const dark_RadioGroupItem = n9
989
+ export const dark_Input = n9
990
+ export const dark_TextArea = n9
991
+ export const dark_alt1_Button = n9
992
+ export const dark_alt1_Checkbox = n9
993
+ export const dark_alt1_Switch = n9
994
+ export const dark_alt1_TooltipContent = n9
995
+ export const dark_alt1_RadioGroupItem = n9
996
+ export const dark_alt1_Input = n9
997
+ export const dark_alt1_TextArea = n9
998
+ export const dark_alt2_Button = n9
999
+ export const dark_alt2_Checkbox = n9
1000
+ export const dark_alt2_Switch = n9
1001
+ export const dark_alt2_TooltipContent = n9
1002
+ export const dark_alt2_RadioGroupItem = n9
1003
+ export const dark_alt2_Input = n9
1004
+ export const dark_alt2_TextArea = n9
1005
+ export const dark_active_Button = n9
1006
+ export const dark_active_Checkbox = n9
1007
+ export const dark_active_Switch = n9
1008
+ export const dark_active_TooltipContent = n9
1009
+ export const dark_active_RadioGroupItem = n9
1010
+ export const dark_active_Input = n9
1011
+ export const dark_active_TextArea = n9
1012
+ const n10 = t([
1013
+ [12, 114],
1014
+ [13, 115],
1015
+ [14, 116],
1016
+ [15, 117],
1017
+ [16, 113],
1018
+ [23, 117],
1019
+ [24, 118],
1020
+ [25, 116],
1021
+ [26, 117],
1022
+ [28, 117],
1023
+ ])
1024
+
1025
+ export const dark_active = n10
1026
+ export const dark_SliderTrackActive = n10
1027
+ export const dark_alt1_SliderTrackActive = n10
1028
+ export const dark_alt2_SliderTrackActive = n10
1029
+ export const dark_active_SliderTrackActive = n10
1030
+ const n11 = t([
1031
+ [12, 50],
1032
+ [13, 51],
1033
+ [14, 52],
1034
+ [15, 53],
1035
+ [16, 49],
1036
+ [23, 53],
1037
+ [24, 55],
1038
+ [25, 52],
1039
+ [26, 53],
1040
+ [28, 53],
1041
+ ])
1042
+
1043
+ export const light_orange_alt1 = n11
1044
+ export const light_orange_ListItem = n11
1045
+ export const light_orange_Card = n11
1046
+ export const light_orange_DrawerFrame = n11
1047
+ export const light_orange_Progress = n11
1048
+ export const light_orange_TooltipArrow = n11
1049
+ export const light_orange_SliderTrack = n11
1050
+ export const light_orange_alt1_ListItem = n11
1051
+ export const light_orange_alt1_Card = n11
1052
+ export const light_orange_alt1_DrawerFrame = n11
1053
+ export const light_orange_alt1_Progress = n11
1054
+ export const light_orange_alt1_TooltipArrow = n11
1055
+ export const light_orange_alt1_SliderTrack = n11
1056
+ export const light_orange_alt2_ListItem = n11
1057
+ export const light_orange_alt2_Card = n11
1058
+ export const light_orange_alt2_DrawerFrame = n11
1059
+ export const light_orange_alt2_Progress = n11
1060
+ export const light_orange_alt2_TooltipArrow = n11
1061
+ export const light_orange_alt2_SliderTrack = n11
1062
+ export const light_orange_active_ListItem = n11
1063
+ export const light_orange_active_Card = n11
1064
+ export const light_orange_active_DrawerFrame = n11
1065
+ export const light_orange_active_Progress = n11
1066
+ export const light_orange_active_TooltipArrow = n11
1067
+ export const light_orange_active_SliderTrack = n11
1068
+ const n12 = t([
1069
+ [12, 51],
1070
+ [13, 52],
1071
+ [14, 53],
1072
+ [15, 55],
1073
+ [16, 50],
1074
+ [23, 55],
1075
+ [24, 56],
1076
+ [25, 53],
1077
+ [26, 55],
1078
+ [28, 55],
1079
+ ])
1080
+
1081
+ export const light_orange_alt2 = n12
1082
+ export const light_orange_Button = n12
1083
+ export const light_orange_Checkbox = n12
1084
+ export const light_orange_Switch = n12
1085
+ export const light_orange_TooltipContent = n12
1086
+ export const light_orange_RadioGroupItem = n12
1087
+ export const light_orange_Input = n12
1088
+ export const light_orange_TextArea = n12
1089
+ export const light_orange_alt1_Button = n12
1090
+ export const light_orange_alt1_Checkbox = n12
1091
+ export const light_orange_alt1_Switch = n12
1092
+ export const light_orange_alt1_TooltipContent = n12
1093
+ export const light_orange_alt1_RadioGroupItem = n12
1094
+ export const light_orange_alt1_Input = n12
1095
+ export const light_orange_alt1_TextArea = n12
1096
+ export const light_orange_alt2_Button = n12
1097
+ export const light_orange_alt2_Checkbox = n12
1098
+ export const light_orange_alt2_Switch = n12
1099
+ export const light_orange_alt2_TooltipContent = n12
1100
+ export const light_orange_alt2_RadioGroupItem = n12
1101
+ export const light_orange_alt2_Input = n12
1102
+ export const light_orange_alt2_TextArea = n12
1103
+ export const light_orange_active_Button = n12
1104
+ export const light_orange_active_Checkbox = n12
1105
+ export const light_orange_active_Switch = n12
1106
+ export const light_orange_active_TooltipContent = n12
1107
+ export const light_orange_active_RadioGroupItem = n12
1108
+ export const light_orange_active_Input = n12
1109
+ export const light_orange_active_TextArea = n12
1110
+ const n13 = t([
1111
+ [12, 52],
1112
+ [13, 53],
1113
+ [14, 55],
1114
+ [15, 56],
1115
+ [16, 51],
1116
+ [23, 56],
1117
+ [24, 57],
1118
+ [25, 55],
1119
+ [26, 56],
1120
+ [28, 56],
1121
+ ])
1122
+
1123
+ export const light_orange_active = n13
1124
+ export const light_orange_SliderTrackActive = n13
1125
+ export const light_orange_alt1_SliderTrackActive = n13
1126
+ export const light_orange_alt2_SliderTrackActive = n13
1127
+ export const light_orange_active_SliderTrackActive = n13
1128
+ const n14 = t([
1129
+ [12, 98],
1130
+ [13, 99],
1131
+ [14, 100],
1132
+ [15, 101],
1133
+ [16, 97],
1134
+ [23, 101],
1135
+ [24, 103],
1136
+ [25, 100],
1137
+ [26, 101],
1138
+ [28, 101],
1139
+ ])
1140
+
1141
+ export const light_yellow_alt1 = n14
1142
+ export const light_yellow_ListItem = n14
1143
+ export const light_yellow_Card = n14
1144
+ export const light_yellow_DrawerFrame = n14
1145
+ export const light_yellow_Progress = n14
1146
+ export const light_yellow_TooltipArrow = n14
1147
+ export const light_yellow_SliderTrack = n14
1148
+ export const light_yellow_alt1_ListItem = n14
1149
+ export const light_yellow_alt1_Card = n14
1150
+ export const light_yellow_alt1_DrawerFrame = n14
1151
+ export const light_yellow_alt1_Progress = n14
1152
+ export const light_yellow_alt1_TooltipArrow = n14
1153
+ export const light_yellow_alt1_SliderTrack = n14
1154
+ export const light_yellow_alt2_ListItem = n14
1155
+ export const light_yellow_alt2_Card = n14
1156
+ export const light_yellow_alt2_DrawerFrame = n14
1157
+ export const light_yellow_alt2_Progress = n14
1158
+ export const light_yellow_alt2_TooltipArrow = n14
1159
+ export const light_yellow_alt2_SliderTrack = n14
1160
+ export const light_yellow_active_ListItem = n14
1161
+ export const light_yellow_active_Card = n14
1162
+ export const light_yellow_active_DrawerFrame = n14
1163
+ export const light_yellow_active_Progress = n14
1164
+ export const light_yellow_active_TooltipArrow = n14
1165
+ export const light_yellow_active_SliderTrack = n14
1166
+ const n15 = t([
1167
+ [12, 99],
1168
+ [13, 100],
1169
+ [14, 101],
1170
+ [15, 103],
1171
+ [16, 98],
1172
+ [23, 103],
1173
+ [24, 104],
1174
+ [25, 101],
1175
+ [26, 103],
1176
+ [28, 103],
1177
+ ])
1178
+
1179
+ export const light_yellow_alt2 = n15
1180
+ export const light_yellow_Button = n15
1181
+ export const light_yellow_Checkbox = n15
1182
+ export const light_yellow_Switch = n15
1183
+ export const light_yellow_TooltipContent = n15
1184
+ export const light_yellow_RadioGroupItem = n15
1185
+ export const light_yellow_Input = n15
1186
+ export const light_yellow_TextArea = n15
1187
+ export const light_yellow_alt1_Button = n15
1188
+ export const light_yellow_alt1_Checkbox = n15
1189
+ export const light_yellow_alt1_Switch = n15
1190
+ export const light_yellow_alt1_TooltipContent = n15
1191
+ export const light_yellow_alt1_RadioGroupItem = n15
1192
+ export const light_yellow_alt1_Input = n15
1193
+ export const light_yellow_alt1_TextArea = n15
1194
+ export const light_yellow_alt2_Button = n15
1195
+ export const light_yellow_alt2_Checkbox = n15
1196
+ export const light_yellow_alt2_Switch = n15
1197
+ export const light_yellow_alt2_TooltipContent = n15
1198
+ export const light_yellow_alt2_RadioGroupItem = n15
1199
+ export const light_yellow_alt2_Input = n15
1200
+ export const light_yellow_alt2_TextArea = n15
1201
+ export const light_yellow_active_Button = n15
1202
+ export const light_yellow_active_Checkbox = n15
1203
+ export const light_yellow_active_Switch = n15
1204
+ export const light_yellow_active_TooltipContent = n15
1205
+ export const light_yellow_active_RadioGroupItem = n15
1206
+ export const light_yellow_active_Input = n15
1207
+ export const light_yellow_active_TextArea = n15
1208
+ const n16 = t([
1209
+ [12, 100],
1210
+ [13, 101],
1211
+ [14, 103],
1212
+ [15, 104],
1213
+ [16, 99],
1214
+ [23, 104],
1215
+ [24, 105],
1216
+ [25, 103],
1217
+ [26, 104],
1218
+ [28, 104],
1219
+ ])
1220
+
1221
+ export const light_yellow_active = n16
1222
+ export const light_yellow_SliderTrackActive = n16
1223
+ export const light_yellow_alt1_SliderTrackActive = n16
1224
+ export const light_yellow_alt2_SliderTrackActive = n16
1225
+ export const light_yellow_active_SliderTrackActive = n16
1226
+ const n17 = t([
1227
+ [12, 38],
1228
+ [13, 39],
1229
+ [14, 40],
1230
+ [15, 41],
1231
+ [16, 37],
1232
+ [23, 41],
1233
+ [24, 43],
1234
+ [25, 40],
1235
+ [26, 41],
1236
+ [28, 41],
1237
+ ])
1238
+
1239
+ export const light_green_alt1 = n17
1240
+ export const light_green_ListItem = n17
1241
+ export const light_green_Card = n17
1242
+ export const light_green_DrawerFrame = n17
1243
+ export const light_green_Progress = n17
1244
+ export const light_green_TooltipArrow = n17
1245
+ export const light_green_SliderTrack = n17
1246
+ export const light_green_alt1_ListItem = n17
1247
+ export const light_green_alt1_Card = n17
1248
+ export const light_green_alt1_DrawerFrame = n17
1249
+ export const light_green_alt1_Progress = n17
1250
+ export const light_green_alt1_TooltipArrow = n17
1251
+ export const light_green_alt1_SliderTrack = n17
1252
+ export const light_green_alt2_ListItem = n17
1253
+ export const light_green_alt2_Card = n17
1254
+ export const light_green_alt2_DrawerFrame = n17
1255
+ export const light_green_alt2_Progress = n17
1256
+ export const light_green_alt2_TooltipArrow = n17
1257
+ export const light_green_alt2_SliderTrack = n17
1258
+ export const light_green_active_ListItem = n17
1259
+ export const light_green_active_Card = n17
1260
+ export const light_green_active_DrawerFrame = n17
1261
+ export const light_green_active_Progress = n17
1262
+ export const light_green_active_TooltipArrow = n17
1263
+ export const light_green_active_SliderTrack = n17
1264
+ const n18 = t([
1265
+ [12, 39],
1266
+ [13, 40],
1267
+ [14, 41],
1268
+ [15, 43],
1269
+ [16, 38],
1270
+ [23, 43],
1271
+ [24, 44],
1272
+ [25, 41],
1273
+ [26, 43],
1274
+ [28, 43],
1275
+ ])
1276
+
1277
+ export const light_green_alt2 = n18
1278
+ export const light_green_Button = n18
1279
+ export const light_green_Checkbox = n18
1280
+ export const light_green_Switch = n18
1281
+ export const light_green_TooltipContent = n18
1282
+ export const light_green_RadioGroupItem = n18
1283
+ export const light_green_Input = n18
1284
+ export const light_green_TextArea = n18
1285
+ export const light_green_alt1_Button = n18
1286
+ export const light_green_alt1_Checkbox = n18
1287
+ export const light_green_alt1_Switch = n18
1288
+ export const light_green_alt1_TooltipContent = n18
1289
+ export const light_green_alt1_RadioGroupItem = n18
1290
+ export const light_green_alt1_Input = n18
1291
+ export const light_green_alt1_TextArea = n18
1292
+ export const light_green_alt2_Button = n18
1293
+ export const light_green_alt2_Checkbox = n18
1294
+ export const light_green_alt2_Switch = n18
1295
+ export const light_green_alt2_TooltipContent = n18
1296
+ export const light_green_alt2_RadioGroupItem = n18
1297
+ export const light_green_alt2_Input = n18
1298
+ export const light_green_alt2_TextArea = n18
1299
+ export const light_green_active_Button = n18
1300
+ export const light_green_active_Checkbox = n18
1301
+ export const light_green_active_Switch = n18
1302
+ export const light_green_active_TooltipContent = n18
1303
+ export const light_green_active_RadioGroupItem = n18
1304
+ export const light_green_active_Input = n18
1305
+ export const light_green_active_TextArea = n18
1306
+ const n19 = t([
1307
+ [12, 40],
1308
+ [13, 41],
1309
+ [14, 43],
1310
+ [15, 44],
1311
+ [16, 39],
1312
+ [23, 44],
1313
+ [24, 45],
1314
+ [25, 43],
1315
+ [26, 44],
1316
+ [28, 44],
1317
+ ])
1318
+
1319
+ export const light_green_active = n19
1320
+ export const light_green_SliderTrackActive = n19
1321
+ export const light_green_alt1_SliderTrackActive = n19
1322
+ export const light_green_alt2_SliderTrackActive = n19
1323
+ export const light_green_active_SliderTrackActive = n19
1324
+ const n20 = t([
1325
+ [12, 16],
1326
+ [13, 17],
1327
+ [14, 18],
1328
+ [15, 19],
1329
+ [16, 15],
1330
+ [23, 19],
1331
+ [24, 21],
1332
+ [25, 18],
1333
+ [26, 19],
1334
+ [28, 19],
1335
+ ])
1336
+
1337
+ export const light_blue_alt1 = n20
1338
+ export const light_blue_ListItem = n20
1339
+ export const light_blue_Card = n20
1340
+ export const light_blue_DrawerFrame = n20
1341
+ export const light_blue_Progress = n20
1342
+ export const light_blue_TooltipArrow = n20
1343
+ export const light_blue_SliderTrack = n20
1344
+ export const light_blue_alt1_ListItem = n20
1345
+ export const light_blue_alt1_Card = n20
1346
+ export const light_blue_alt1_DrawerFrame = n20
1347
+ export const light_blue_alt1_Progress = n20
1348
+ export const light_blue_alt1_TooltipArrow = n20
1349
+ export const light_blue_alt1_SliderTrack = n20
1350
+ export const light_blue_alt2_ListItem = n20
1351
+ export const light_blue_alt2_Card = n20
1352
+ export const light_blue_alt2_DrawerFrame = n20
1353
+ export const light_blue_alt2_Progress = n20
1354
+ export const light_blue_alt2_TooltipArrow = n20
1355
+ export const light_blue_alt2_SliderTrack = n20
1356
+ export const light_blue_active_ListItem = n20
1357
+ export const light_blue_active_Card = n20
1358
+ export const light_blue_active_DrawerFrame = n20
1359
+ export const light_blue_active_Progress = n20
1360
+ export const light_blue_active_TooltipArrow = n20
1361
+ export const light_blue_active_SliderTrack = n20
1362
+ const n21 = t([
1363
+ [12, 17],
1364
+ [13, 18],
1365
+ [14, 19],
1366
+ [15, 21],
1367
+ [16, 16],
1368
+ [23, 21],
1369
+ [24, 22],
1370
+ [25, 19],
1371
+ [26, 21],
1372
+ [28, 21],
1373
+ ])
1374
+
1375
+ export const light_blue_alt2 = n21
1376
+ export const light_blue_Button = n21
1377
+ export const light_blue_Checkbox = n21
1378
+ export const light_blue_Switch = n21
1379
+ export const light_blue_TooltipContent = n21
1380
+ export const light_blue_RadioGroupItem = n21
1381
+ export const light_blue_Input = n21
1382
+ export const light_blue_TextArea = n21
1383
+ export const light_blue_alt1_Button = n21
1384
+ export const light_blue_alt1_Checkbox = n21
1385
+ export const light_blue_alt1_Switch = n21
1386
+ export const light_blue_alt1_TooltipContent = n21
1387
+ export const light_blue_alt1_RadioGroupItem = n21
1388
+ export const light_blue_alt1_Input = n21
1389
+ export const light_blue_alt1_TextArea = n21
1390
+ export const light_blue_alt2_Button = n21
1391
+ export const light_blue_alt2_Checkbox = n21
1392
+ export const light_blue_alt2_Switch = n21
1393
+ export const light_blue_alt2_TooltipContent = n21
1394
+ export const light_blue_alt2_RadioGroupItem = n21
1395
+ export const light_blue_alt2_Input = n21
1396
+ export const light_blue_alt2_TextArea = n21
1397
+ export const light_blue_active_Button = n21
1398
+ export const light_blue_active_Checkbox = n21
1399
+ export const light_blue_active_Switch = n21
1400
+ export const light_blue_active_TooltipContent = n21
1401
+ export const light_blue_active_RadioGroupItem = n21
1402
+ export const light_blue_active_Input = n21
1403
+ export const light_blue_active_TextArea = n21
1404
+ const n22 = t([
1405
+ [12, 18],
1406
+ [13, 19],
1407
+ [14, 21],
1408
+ [15, 22],
1409
+ [16, 17],
1410
+ [23, 22],
1411
+ [24, 23],
1412
+ [25, 21],
1413
+ [26, 22],
1414
+ [28, 22],
1415
+ ])
1416
+
1417
+ export const light_blue_active = n22
1418
+ export const light_blue_SliderTrackActive = n22
1419
+ export const light_blue_alt1_SliderTrackActive = n22
1420
+ export const light_blue_alt2_SliderTrackActive = n22
1421
+ export const light_blue_active_SliderTrackActive = n22
1422
+ const n23 = t([
1423
+ [12, 74],
1424
+ [13, 75],
1425
+ [14, 76],
1426
+ [15, 77],
1427
+ [16, 73],
1428
+ [23, 77],
1429
+ [24, 79],
1430
+ [25, 76],
1431
+ [26, 77],
1432
+ [28, 77],
1433
+ ])
1434
+
1435
+ export const light_purple_alt1 = n23
1436
+ export const light_purple_ListItem = n23
1437
+ export const light_purple_Card = n23
1438
+ export const light_purple_DrawerFrame = n23
1439
+ export const light_purple_Progress = n23
1440
+ export const light_purple_TooltipArrow = n23
1441
+ export const light_purple_SliderTrack = n23
1442
+ export const light_purple_alt1_ListItem = n23
1443
+ export const light_purple_alt1_Card = n23
1444
+ export const light_purple_alt1_DrawerFrame = n23
1445
+ export const light_purple_alt1_Progress = n23
1446
+ export const light_purple_alt1_TooltipArrow = n23
1447
+ export const light_purple_alt1_SliderTrack = n23
1448
+ export const light_purple_alt2_ListItem = n23
1449
+ export const light_purple_alt2_Card = n23
1450
+ export const light_purple_alt2_DrawerFrame = n23
1451
+ export const light_purple_alt2_Progress = n23
1452
+ export const light_purple_alt2_TooltipArrow = n23
1453
+ export const light_purple_alt2_SliderTrack = n23
1454
+ export const light_purple_active_ListItem = n23
1455
+ export const light_purple_active_Card = n23
1456
+ export const light_purple_active_DrawerFrame = n23
1457
+ export const light_purple_active_Progress = n23
1458
+ export const light_purple_active_TooltipArrow = n23
1459
+ export const light_purple_active_SliderTrack = n23
1460
+ const n24 = t([
1461
+ [12, 75],
1462
+ [13, 76],
1463
+ [14, 77],
1464
+ [15, 79],
1465
+ [16, 74],
1466
+ [23, 79],
1467
+ [24, 80],
1468
+ [25, 77],
1469
+ [26, 79],
1470
+ [28, 79],
1471
+ ])
1472
+
1473
+ export const light_purple_alt2 = n24
1474
+ export const light_purple_Button = n24
1475
+ export const light_purple_Checkbox = n24
1476
+ export const light_purple_Switch = n24
1477
+ export const light_purple_TooltipContent = n24
1478
+ export const light_purple_RadioGroupItem = n24
1479
+ export const light_purple_Input = n24
1480
+ export const light_purple_TextArea = n24
1481
+ export const light_purple_alt1_Button = n24
1482
+ export const light_purple_alt1_Checkbox = n24
1483
+ export const light_purple_alt1_Switch = n24
1484
+ export const light_purple_alt1_TooltipContent = n24
1485
+ export const light_purple_alt1_RadioGroupItem = n24
1486
+ export const light_purple_alt1_Input = n24
1487
+ export const light_purple_alt1_TextArea = n24
1488
+ export const light_purple_alt2_Button = n24
1489
+ export const light_purple_alt2_Checkbox = n24
1490
+ export const light_purple_alt2_Switch = n24
1491
+ export const light_purple_alt2_TooltipContent = n24
1492
+ export const light_purple_alt2_RadioGroupItem = n24
1493
+ export const light_purple_alt2_Input = n24
1494
+ export const light_purple_alt2_TextArea = n24
1495
+ export const light_purple_active_Button = n24
1496
+ export const light_purple_active_Checkbox = n24
1497
+ export const light_purple_active_Switch = n24
1498
+ export const light_purple_active_TooltipContent = n24
1499
+ export const light_purple_active_RadioGroupItem = n24
1500
+ export const light_purple_active_Input = n24
1501
+ export const light_purple_active_TextArea = n24
1502
+ const n25 = t([
1503
+ [12, 76],
1504
+ [13, 77],
1505
+ [14, 79],
1506
+ [15, 80],
1507
+ [16, 75],
1508
+ [23, 80],
1509
+ [24, 81],
1510
+ [25, 79],
1511
+ [26, 80],
1512
+ [28, 80],
1513
+ ])
1514
+
1515
+ export const light_purple_active = n25
1516
+ export const light_purple_SliderTrackActive = n25
1517
+ export const light_purple_alt1_SliderTrackActive = n25
1518
+ export const light_purple_alt2_SliderTrackActive = n25
1519
+ export const light_purple_active_SliderTrackActive = n25
1520
+ const n26 = t([
1521
+ [12, 62],
1522
+ [13, 63],
1523
+ [14, 64],
1524
+ [15, 65],
1525
+ [16, 61],
1526
+ [23, 65],
1527
+ [24, 67],
1528
+ [25, 64],
1529
+ [26, 65],
1530
+ [28, 65],
1531
+ ])
1532
+
1533
+ export const light_pink_alt1 = n26
1534
+ export const light_pink_ListItem = n26
1535
+ export const light_pink_Card = n26
1536
+ export const light_pink_DrawerFrame = n26
1537
+ export const light_pink_Progress = n26
1538
+ export const light_pink_TooltipArrow = n26
1539
+ export const light_pink_SliderTrack = n26
1540
+ export const light_pink_alt1_ListItem = n26
1541
+ export const light_pink_alt1_Card = n26
1542
+ export const light_pink_alt1_DrawerFrame = n26
1543
+ export const light_pink_alt1_Progress = n26
1544
+ export const light_pink_alt1_TooltipArrow = n26
1545
+ export const light_pink_alt1_SliderTrack = n26
1546
+ export const light_pink_alt2_ListItem = n26
1547
+ export const light_pink_alt2_Card = n26
1548
+ export const light_pink_alt2_DrawerFrame = n26
1549
+ export const light_pink_alt2_Progress = n26
1550
+ export const light_pink_alt2_TooltipArrow = n26
1551
+ export const light_pink_alt2_SliderTrack = n26
1552
+ export const light_pink_active_ListItem = n26
1553
+ export const light_pink_active_Card = n26
1554
+ export const light_pink_active_DrawerFrame = n26
1555
+ export const light_pink_active_Progress = n26
1556
+ export const light_pink_active_TooltipArrow = n26
1557
+ export const light_pink_active_SliderTrack = n26
1558
+ const n27 = t([
1559
+ [12, 63],
1560
+ [13, 64],
1561
+ [14, 65],
1562
+ [15, 67],
1563
+ [16, 62],
1564
+ [23, 67],
1565
+ [24, 68],
1566
+ [25, 65],
1567
+ [26, 67],
1568
+ [28, 67],
1569
+ ])
1570
+
1571
+ export const light_pink_alt2 = n27
1572
+ export const light_pink_Button = n27
1573
+ export const light_pink_Checkbox = n27
1574
+ export const light_pink_Switch = n27
1575
+ export const light_pink_TooltipContent = n27
1576
+ export const light_pink_RadioGroupItem = n27
1577
+ export const light_pink_Input = n27
1578
+ export const light_pink_TextArea = n27
1579
+ export const light_pink_alt1_Button = n27
1580
+ export const light_pink_alt1_Checkbox = n27
1581
+ export const light_pink_alt1_Switch = n27
1582
+ export const light_pink_alt1_TooltipContent = n27
1583
+ export const light_pink_alt1_RadioGroupItem = n27
1584
+ export const light_pink_alt1_Input = n27
1585
+ export const light_pink_alt1_TextArea = n27
1586
+ export const light_pink_alt2_Button = n27
1587
+ export const light_pink_alt2_Checkbox = n27
1588
+ export const light_pink_alt2_Switch = n27
1589
+ export const light_pink_alt2_TooltipContent = n27
1590
+ export const light_pink_alt2_RadioGroupItem = n27
1591
+ export const light_pink_alt2_Input = n27
1592
+ export const light_pink_alt2_TextArea = n27
1593
+ export const light_pink_active_Button = n27
1594
+ export const light_pink_active_Checkbox = n27
1595
+ export const light_pink_active_Switch = n27
1596
+ export const light_pink_active_TooltipContent = n27
1597
+ export const light_pink_active_RadioGroupItem = n27
1598
+ export const light_pink_active_Input = n27
1599
+ export const light_pink_active_TextArea = n27
1600
+ const n28 = t([
1601
+ [12, 64],
1602
+ [13, 65],
1603
+ [14, 67],
1604
+ [15, 68],
1605
+ [16, 63],
1606
+ [23, 68],
1607
+ [24, 69],
1608
+ [25, 67],
1609
+ [26, 68],
1610
+ [28, 68],
1611
+ ])
1612
+
1613
+ export const light_pink_active = n28
1614
+ export const light_pink_SliderTrackActive = n28
1615
+ export const light_pink_alt1_SliderTrackActive = n28
1616
+ export const light_pink_alt2_SliderTrackActive = n28
1617
+ export const light_pink_active_SliderTrackActive = n28
1618
+ const n29 = t([
1619
+ [12, 86],
1620
+ [13, 87],
1621
+ [14, 88],
1622
+ [15, 89],
1623
+ [16, 85],
1624
+ [23, 89],
1625
+ [24, 91],
1626
+ [25, 88],
1627
+ [26, 89],
1628
+ [28, 89],
1629
+ ])
1630
+
1631
+ export const light_red_alt1 = n29
1632
+ export const light_red_ListItem = n29
1633
+ export const light_red_Card = n29
1634
+ export const light_red_DrawerFrame = n29
1635
+ export const light_red_Progress = n29
1636
+ export const light_red_TooltipArrow = n29
1637
+ export const light_red_SliderTrack = n29
1638
+ export const light_red_alt1_ListItem = n29
1639
+ export const light_red_alt1_Card = n29
1640
+ export const light_red_alt1_DrawerFrame = n29
1641
+ export const light_red_alt1_Progress = n29
1642
+ export const light_red_alt1_TooltipArrow = n29
1643
+ export const light_red_alt1_SliderTrack = n29
1644
+ export const light_red_alt2_ListItem = n29
1645
+ export const light_red_alt2_Card = n29
1646
+ export const light_red_alt2_DrawerFrame = n29
1647
+ export const light_red_alt2_Progress = n29
1648
+ export const light_red_alt2_TooltipArrow = n29
1649
+ export const light_red_alt2_SliderTrack = n29
1650
+ export const light_red_active_ListItem = n29
1651
+ export const light_red_active_Card = n29
1652
+ export const light_red_active_DrawerFrame = n29
1653
+ export const light_red_active_Progress = n29
1654
+ export const light_red_active_TooltipArrow = n29
1655
+ export const light_red_active_SliderTrack = n29
1656
+ const n30 = t([
1657
+ [12, 87],
1658
+ [13, 88],
1659
+ [14, 89],
1660
+ [15, 91],
1661
+ [16, 86],
1662
+ [23, 91],
1663
+ [24, 92],
1664
+ [25, 89],
1665
+ [26, 91],
1666
+ [28, 91],
1667
+ ])
1668
+
1669
+ export const light_red_alt2 = n30
1670
+ export const light_red_Button = n30
1671
+ export const light_red_Checkbox = n30
1672
+ export const light_red_Switch = n30
1673
+ export const light_red_TooltipContent = n30
1674
+ export const light_red_RadioGroupItem = n30
1675
+ export const light_red_Input = n30
1676
+ export const light_red_TextArea = n30
1677
+ export const light_red_alt1_Button = n30
1678
+ export const light_red_alt1_Checkbox = n30
1679
+ export const light_red_alt1_Switch = n30
1680
+ export const light_red_alt1_TooltipContent = n30
1681
+ export const light_red_alt1_RadioGroupItem = n30
1682
+ export const light_red_alt1_Input = n30
1683
+ export const light_red_alt1_TextArea = n30
1684
+ export const light_red_alt2_Button = n30
1685
+ export const light_red_alt2_Checkbox = n30
1686
+ export const light_red_alt2_Switch = n30
1687
+ export const light_red_alt2_TooltipContent = n30
1688
+ export const light_red_alt2_RadioGroupItem = n30
1689
+ export const light_red_alt2_Input = n30
1690
+ export const light_red_alt2_TextArea = n30
1691
+ export const light_red_active_Button = n30
1692
+ export const light_red_active_Checkbox = n30
1693
+ export const light_red_active_Switch = n30
1694
+ export const light_red_active_TooltipContent = n30
1695
+ export const light_red_active_RadioGroupItem = n30
1696
+ export const light_red_active_Input = n30
1697
+ export const light_red_active_TextArea = n30
1698
+ const n31 = t([
1699
+ [12, 88],
1700
+ [13, 89],
1701
+ [14, 91],
1702
+ [15, 92],
1703
+ [16, 87],
1704
+ [23, 92],
1705
+ [24, 93],
1706
+ [25, 91],
1707
+ [26, 92],
1708
+ [28, 92],
1709
+ ])
1710
+
1711
+ export const light_red_active = n31
1712
+ export const light_red_SliderTrackActive = n31
1713
+ export const light_red_alt1_SliderTrackActive = n31
1714
+ export const light_red_alt2_SliderTrackActive = n31
1715
+ export const light_red_active_SliderTrackActive = n31
1716
+ const n32 = t([
1717
+ [12, 28],
1718
+ [13, 29],
1719
+ [14, 30],
1720
+ [15, 31],
1721
+ [16, 27],
1722
+ [23, 31],
1723
+ [24, 33],
1724
+ [25, 30],
1725
+ [26, 31],
1726
+ [28, 31],
1727
+ ])
1728
+
1729
+ export const light_gray_alt1 = n32
1730
+ export const light_gray_ListItem = n32
1731
+ export const light_gray_Card = n32
1732
+ export const light_gray_DrawerFrame = n32
1733
+ export const light_gray_Progress = n32
1734
+ export const light_gray_TooltipArrow = n32
1735
+ export const light_gray_SliderTrack = n32
1736
+ export const light_gray_alt1_ListItem = n32
1737
+ export const light_gray_alt1_Card = n32
1738
+ export const light_gray_alt1_DrawerFrame = n32
1739
+ export const light_gray_alt1_Progress = n32
1740
+ export const light_gray_alt1_TooltipArrow = n32
1741
+ export const light_gray_alt1_SliderTrack = n32
1742
+ export const light_gray_alt2_ListItem = n32
1743
+ export const light_gray_alt2_Card = n32
1744
+ export const light_gray_alt2_DrawerFrame = n32
1745
+ export const light_gray_alt2_Progress = n32
1746
+ export const light_gray_alt2_TooltipArrow = n32
1747
+ export const light_gray_alt2_SliderTrack = n32
1748
+ export const light_gray_active_ListItem = n32
1749
+ export const light_gray_active_Card = n32
1750
+ export const light_gray_active_DrawerFrame = n32
1751
+ export const light_gray_active_Progress = n32
1752
+ export const light_gray_active_TooltipArrow = n32
1753
+ export const light_gray_active_SliderTrack = n32
1754
+ const n33 = t([
1755
+ [12, 29],
1756
+ [13, 30],
1757
+ [14, 31],
1758
+ [15, 33],
1759
+ [16, 28],
1760
+ [23, 33],
1761
+ [24, 8],
1762
+ [25, 31],
1763
+ [26, 33],
1764
+ [28, 33],
1765
+ ])
1766
+
1767
+ export const light_gray_alt2 = n33
1768
+ export const light_gray_Button = n33
1769
+ export const light_gray_Checkbox = n33
1770
+ export const light_gray_Switch = n33
1771
+ export const light_gray_TooltipContent = n33
1772
+ export const light_gray_RadioGroupItem = n33
1773
+ export const light_gray_Input = n33
1774
+ export const light_gray_TextArea = n33
1775
+ export const light_gray_alt1_Button = n33
1776
+ export const light_gray_alt1_Checkbox = n33
1777
+ export const light_gray_alt1_Switch = n33
1778
+ export const light_gray_alt1_TooltipContent = n33
1779
+ export const light_gray_alt1_RadioGroupItem = n33
1780
+ export const light_gray_alt1_Input = n33
1781
+ export const light_gray_alt1_TextArea = n33
1782
+ export const light_gray_alt2_Button = n33
1783
+ export const light_gray_alt2_Checkbox = n33
1784
+ export const light_gray_alt2_Switch = n33
1785
+ export const light_gray_alt2_TooltipContent = n33
1786
+ export const light_gray_alt2_RadioGroupItem = n33
1787
+ export const light_gray_alt2_Input = n33
1788
+ export const light_gray_alt2_TextArea = n33
1789
+ export const light_gray_active_Button = n33
1790
+ export const light_gray_active_Checkbox = n33
1791
+ export const light_gray_active_Switch = n33
1792
+ export const light_gray_active_TooltipContent = n33
1793
+ export const light_gray_active_RadioGroupItem = n33
1794
+ export const light_gray_active_Input = n33
1795
+ export const light_gray_active_TextArea = n33
1796
+ const n34 = t([
1797
+ [12, 30],
1798
+ [13, 31],
1799
+ [14, 33],
1800
+ [15, 8],
1801
+ [16, 29],
1802
+ [23, 8],
1803
+ [24, 34],
1804
+ [25, 33],
1805
+ [26, 8],
1806
+ [28, 8],
1807
+ ])
1808
+
1809
+ export const light_gray_active = n34
1810
+ export const light_gray_SliderTrackActive = n34
1811
+ export const light_gray_alt1_SliderTrackActive = n34
1812
+ export const light_gray_alt2_SliderTrackActive = n34
1813
+ export const light_gray_active_SliderTrackActive = n34
1814
+ const n35 = t([
1815
+ [12, 156],
1816
+ [13, 157],
1817
+ [14, 158],
1818
+ [15, 159],
1819
+ [16, 155],
1820
+ [23, 159],
1821
+ [24, 161],
1822
+ [25, 158],
1823
+ [26, 159],
1824
+ [28, 159],
1825
+ ])
1826
+
1827
+ export const dark_orange_alt1 = n35
1828
+ export const dark_orange_ListItem = n35
1829
+ export const dark_orange_Card = n35
1830
+ export const dark_orange_DrawerFrame = n35
1831
+ export const dark_orange_Progress = n35
1832
+ export const dark_orange_TooltipArrow = n35
1833
+ export const dark_orange_SliderTrack = n35
1834
+ export const dark_orange_alt1_ListItem = n35
1835
+ export const dark_orange_alt1_Card = n35
1836
+ export const dark_orange_alt1_DrawerFrame = n35
1837
+ export const dark_orange_alt1_Progress = n35
1838
+ export const dark_orange_alt1_TooltipArrow = n35
1839
+ export const dark_orange_alt1_SliderTrack = n35
1840
+ export const dark_orange_alt2_ListItem = n35
1841
+ export const dark_orange_alt2_Card = n35
1842
+ export const dark_orange_alt2_DrawerFrame = n35
1843
+ export const dark_orange_alt2_Progress = n35
1844
+ export const dark_orange_alt2_TooltipArrow = n35
1845
+ export const dark_orange_alt2_SliderTrack = n35
1846
+ export const dark_orange_active_ListItem = n35
1847
+ export const dark_orange_active_Card = n35
1848
+ export const dark_orange_active_DrawerFrame = n35
1849
+ export const dark_orange_active_Progress = n35
1850
+ export const dark_orange_active_TooltipArrow = n35
1851
+ export const dark_orange_active_SliderTrack = n35
1852
+ const n36 = t([
1853
+ [12, 157],
1854
+ [13, 158],
1855
+ [14, 159],
1856
+ [15, 161],
1857
+ [16, 156],
1858
+ [23, 161],
1859
+ [24, 56],
1860
+ [25, 159],
1861
+ [26, 161],
1862
+ [28, 161],
1863
+ ])
1864
+
1865
+ export const dark_orange_alt2 = n36
1866
+ export const dark_orange_Button = n36
1867
+ export const dark_orange_Checkbox = n36
1868
+ export const dark_orange_Switch = n36
1869
+ export const dark_orange_TooltipContent = n36
1870
+ export const dark_orange_RadioGroupItem = n36
1871
+ export const dark_orange_Input = n36
1872
+ export const dark_orange_TextArea = n36
1873
+ export const dark_orange_alt1_Button = n36
1874
+ export const dark_orange_alt1_Checkbox = n36
1875
+ export const dark_orange_alt1_Switch = n36
1876
+ export const dark_orange_alt1_TooltipContent = n36
1877
+ export const dark_orange_alt1_RadioGroupItem = n36
1878
+ export const dark_orange_alt1_Input = n36
1879
+ export const dark_orange_alt1_TextArea = n36
1880
+ export const dark_orange_alt2_Button = n36
1881
+ export const dark_orange_alt2_Checkbox = n36
1882
+ export const dark_orange_alt2_Switch = n36
1883
+ export const dark_orange_alt2_TooltipContent = n36
1884
+ export const dark_orange_alt2_RadioGroupItem = n36
1885
+ export const dark_orange_alt2_Input = n36
1886
+ export const dark_orange_alt2_TextArea = n36
1887
+ export const dark_orange_active_Button = n36
1888
+ export const dark_orange_active_Checkbox = n36
1889
+ export const dark_orange_active_Switch = n36
1890
+ export const dark_orange_active_TooltipContent = n36
1891
+ export const dark_orange_active_RadioGroupItem = n36
1892
+ export const dark_orange_active_Input = n36
1893
+ export const dark_orange_active_TextArea = n36
1894
+ const n37 = t([
1895
+ [12, 158],
1896
+ [13, 159],
1897
+ [14, 161],
1898
+ [15, 56],
1899
+ [16, 157],
1900
+ [23, 56],
1901
+ [24, 162],
1902
+ [25, 161],
1903
+ [26, 56],
1904
+ [28, 56],
1905
+ ])
1906
+
1907
+ export const dark_orange_active = n37
1908
+ export const dark_orange_SliderTrackActive = n37
1909
+ export const dark_orange_alt1_SliderTrackActive = n37
1910
+ export const dark_orange_alt2_SliderTrackActive = n37
1911
+ export const dark_orange_active_SliderTrackActive = n37
1912
+ const n38 = t([
1913
+ [12, 200],
1914
+ [13, 201],
1915
+ [14, 202],
1916
+ [15, 203],
1917
+ [16, 199],
1918
+ [23, 203],
1919
+ [24, 205],
1920
+ [25, 202],
1921
+ [26, 203],
1922
+ [28, 203],
1923
+ ])
1924
+
1925
+ export const dark_yellow_alt1 = n38
1926
+ export const dark_yellow_ListItem = n38
1927
+ export const dark_yellow_Card = n38
1928
+ export const dark_yellow_DrawerFrame = n38
1929
+ export const dark_yellow_Progress = n38
1930
+ export const dark_yellow_TooltipArrow = n38
1931
+ export const dark_yellow_SliderTrack = n38
1932
+ export const dark_yellow_alt1_ListItem = n38
1933
+ export const dark_yellow_alt1_Card = n38
1934
+ export const dark_yellow_alt1_DrawerFrame = n38
1935
+ export const dark_yellow_alt1_Progress = n38
1936
+ export const dark_yellow_alt1_TooltipArrow = n38
1937
+ export const dark_yellow_alt1_SliderTrack = n38
1938
+ export const dark_yellow_alt2_ListItem = n38
1939
+ export const dark_yellow_alt2_Card = n38
1940
+ export const dark_yellow_alt2_DrawerFrame = n38
1941
+ export const dark_yellow_alt2_Progress = n38
1942
+ export const dark_yellow_alt2_TooltipArrow = n38
1943
+ export const dark_yellow_alt2_SliderTrack = n38
1944
+ export const dark_yellow_active_ListItem = n38
1945
+ export const dark_yellow_active_Card = n38
1946
+ export const dark_yellow_active_DrawerFrame = n38
1947
+ export const dark_yellow_active_Progress = n38
1948
+ export const dark_yellow_active_TooltipArrow = n38
1949
+ export const dark_yellow_active_SliderTrack = n38
1950
+ const n39 = t([
1951
+ [12, 201],
1952
+ [13, 202],
1953
+ [14, 203],
1954
+ [15, 205],
1955
+ [16, 200],
1956
+ [23, 205],
1957
+ [24, 104],
1958
+ [25, 203],
1959
+ [26, 205],
1960
+ [28, 205],
1961
+ ])
1962
+
1963
+ export const dark_yellow_alt2 = n39
1964
+ export const dark_yellow_Button = n39
1965
+ export const dark_yellow_Checkbox = n39
1966
+ export const dark_yellow_Switch = n39
1967
+ export const dark_yellow_TooltipContent = n39
1968
+ export const dark_yellow_RadioGroupItem = n39
1969
+ export const dark_yellow_Input = n39
1970
+ export const dark_yellow_TextArea = n39
1971
+ export const dark_yellow_alt1_Button = n39
1972
+ export const dark_yellow_alt1_Checkbox = n39
1973
+ export const dark_yellow_alt1_Switch = n39
1974
+ export const dark_yellow_alt1_TooltipContent = n39
1975
+ export const dark_yellow_alt1_RadioGroupItem = n39
1976
+ export const dark_yellow_alt1_Input = n39
1977
+ export const dark_yellow_alt1_TextArea = n39
1978
+ export const dark_yellow_alt2_Button = n39
1979
+ export const dark_yellow_alt2_Checkbox = n39
1980
+ export const dark_yellow_alt2_Switch = n39
1981
+ export const dark_yellow_alt2_TooltipContent = n39
1982
+ export const dark_yellow_alt2_RadioGroupItem = n39
1983
+ export const dark_yellow_alt2_Input = n39
1984
+ export const dark_yellow_alt2_TextArea = n39
1985
+ export const dark_yellow_active_Button = n39
1986
+ export const dark_yellow_active_Checkbox = n39
1987
+ export const dark_yellow_active_Switch = n39
1988
+ export const dark_yellow_active_TooltipContent = n39
1989
+ export const dark_yellow_active_RadioGroupItem = n39
1990
+ export const dark_yellow_active_Input = n39
1991
+ export const dark_yellow_active_TextArea = n39
1992
+ const n40 = t([
1993
+ [12, 202],
1994
+ [13, 203],
1995
+ [14, 205],
1996
+ [15, 104],
1997
+ [16, 201],
1998
+ [23, 104],
1999
+ [24, 206],
2000
+ [25, 205],
2001
+ [26, 104],
2002
+ [28, 104],
2003
+ ])
2004
+
2005
+ export const dark_yellow_active = n40
2006
+ export const dark_yellow_SliderTrackActive = n40
2007
+ export const dark_yellow_alt1_SliderTrackActive = n40
2008
+ export const dark_yellow_alt2_SliderTrackActive = n40
2009
+ export const dark_yellow_active_SliderTrackActive = n40
2010
+ const n41 = t([
2011
+ [12, 145],
2012
+ [13, 146],
2013
+ [14, 147],
2014
+ [15, 148],
2015
+ [16, 144],
2016
+ [23, 148],
2017
+ [24, 150],
2018
+ [25, 147],
2019
+ [26, 148],
2020
+ [28, 148],
2021
+ ])
2022
+
2023
+ export const dark_green_alt1 = n41
2024
+ export const dark_green_ListItem = n41
2025
+ export const dark_green_Card = n41
2026
+ export const dark_green_DrawerFrame = n41
2027
+ export const dark_green_Progress = n41
2028
+ export const dark_green_TooltipArrow = n41
2029
+ export const dark_green_SliderTrack = n41
2030
+ export const dark_green_alt1_ListItem = n41
2031
+ export const dark_green_alt1_Card = n41
2032
+ export const dark_green_alt1_DrawerFrame = n41
2033
+ export const dark_green_alt1_Progress = n41
2034
+ export const dark_green_alt1_TooltipArrow = n41
2035
+ export const dark_green_alt1_SliderTrack = n41
2036
+ export const dark_green_alt2_ListItem = n41
2037
+ export const dark_green_alt2_Card = n41
2038
+ export const dark_green_alt2_DrawerFrame = n41
2039
+ export const dark_green_alt2_Progress = n41
2040
+ export const dark_green_alt2_TooltipArrow = n41
2041
+ export const dark_green_alt2_SliderTrack = n41
2042
+ export const dark_green_active_ListItem = n41
2043
+ export const dark_green_active_Card = n41
2044
+ export const dark_green_active_DrawerFrame = n41
2045
+ export const dark_green_active_Progress = n41
2046
+ export const dark_green_active_TooltipArrow = n41
2047
+ export const dark_green_active_SliderTrack = n41
2048
+ const n42 = t([
2049
+ [12, 146],
2050
+ [13, 147],
2051
+ [14, 148],
2052
+ [15, 150],
2053
+ [16, 145],
2054
+ [23, 150],
2055
+ [24, 44],
2056
+ [25, 148],
2057
+ [26, 150],
2058
+ [28, 150],
2059
+ ])
2060
+
2061
+ export const dark_green_alt2 = n42
2062
+ export const dark_green_Button = n42
2063
+ export const dark_green_Checkbox = n42
2064
+ export const dark_green_Switch = n42
2065
+ export const dark_green_TooltipContent = n42
2066
+ export const dark_green_RadioGroupItem = n42
2067
+ export const dark_green_Input = n42
2068
+ export const dark_green_TextArea = n42
2069
+ export const dark_green_alt1_Button = n42
2070
+ export const dark_green_alt1_Checkbox = n42
2071
+ export const dark_green_alt1_Switch = n42
2072
+ export const dark_green_alt1_TooltipContent = n42
2073
+ export const dark_green_alt1_RadioGroupItem = n42
2074
+ export const dark_green_alt1_Input = n42
2075
+ export const dark_green_alt1_TextArea = n42
2076
+ export const dark_green_alt2_Button = n42
2077
+ export const dark_green_alt2_Checkbox = n42
2078
+ export const dark_green_alt2_Switch = n42
2079
+ export const dark_green_alt2_TooltipContent = n42
2080
+ export const dark_green_alt2_RadioGroupItem = n42
2081
+ export const dark_green_alt2_Input = n42
2082
+ export const dark_green_alt2_TextArea = n42
2083
+ export const dark_green_active_Button = n42
2084
+ export const dark_green_active_Checkbox = n42
2085
+ export const dark_green_active_Switch = n42
2086
+ export const dark_green_active_TooltipContent = n42
2087
+ export const dark_green_active_RadioGroupItem = n42
2088
+ export const dark_green_active_Input = n42
2089
+ export const dark_green_active_TextArea = n42
2090
+ const n43 = t([
2091
+ [12, 147],
2092
+ [13, 148],
2093
+ [14, 150],
2094
+ [15, 44],
2095
+ [16, 146],
2096
+ [23, 44],
2097
+ [24, 151],
2098
+ [25, 150],
2099
+ [26, 44],
2100
+ [28, 44],
2101
+ ])
2102
+
2103
+ export const dark_green_active = n43
2104
+ export const dark_green_SliderTrackActive = n43
2105
+ export const dark_green_alt1_SliderTrackActive = n43
2106
+ export const dark_green_alt2_SliderTrackActive = n43
2107
+ export const dark_green_active_SliderTrackActive = n43
2108
+ const n44 = t([
2109
+ [12, 123],
2110
+ [13, 124],
2111
+ [14, 125],
2112
+ [15, 126],
2113
+ [16, 122],
2114
+ [23, 126],
2115
+ [24, 128],
2116
+ [25, 125],
2117
+ [26, 126],
2118
+ [28, 126],
2119
+ ])
2120
+
2121
+ export const dark_blue_alt1 = n44
2122
+ export const dark_blue_ListItem = n44
2123
+ export const dark_blue_Card = n44
2124
+ export const dark_blue_DrawerFrame = n44
2125
+ export const dark_blue_Progress = n44
2126
+ export const dark_blue_TooltipArrow = n44
2127
+ export const dark_blue_SliderTrack = n44
2128
+ export const dark_blue_alt1_ListItem = n44
2129
+ export const dark_blue_alt1_Card = n44
2130
+ export const dark_blue_alt1_DrawerFrame = n44
2131
+ export const dark_blue_alt1_Progress = n44
2132
+ export const dark_blue_alt1_TooltipArrow = n44
2133
+ export const dark_blue_alt1_SliderTrack = n44
2134
+ export const dark_blue_alt2_ListItem = n44
2135
+ export const dark_blue_alt2_Card = n44
2136
+ export const dark_blue_alt2_DrawerFrame = n44
2137
+ export const dark_blue_alt2_Progress = n44
2138
+ export const dark_blue_alt2_TooltipArrow = n44
2139
+ export const dark_blue_alt2_SliderTrack = n44
2140
+ export const dark_blue_active_ListItem = n44
2141
+ export const dark_blue_active_Card = n44
2142
+ export const dark_blue_active_DrawerFrame = n44
2143
+ export const dark_blue_active_Progress = n44
2144
+ export const dark_blue_active_TooltipArrow = n44
2145
+ export const dark_blue_active_SliderTrack = n44
2146
+ const n45 = t([
2147
+ [12, 124],
2148
+ [13, 125],
2149
+ [14, 126],
2150
+ [15, 128],
2151
+ [16, 123],
2152
+ [23, 128],
2153
+ [24, 22],
2154
+ [25, 126],
2155
+ [26, 128],
2156
+ [28, 128],
2157
+ ])
2158
+
2159
+ export const dark_blue_alt2 = n45
2160
+ export const dark_blue_Button = n45
2161
+ export const dark_blue_Checkbox = n45
2162
+ export const dark_blue_Switch = n45
2163
+ export const dark_blue_TooltipContent = n45
2164
+ export const dark_blue_RadioGroupItem = n45
2165
+ export const dark_blue_Input = n45
2166
+ export const dark_blue_TextArea = n45
2167
+ export const dark_blue_alt1_Button = n45
2168
+ export const dark_blue_alt1_Checkbox = n45
2169
+ export const dark_blue_alt1_Switch = n45
2170
+ export const dark_blue_alt1_TooltipContent = n45
2171
+ export const dark_blue_alt1_RadioGroupItem = n45
2172
+ export const dark_blue_alt1_Input = n45
2173
+ export const dark_blue_alt1_TextArea = n45
2174
+ export const dark_blue_alt2_Button = n45
2175
+ export const dark_blue_alt2_Checkbox = n45
2176
+ export const dark_blue_alt2_Switch = n45
2177
+ export const dark_blue_alt2_TooltipContent = n45
2178
+ export const dark_blue_alt2_RadioGroupItem = n45
2179
+ export const dark_blue_alt2_Input = n45
2180
+ export const dark_blue_alt2_TextArea = n45
2181
+ export const dark_blue_active_Button = n45
2182
+ export const dark_blue_active_Checkbox = n45
2183
+ export const dark_blue_active_Switch = n45
2184
+ export const dark_blue_active_TooltipContent = n45
2185
+ export const dark_blue_active_RadioGroupItem = n45
2186
+ export const dark_blue_active_Input = n45
2187
+ export const dark_blue_active_TextArea = n45
2188
+ const n46 = t([
2189
+ [12, 125],
2190
+ [13, 126],
2191
+ [14, 128],
2192
+ [15, 22],
2193
+ [16, 124],
2194
+ [23, 22],
2195
+ [24, 129],
2196
+ [25, 128],
2197
+ [26, 22],
2198
+ [28, 22],
2199
+ ])
2200
+
2201
+ export const dark_blue_active = n46
2202
+ export const dark_blue_SliderTrackActive = n46
2203
+ export const dark_blue_alt1_SliderTrackActive = n46
2204
+ export const dark_blue_alt2_SliderTrackActive = n46
2205
+ export const dark_blue_active_SliderTrackActive = n46
2206
+ const n47 = t([
2207
+ [12, 178],
2208
+ [13, 179],
2209
+ [14, 180],
2210
+ [15, 181],
2211
+ [16, 177],
2212
+ [23, 181],
2213
+ [24, 183],
2214
+ [25, 180],
2215
+ [26, 181],
2216
+ [28, 181],
2217
+ ])
2218
+
2219
+ export const dark_purple_alt1 = n47
2220
+ export const dark_purple_ListItem = n47
2221
+ export const dark_purple_Card = n47
2222
+ export const dark_purple_DrawerFrame = n47
2223
+ export const dark_purple_Progress = n47
2224
+ export const dark_purple_TooltipArrow = n47
2225
+ export const dark_purple_SliderTrack = n47
2226
+ export const dark_purple_alt1_ListItem = n47
2227
+ export const dark_purple_alt1_Card = n47
2228
+ export const dark_purple_alt1_DrawerFrame = n47
2229
+ export const dark_purple_alt1_Progress = n47
2230
+ export const dark_purple_alt1_TooltipArrow = n47
2231
+ export const dark_purple_alt1_SliderTrack = n47
2232
+ export const dark_purple_alt2_ListItem = n47
2233
+ export const dark_purple_alt2_Card = n47
2234
+ export const dark_purple_alt2_DrawerFrame = n47
2235
+ export const dark_purple_alt2_Progress = n47
2236
+ export const dark_purple_alt2_TooltipArrow = n47
2237
+ export const dark_purple_alt2_SliderTrack = n47
2238
+ export const dark_purple_active_ListItem = n47
2239
+ export const dark_purple_active_Card = n47
2240
+ export const dark_purple_active_DrawerFrame = n47
2241
+ export const dark_purple_active_Progress = n47
2242
+ export const dark_purple_active_TooltipArrow = n47
2243
+ export const dark_purple_active_SliderTrack = n47
2244
+ const n48 = t([
2245
+ [12, 179],
2246
+ [13, 180],
2247
+ [14, 181],
2248
+ [15, 183],
2249
+ [16, 178],
2250
+ [23, 183],
2251
+ [24, 80],
2252
+ [25, 181],
2253
+ [26, 183],
2254
+ [28, 183],
2255
+ ])
2256
+
2257
+ export const dark_purple_alt2 = n48
2258
+ export const dark_purple_Button = n48
2259
+ export const dark_purple_Checkbox = n48
2260
+ export const dark_purple_Switch = n48
2261
+ export const dark_purple_TooltipContent = n48
2262
+ export const dark_purple_RadioGroupItem = n48
2263
+ export const dark_purple_Input = n48
2264
+ export const dark_purple_TextArea = n48
2265
+ export const dark_purple_alt1_Button = n48
2266
+ export const dark_purple_alt1_Checkbox = n48
2267
+ export const dark_purple_alt1_Switch = n48
2268
+ export const dark_purple_alt1_TooltipContent = n48
2269
+ export const dark_purple_alt1_RadioGroupItem = n48
2270
+ export const dark_purple_alt1_Input = n48
2271
+ export const dark_purple_alt1_TextArea = n48
2272
+ export const dark_purple_alt2_Button = n48
2273
+ export const dark_purple_alt2_Checkbox = n48
2274
+ export const dark_purple_alt2_Switch = n48
2275
+ export const dark_purple_alt2_TooltipContent = n48
2276
+ export const dark_purple_alt2_RadioGroupItem = n48
2277
+ export const dark_purple_alt2_Input = n48
2278
+ export const dark_purple_alt2_TextArea = n48
2279
+ export const dark_purple_active_Button = n48
2280
+ export const dark_purple_active_Checkbox = n48
2281
+ export const dark_purple_active_Switch = n48
2282
+ export const dark_purple_active_TooltipContent = n48
2283
+ export const dark_purple_active_RadioGroupItem = n48
2284
+ export const dark_purple_active_Input = n48
2285
+ export const dark_purple_active_TextArea = n48
2286
+ const n49 = t([
2287
+ [12, 180],
2288
+ [13, 181],
2289
+ [14, 183],
2290
+ [15, 80],
2291
+ [16, 179],
2292
+ [23, 80],
2293
+ [24, 184],
2294
+ [25, 183],
2295
+ [26, 80],
2296
+ [28, 80],
2297
+ ])
2298
+
2299
+ export const dark_purple_active = n49
2300
+ export const dark_purple_SliderTrackActive = n49
2301
+ export const dark_purple_alt1_SliderTrackActive = n49
2302
+ export const dark_purple_alt2_SliderTrackActive = n49
2303
+ export const dark_purple_active_SliderTrackActive = n49
2304
+ const n50 = t([
2305
+ [12, 167],
2306
+ [13, 168],
2307
+ [14, 169],
2308
+ [15, 170],
2309
+ [16, 166],
2310
+ [23, 170],
2311
+ [24, 172],
2312
+ [25, 169],
2313
+ [26, 170],
2314
+ [28, 170],
2315
+ ])
2316
+
2317
+ export const dark_pink_alt1 = n50
2318
+ export const dark_pink_ListItem = n50
2319
+ export const dark_pink_Card = n50
2320
+ export const dark_pink_DrawerFrame = n50
2321
+ export const dark_pink_Progress = n50
2322
+ export const dark_pink_TooltipArrow = n50
2323
+ export const dark_pink_SliderTrack = n50
2324
+ export const dark_pink_alt1_ListItem = n50
2325
+ export const dark_pink_alt1_Card = n50
2326
+ export const dark_pink_alt1_DrawerFrame = n50
2327
+ export const dark_pink_alt1_Progress = n50
2328
+ export const dark_pink_alt1_TooltipArrow = n50
2329
+ export const dark_pink_alt1_SliderTrack = n50
2330
+ export const dark_pink_alt2_ListItem = n50
2331
+ export const dark_pink_alt2_Card = n50
2332
+ export const dark_pink_alt2_DrawerFrame = n50
2333
+ export const dark_pink_alt2_Progress = n50
2334
+ export const dark_pink_alt2_TooltipArrow = n50
2335
+ export const dark_pink_alt2_SliderTrack = n50
2336
+ export const dark_pink_active_ListItem = n50
2337
+ export const dark_pink_active_Card = n50
2338
+ export const dark_pink_active_DrawerFrame = n50
2339
+ export const dark_pink_active_Progress = n50
2340
+ export const dark_pink_active_TooltipArrow = n50
2341
+ export const dark_pink_active_SliderTrack = n50
2342
+ const n51 = t([
2343
+ [12, 168],
2344
+ [13, 169],
2345
+ [14, 170],
2346
+ [15, 172],
2347
+ [16, 167],
2348
+ [23, 172],
2349
+ [24, 68],
2350
+ [25, 170],
2351
+ [26, 172],
2352
+ [28, 172],
2353
+ ])
2354
+
2355
+ export const dark_pink_alt2 = n51
2356
+ export const dark_pink_Button = n51
2357
+ export const dark_pink_Checkbox = n51
2358
+ export const dark_pink_Switch = n51
2359
+ export const dark_pink_TooltipContent = n51
2360
+ export const dark_pink_RadioGroupItem = n51
2361
+ export const dark_pink_Input = n51
2362
+ export const dark_pink_TextArea = n51
2363
+ export const dark_pink_alt1_Button = n51
2364
+ export const dark_pink_alt1_Checkbox = n51
2365
+ export const dark_pink_alt1_Switch = n51
2366
+ export const dark_pink_alt1_TooltipContent = n51
2367
+ export const dark_pink_alt1_RadioGroupItem = n51
2368
+ export const dark_pink_alt1_Input = n51
2369
+ export const dark_pink_alt1_TextArea = n51
2370
+ export const dark_pink_alt2_Button = n51
2371
+ export const dark_pink_alt2_Checkbox = n51
2372
+ export const dark_pink_alt2_Switch = n51
2373
+ export const dark_pink_alt2_TooltipContent = n51
2374
+ export const dark_pink_alt2_RadioGroupItem = n51
2375
+ export const dark_pink_alt2_Input = n51
2376
+ export const dark_pink_alt2_TextArea = n51
2377
+ export const dark_pink_active_Button = n51
2378
+ export const dark_pink_active_Checkbox = n51
2379
+ export const dark_pink_active_Switch = n51
2380
+ export const dark_pink_active_TooltipContent = n51
2381
+ export const dark_pink_active_RadioGroupItem = n51
2382
+ export const dark_pink_active_Input = n51
2383
+ export const dark_pink_active_TextArea = n51
2384
+ const n52 = t([
2385
+ [12, 169],
2386
+ [13, 170],
2387
+ [14, 172],
2388
+ [15, 68],
2389
+ [16, 168],
2390
+ [23, 68],
2391
+ [24, 173],
2392
+ [25, 172],
2393
+ [26, 68],
2394
+ [28, 68],
2395
+ ])
2396
+
2397
+ export const dark_pink_active = n52
2398
+ export const dark_pink_SliderTrackActive = n52
2399
+ export const dark_pink_alt1_SliderTrackActive = n52
2400
+ export const dark_pink_alt2_SliderTrackActive = n52
2401
+ export const dark_pink_active_SliderTrackActive = n52
2402
+ const n53 = t([
2403
+ [12, 189],
2404
+ [13, 190],
2405
+ [14, 191],
2406
+ [15, 192],
2407
+ [16, 188],
2408
+ [23, 192],
2409
+ [24, 194],
2410
+ [25, 191],
2411
+ [26, 192],
2412
+ [28, 192],
2413
+ ])
2414
+
2415
+ export const dark_red_alt1 = n53
2416
+ export const dark_red_ListItem = n53
2417
+ export const dark_red_Card = n53
2418
+ export const dark_red_DrawerFrame = n53
2419
+ export const dark_red_Progress = n53
2420
+ export const dark_red_TooltipArrow = n53
2421
+ export const dark_red_SliderTrack = n53
2422
+ export const dark_red_alt1_ListItem = n53
2423
+ export const dark_red_alt1_Card = n53
2424
+ export const dark_red_alt1_DrawerFrame = n53
2425
+ export const dark_red_alt1_Progress = n53
2426
+ export const dark_red_alt1_TooltipArrow = n53
2427
+ export const dark_red_alt1_SliderTrack = n53
2428
+ export const dark_red_alt2_ListItem = n53
2429
+ export const dark_red_alt2_Card = n53
2430
+ export const dark_red_alt2_DrawerFrame = n53
2431
+ export const dark_red_alt2_Progress = n53
2432
+ export const dark_red_alt2_TooltipArrow = n53
2433
+ export const dark_red_alt2_SliderTrack = n53
2434
+ export const dark_red_active_ListItem = n53
2435
+ export const dark_red_active_Card = n53
2436
+ export const dark_red_active_DrawerFrame = n53
2437
+ export const dark_red_active_Progress = n53
2438
+ export const dark_red_active_TooltipArrow = n53
2439
+ export const dark_red_active_SliderTrack = n53
2440
+ const n54 = t([
2441
+ [12, 190],
2442
+ [13, 191],
2443
+ [14, 192],
2444
+ [15, 194],
2445
+ [16, 189],
2446
+ [23, 194],
2447
+ [24, 92],
2448
+ [25, 192],
2449
+ [26, 194],
2450
+ [28, 194],
2451
+ ])
2452
+
2453
+ export const dark_red_alt2 = n54
2454
+ export const dark_red_Button = n54
2455
+ export const dark_red_Checkbox = n54
2456
+ export const dark_red_Switch = n54
2457
+ export const dark_red_TooltipContent = n54
2458
+ export const dark_red_RadioGroupItem = n54
2459
+ export const dark_red_Input = n54
2460
+ export const dark_red_TextArea = n54
2461
+ export const dark_red_alt1_Button = n54
2462
+ export const dark_red_alt1_Checkbox = n54
2463
+ export const dark_red_alt1_Switch = n54
2464
+ export const dark_red_alt1_TooltipContent = n54
2465
+ export const dark_red_alt1_RadioGroupItem = n54
2466
+ export const dark_red_alt1_Input = n54
2467
+ export const dark_red_alt1_TextArea = n54
2468
+ export const dark_red_alt2_Button = n54
2469
+ export const dark_red_alt2_Checkbox = n54
2470
+ export const dark_red_alt2_Switch = n54
2471
+ export const dark_red_alt2_TooltipContent = n54
2472
+ export const dark_red_alt2_RadioGroupItem = n54
2473
+ export const dark_red_alt2_Input = n54
2474
+ export const dark_red_alt2_TextArea = n54
2475
+ export const dark_red_active_Button = n54
2476
+ export const dark_red_active_Checkbox = n54
2477
+ export const dark_red_active_Switch = n54
2478
+ export const dark_red_active_TooltipContent = n54
2479
+ export const dark_red_active_RadioGroupItem = n54
2480
+ export const dark_red_active_Input = n54
2481
+ export const dark_red_active_TextArea = n54
2482
+ const n55 = t([
2483
+ [12, 191],
2484
+ [13, 192],
2485
+ [14, 194],
2486
+ [15, 92],
2487
+ [16, 190],
2488
+ [23, 92],
2489
+ [24, 195],
2490
+ [25, 194],
2491
+ [26, 92],
2492
+ [28, 92],
2493
+ ])
2494
+
2495
+ export const dark_red_active = n55
2496
+ export const dark_red_SliderTrackActive = n55
2497
+ export const dark_red_alt1_SliderTrackActive = n55
2498
+ export const dark_red_alt2_SliderTrackActive = n55
2499
+ export const dark_red_active_SliderTrackActive = n55
2500
+ const n56 = t([
2501
+ [12, 134],
2502
+ [13, 135],
2503
+ [14, 136],
2504
+ [15, 137],
2505
+ [16, 133],
2506
+ [23, 137],
2507
+ [24, 139],
2508
+ [25, 136],
2509
+ [26, 137],
2510
+ [28, 137],
2511
+ ])
2512
+
2513
+ export const dark_gray_alt1 = n56
2514
+ export const dark_gray_ListItem = n56
2515
+ export const dark_gray_Card = n56
2516
+ export const dark_gray_DrawerFrame = n56
2517
+ export const dark_gray_Progress = n56
2518
+ export const dark_gray_TooltipArrow = n56
2519
+ export const dark_gray_SliderTrack = n56
2520
+ export const dark_gray_alt1_ListItem = n56
2521
+ export const dark_gray_alt1_Card = n56
2522
+ export const dark_gray_alt1_DrawerFrame = n56
2523
+ export const dark_gray_alt1_Progress = n56
2524
+ export const dark_gray_alt1_TooltipArrow = n56
2525
+ export const dark_gray_alt1_SliderTrack = n56
2526
+ export const dark_gray_alt2_ListItem = n56
2527
+ export const dark_gray_alt2_Card = n56
2528
+ export const dark_gray_alt2_DrawerFrame = n56
2529
+ export const dark_gray_alt2_Progress = n56
2530
+ export const dark_gray_alt2_TooltipArrow = n56
2531
+ export const dark_gray_alt2_SliderTrack = n56
2532
+ export const dark_gray_active_ListItem = n56
2533
+ export const dark_gray_active_Card = n56
2534
+ export const dark_gray_active_DrawerFrame = n56
2535
+ export const dark_gray_active_Progress = n56
2536
+ export const dark_gray_active_TooltipArrow = n56
2537
+ export const dark_gray_active_SliderTrack = n56
2538
+ const n57 = t([
2539
+ [12, 135],
2540
+ [13, 136],
2541
+ [14, 137],
2542
+ [15, 139],
2543
+ [16, 134],
2544
+ [23, 139],
2545
+ [24, 140],
2546
+ [25, 137],
2547
+ [26, 139],
2548
+ [28, 139],
2549
+ ])
2550
+
2551
+ export const dark_gray_alt2 = n57
2552
+ export const dark_gray_Button = n57
2553
+ export const dark_gray_Checkbox = n57
2554
+ export const dark_gray_Switch = n57
2555
+ export const dark_gray_TooltipContent = n57
2556
+ export const dark_gray_RadioGroupItem = n57
2557
+ export const dark_gray_Input = n57
2558
+ export const dark_gray_TextArea = n57
2559
+ export const dark_gray_alt1_Button = n57
2560
+ export const dark_gray_alt1_Checkbox = n57
2561
+ export const dark_gray_alt1_Switch = n57
2562
+ export const dark_gray_alt1_TooltipContent = n57
2563
+ export const dark_gray_alt1_RadioGroupItem = n57
2564
+ export const dark_gray_alt1_Input = n57
2565
+ export const dark_gray_alt1_TextArea = n57
2566
+ export const dark_gray_alt2_Button = n57
2567
+ export const dark_gray_alt2_Checkbox = n57
2568
+ export const dark_gray_alt2_Switch = n57
2569
+ export const dark_gray_alt2_TooltipContent = n57
2570
+ export const dark_gray_alt2_RadioGroupItem = n57
2571
+ export const dark_gray_alt2_Input = n57
2572
+ export const dark_gray_alt2_TextArea = n57
2573
+ export const dark_gray_active_Button = n57
2574
+ export const dark_gray_active_Checkbox = n57
2575
+ export const dark_gray_active_Switch = n57
2576
+ export const dark_gray_active_TooltipContent = n57
2577
+ export const dark_gray_active_RadioGroupItem = n57
2578
+ export const dark_gray_active_Input = n57
2579
+ export const dark_gray_active_TextArea = n57
2580
+ const n58 = t([
2581
+ [12, 136],
2582
+ [13, 137],
2583
+ [14, 139],
2584
+ [15, 140],
2585
+ [16, 135],
2586
+ [23, 140],
2587
+ [24, 141],
2588
+ [25, 139],
2589
+ [26, 140],
2590
+ [28, 140],
2591
+ ])
2592
+
2593
+ export const dark_gray_active = n58
2594
+ export const dark_gray_SliderTrackActive = n58
2595
+ export const dark_gray_alt1_SliderTrackActive = n58
2596
+ export const dark_gray_alt2_SliderTrackActive = n58
2597
+ export const dark_gray_active_SliderTrackActive = n58
2598
+ const n59 = t([[12, 211]])
2599
+
2600
+ export const light_SheetOverlay = n59
2601
+ export const light_DialogOverlay = n59
2602
+ export const light_ModalOverlay = n59
2603
+ export const light_orange_SheetOverlay = n59
2604
+ export const light_orange_DialogOverlay = n59
2605
+ export const light_orange_ModalOverlay = n59
2606
+ export const light_yellow_SheetOverlay = n59
2607
+ export const light_yellow_DialogOverlay = n59
2608
+ export const light_yellow_ModalOverlay = n59
2609
+ export const light_green_SheetOverlay = n59
2610
+ export const light_green_DialogOverlay = n59
2611
+ export const light_green_ModalOverlay = n59
2612
+ export const light_blue_SheetOverlay = n59
2613
+ export const light_blue_DialogOverlay = n59
2614
+ export const light_blue_ModalOverlay = n59
2615
+ export const light_purple_SheetOverlay = n59
2616
+ export const light_purple_DialogOverlay = n59
2617
+ export const light_purple_ModalOverlay = n59
2618
+ export const light_pink_SheetOverlay = n59
2619
+ export const light_pink_DialogOverlay = n59
2620
+ export const light_pink_ModalOverlay = n59
2621
+ export const light_red_SheetOverlay = n59
2622
+ export const light_red_DialogOverlay = n59
2623
+ export const light_red_ModalOverlay = n59
2624
+ export const light_gray_SheetOverlay = n59
2625
+ export const light_gray_DialogOverlay = n59
2626
+ export const light_gray_ModalOverlay = n59
2627
+ export const light_alt1_SheetOverlay = n59
2628
+ export const light_alt1_DialogOverlay = n59
2629
+ export const light_alt1_ModalOverlay = n59
2630
+ export const light_alt2_SheetOverlay = n59
2631
+ export const light_alt2_DialogOverlay = n59
2632
+ export const light_alt2_ModalOverlay = n59
2633
+ export const light_active_SheetOverlay = n59
2634
+ export const light_active_DialogOverlay = n59
2635
+ export const light_active_ModalOverlay = n59
2636
+ export const light_orange_alt1_SheetOverlay = n59
2637
+ export const light_orange_alt1_DialogOverlay = n59
2638
+ export const light_orange_alt1_ModalOverlay = n59
2639
+ export const light_orange_alt2_SheetOverlay = n59
2640
+ export const light_orange_alt2_DialogOverlay = n59
2641
+ export const light_orange_alt2_ModalOverlay = n59
2642
+ export const light_orange_active_SheetOverlay = n59
2643
+ export const light_orange_active_DialogOverlay = n59
2644
+ export const light_orange_active_ModalOverlay = n59
2645
+ export const light_yellow_alt1_SheetOverlay = n59
2646
+ export const light_yellow_alt1_DialogOverlay = n59
2647
+ export const light_yellow_alt1_ModalOverlay = n59
2648
+ export const light_yellow_alt2_SheetOverlay = n59
2649
+ export const light_yellow_alt2_DialogOverlay = n59
2650
+ export const light_yellow_alt2_ModalOverlay = n59
2651
+ export const light_yellow_active_SheetOverlay = n59
2652
+ export const light_yellow_active_DialogOverlay = n59
2653
+ export const light_yellow_active_ModalOverlay = n59
2654
+ export const light_green_alt1_SheetOverlay = n59
2655
+ export const light_green_alt1_DialogOverlay = n59
2656
+ export const light_green_alt1_ModalOverlay = n59
2657
+ export const light_green_alt2_SheetOverlay = n59
2658
+ export const light_green_alt2_DialogOverlay = n59
2659
+ export const light_green_alt2_ModalOverlay = n59
2660
+ export const light_green_active_SheetOverlay = n59
2661
+ export const light_green_active_DialogOverlay = n59
2662
+ export const light_green_active_ModalOverlay = n59
2663
+ export const light_blue_alt1_SheetOverlay = n59
2664
+ export const light_blue_alt1_DialogOverlay = n59
2665
+ export const light_blue_alt1_ModalOverlay = n59
2666
+ export const light_blue_alt2_SheetOverlay = n59
2667
+ export const light_blue_alt2_DialogOverlay = n59
2668
+ export const light_blue_alt2_ModalOverlay = n59
2669
+ export const light_blue_active_SheetOverlay = n59
2670
+ export const light_blue_active_DialogOverlay = n59
2671
+ export const light_blue_active_ModalOverlay = n59
2672
+ export const light_purple_alt1_SheetOverlay = n59
2673
+ export const light_purple_alt1_DialogOverlay = n59
2674
+ export const light_purple_alt1_ModalOverlay = n59
2675
+ export const light_purple_alt2_SheetOverlay = n59
2676
+ export const light_purple_alt2_DialogOverlay = n59
2677
+ export const light_purple_alt2_ModalOverlay = n59
2678
+ export const light_purple_active_SheetOverlay = n59
2679
+ export const light_purple_active_DialogOverlay = n59
2680
+ export const light_purple_active_ModalOverlay = n59
2681
+ export const light_pink_alt1_SheetOverlay = n59
2682
+ export const light_pink_alt1_DialogOverlay = n59
2683
+ export const light_pink_alt1_ModalOverlay = n59
2684
+ export const light_pink_alt2_SheetOverlay = n59
2685
+ export const light_pink_alt2_DialogOverlay = n59
2686
+ export const light_pink_alt2_ModalOverlay = n59
2687
+ export const light_pink_active_SheetOverlay = n59
2688
+ export const light_pink_active_DialogOverlay = n59
2689
+ export const light_pink_active_ModalOverlay = n59
2690
+ export const light_red_alt1_SheetOverlay = n59
2691
+ export const light_red_alt1_DialogOverlay = n59
2692
+ export const light_red_alt1_ModalOverlay = n59
2693
+ export const light_red_alt2_SheetOverlay = n59
2694
+ export const light_red_alt2_DialogOverlay = n59
2695
+ export const light_red_alt2_ModalOverlay = n59
2696
+ export const light_red_active_SheetOverlay = n59
2697
+ export const light_red_active_DialogOverlay = n59
2698
+ export const light_red_active_ModalOverlay = n59
2699
+ export const light_gray_alt1_SheetOverlay = n59
2700
+ export const light_gray_alt1_DialogOverlay = n59
2701
+ export const light_gray_alt1_ModalOverlay = n59
2702
+ export const light_gray_alt2_SheetOverlay = n59
2703
+ export const light_gray_alt2_DialogOverlay = n59
2704
+ export const light_gray_alt2_ModalOverlay = n59
2705
+ export const light_gray_active_SheetOverlay = n59
2706
+ export const light_gray_active_DialogOverlay = n59
2707
+ export const light_gray_active_ModalOverlay = n59
2708
+ const n60 = t([[12, 212]])
2709
+
2710
+ export const dark_SheetOverlay = n60
2711
+ export const dark_DialogOverlay = n60
2712
+ export const dark_ModalOverlay = n60
2713
+ export const dark_orange_SheetOverlay = n60
2714
+ export const dark_orange_DialogOverlay = n60
2715
+ export const dark_orange_ModalOverlay = n60
2716
+ export const dark_yellow_SheetOverlay = n60
2717
+ export const dark_yellow_DialogOverlay = n60
2718
+ export const dark_yellow_ModalOverlay = n60
2719
+ export const dark_green_SheetOverlay = n60
2720
+ export const dark_green_DialogOverlay = n60
2721
+ export const dark_green_ModalOverlay = n60
2722
+ export const dark_blue_SheetOverlay = n60
2723
+ export const dark_blue_DialogOverlay = n60
2724
+ export const dark_blue_ModalOverlay = n60
2725
+ export const dark_purple_SheetOverlay = n60
2726
+ export const dark_purple_DialogOverlay = n60
2727
+ export const dark_purple_ModalOverlay = n60
2728
+ export const dark_pink_SheetOverlay = n60
2729
+ export const dark_pink_DialogOverlay = n60
2730
+ export const dark_pink_ModalOverlay = n60
2731
+ export const dark_red_SheetOverlay = n60
2732
+ export const dark_red_DialogOverlay = n60
2733
+ export const dark_red_ModalOverlay = n60
2734
+ export const dark_gray_SheetOverlay = n60
2735
+ export const dark_gray_DialogOverlay = n60
2736
+ export const dark_gray_ModalOverlay = n60
2737
+ export const dark_alt1_SheetOverlay = n60
2738
+ export const dark_alt1_DialogOverlay = n60
2739
+ export const dark_alt1_ModalOverlay = n60
2740
+ export const dark_alt2_SheetOverlay = n60
2741
+ export const dark_alt2_DialogOverlay = n60
2742
+ export const dark_alt2_ModalOverlay = n60
2743
+ export const dark_active_SheetOverlay = n60
2744
+ export const dark_active_DialogOverlay = n60
2745
+ export const dark_active_ModalOverlay = n60
2746
+ export const dark_orange_alt1_SheetOverlay = n60
2747
+ export const dark_orange_alt1_DialogOverlay = n60
2748
+ export const dark_orange_alt1_ModalOverlay = n60
2749
+ export const dark_orange_alt2_SheetOverlay = n60
2750
+ export const dark_orange_alt2_DialogOverlay = n60
2751
+ export const dark_orange_alt2_ModalOverlay = n60
2752
+ export const dark_orange_active_SheetOverlay = n60
2753
+ export const dark_orange_active_DialogOverlay = n60
2754
+ export const dark_orange_active_ModalOverlay = n60
2755
+ export const dark_yellow_alt1_SheetOverlay = n60
2756
+ export const dark_yellow_alt1_DialogOverlay = n60
2757
+ export const dark_yellow_alt1_ModalOverlay = n60
2758
+ export const dark_yellow_alt2_SheetOverlay = n60
2759
+ export const dark_yellow_alt2_DialogOverlay = n60
2760
+ export const dark_yellow_alt2_ModalOverlay = n60
2761
+ export const dark_yellow_active_SheetOverlay = n60
2762
+ export const dark_yellow_active_DialogOverlay = n60
2763
+ export const dark_yellow_active_ModalOverlay = n60
2764
+ export const dark_green_alt1_SheetOverlay = n60
2765
+ export const dark_green_alt1_DialogOverlay = n60
2766
+ export const dark_green_alt1_ModalOverlay = n60
2767
+ export const dark_green_alt2_SheetOverlay = n60
2768
+ export const dark_green_alt2_DialogOverlay = n60
2769
+ export const dark_green_alt2_ModalOverlay = n60
2770
+ export const dark_green_active_SheetOverlay = n60
2771
+ export const dark_green_active_DialogOverlay = n60
2772
+ export const dark_green_active_ModalOverlay = n60
2773
+ export const dark_blue_alt1_SheetOverlay = n60
2774
+ export const dark_blue_alt1_DialogOverlay = n60
2775
+ export const dark_blue_alt1_ModalOverlay = n60
2776
+ export const dark_blue_alt2_SheetOverlay = n60
2777
+ export const dark_blue_alt2_DialogOverlay = n60
2778
+ export const dark_blue_alt2_ModalOverlay = n60
2779
+ export const dark_blue_active_SheetOverlay = n60
2780
+ export const dark_blue_active_DialogOverlay = n60
2781
+ export const dark_blue_active_ModalOverlay = n60
2782
+ export const dark_purple_alt1_SheetOverlay = n60
2783
+ export const dark_purple_alt1_DialogOverlay = n60
2784
+ export const dark_purple_alt1_ModalOverlay = n60
2785
+ export const dark_purple_alt2_SheetOverlay = n60
2786
+ export const dark_purple_alt2_DialogOverlay = n60
2787
+ export const dark_purple_alt2_ModalOverlay = n60
2788
+ export const dark_purple_active_SheetOverlay = n60
2789
+ export const dark_purple_active_DialogOverlay = n60
2790
+ export const dark_purple_active_ModalOverlay = n60
2791
+ export const dark_pink_alt1_SheetOverlay = n60
2792
+ export const dark_pink_alt1_DialogOverlay = n60
2793
+ export const dark_pink_alt1_ModalOverlay = n60
2794
+ export const dark_pink_alt2_SheetOverlay = n60
2795
+ export const dark_pink_alt2_DialogOverlay = n60
2796
+ export const dark_pink_alt2_ModalOverlay = n60
2797
+ export const dark_pink_active_SheetOverlay = n60
2798
+ export const dark_pink_active_DialogOverlay = n60
2799
+ export const dark_pink_active_ModalOverlay = n60
2800
+ export const dark_red_alt1_SheetOverlay = n60
2801
+ export const dark_red_alt1_DialogOverlay = n60
2802
+ export const dark_red_alt1_ModalOverlay = n60
2803
+ export const dark_red_alt2_SheetOverlay = n60
2804
+ export const dark_red_alt2_DialogOverlay = n60
2805
+ export const dark_red_alt2_ModalOverlay = n60
2806
+ export const dark_red_active_SheetOverlay = n60
2807
+ export const dark_red_active_DialogOverlay = n60
2808
+ export const dark_red_active_ModalOverlay = n60
2809
+ export const dark_gray_alt1_SheetOverlay = n60
2810
+ export const dark_gray_alt1_DialogOverlay = n60
2811
+ export const dark_gray_alt1_ModalOverlay = n60
2812
+ export const dark_gray_alt2_SheetOverlay = n60
2813
+ export const dark_gray_alt2_DialogOverlay = n60
2814
+ export const dark_gray_alt2_ModalOverlay = n60
2815
+ export const dark_gray_active_SheetOverlay = n60
2816
+ export const dark_gray_active_DialogOverlay = n60
2817
+ export const dark_gray_active_ModalOverlay = n60
2818
+ const n61 = t([
2819
+ [12, 10],
2820
+ [13, 9],
2821
+ [14, 8],
2822
+ [15, 7],
2823
+ [16, 11],
2824
+ [17, 13],
2825
+ [18, 0],
2826
+ [19, 1],
2827
+ [20, 0],
2828
+ [21, 1],
2829
+ [22, 12],
2830
+ [23, 7],
2831
+ [24, 6],
2832
+ [25, 8],
2833
+ [26, 7],
2834
+ [27, 3],
2835
+ [28, 7],
2836
+ ])
2837
+
2838
+ export const light_SwitchThumb = n61
2839
+ export const light_SliderThumb = n61
2840
+ export const light_Tooltip = n61
2841
+ export const light_ProgressIndicator = n61
2842
+ export const light_orange_SwitchThumb = n61
2843
+ export const light_orange_SliderThumb = n61
2844
+ export const light_orange_Tooltip = n61
2845
+ export const light_orange_ProgressIndicator = n61
2846
+ export const light_yellow_SwitchThumb = n61
2847
+ export const light_yellow_SliderThumb = n61
2848
+ export const light_yellow_Tooltip = n61
2849
+ export const light_yellow_ProgressIndicator = n61
2850
+ export const light_green_SwitchThumb = n61
2851
+ export const light_green_SliderThumb = n61
2852
+ export const light_green_Tooltip = n61
2853
+ export const light_green_ProgressIndicator = n61
2854
+ export const light_blue_SwitchThumb = n61
2855
+ export const light_blue_SliderThumb = n61
2856
+ export const light_blue_Tooltip = n61
2857
+ export const light_blue_ProgressIndicator = n61
2858
+ export const light_purple_SwitchThumb = n61
2859
+ export const light_purple_SliderThumb = n61
2860
+ export const light_purple_Tooltip = n61
2861
+ export const light_purple_ProgressIndicator = n61
2862
+ export const light_pink_SwitchThumb = n61
2863
+ export const light_pink_SliderThumb = n61
2864
+ export const light_pink_Tooltip = n61
2865
+ export const light_pink_ProgressIndicator = n61
2866
+ export const light_red_SwitchThumb = n61
2867
+ export const light_red_SliderThumb = n61
2868
+ export const light_red_Tooltip = n61
2869
+ export const light_red_ProgressIndicator = n61
2870
+ export const light_gray_SwitchThumb = n61
2871
+ export const light_gray_SliderThumb = n61
2872
+ export const light_gray_Tooltip = n61
2873
+ export const light_gray_ProgressIndicator = n61
2874
+ const n62 = t([
2875
+ [12, 120],
2876
+ [13, 119],
2877
+ [14, 118],
2878
+ [15, 117],
2879
+ [16, 0],
2880
+ [17, 12],
2881
+ [18, 110],
2882
+ [19, 111],
2883
+ [20, 110],
2884
+ [21, 111],
2885
+ [22, 13],
2886
+ [23, 117],
2887
+ [24, 116],
2888
+ [25, 118],
2889
+ [26, 117],
2890
+ [27, 113],
2891
+ [28, 117],
2892
+ ])
2893
+
2894
+ export const dark_SwitchThumb = n62
2895
+ export const dark_SliderThumb = n62
2896
+ export const dark_Tooltip = n62
2897
+ export const dark_ProgressIndicator = n62
2898
+ export const dark_orange_SwitchThumb = n62
2899
+ export const dark_orange_SliderThumb = n62
2900
+ export const dark_orange_Tooltip = n62
2901
+ export const dark_orange_ProgressIndicator = n62
2902
+ export const dark_yellow_SwitchThumb = n62
2903
+ export const dark_yellow_SliderThumb = n62
2904
+ export const dark_yellow_Tooltip = n62
2905
+ export const dark_yellow_ProgressIndicator = n62
2906
+ export const dark_green_SwitchThumb = n62
2907
+ export const dark_green_SliderThumb = n62
2908
+ export const dark_green_Tooltip = n62
2909
+ export const dark_green_ProgressIndicator = n62
2910
+ export const dark_blue_SwitchThumb = n62
2911
+ export const dark_blue_SliderThumb = n62
2912
+ export const dark_blue_Tooltip = n62
2913
+ export const dark_blue_ProgressIndicator = n62
2914
+ export const dark_purple_SwitchThumb = n62
2915
+ export const dark_purple_SliderThumb = n62
2916
+ export const dark_purple_Tooltip = n62
2917
+ export const dark_purple_ProgressIndicator = n62
2918
+ export const dark_pink_SwitchThumb = n62
2919
+ export const dark_pink_SliderThumb = n62
2920
+ export const dark_pink_Tooltip = n62
2921
+ export const dark_pink_ProgressIndicator = n62
2922
+ export const dark_red_SwitchThumb = n62
2923
+ export const dark_red_SliderThumb = n62
2924
+ export const dark_red_Tooltip = n62
2925
+ export const dark_red_ProgressIndicator = n62
2926
+ export const dark_gray_SwitchThumb = n62
2927
+ export const dark_gray_SliderThumb = n62
2928
+ export const dark_gray_Tooltip = n62
2929
+ export const dark_gray_ProgressIndicator = n62
2930
+ const n63 = t([
2931
+ [12, 9],
2932
+ [13, 8],
2933
+ [14, 7],
2934
+ [15, 6],
2935
+ [16, 10],
2936
+ [23, 6],
2937
+ [24, 5],
2938
+ [25, 7],
2939
+ [26, 6],
2940
+ [28, 6],
2941
+ ])
2942
+
2943
+ export const light_alt1_SwitchThumb = n63
2944
+ export const light_alt1_SliderThumb = n63
2945
+ export const light_alt1_Tooltip = n63
2946
+ export const light_alt1_ProgressIndicator = n63
2947
+ const n64 = t([
2948
+ [12, 8],
2949
+ [13, 7],
2950
+ [14, 6],
2951
+ [15, 5],
2952
+ [16, 9],
2953
+ [23, 5],
2954
+ [24, 4],
2955
+ [25, 6],
2956
+ [26, 5],
2957
+ [28, 5],
2958
+ ])
2959
+
2960
+ export const light_alt2_SwitchThumb = n64
2961
+ export const light_alt2_SliderThumb = n64
2962
+ export const light_alt2_Tooltip = n64
2963
+ export const light_alt2_ProgressIndicator = n64
2964
+ const n65 = t([
2965
+ [12, 7],
2966
+ [13, 6],
2967
+ [14, 5],
2968
+ [15, 4],
2969
+ [16, 8],
2970
+ [23, 4],
2971
+ [24, 3],
2972
+ [25, 5],
2973
+ [26, 4],
2974
+ [28, 4],
2975
+ ])
2976
+
2977
+ export const light_active_SwitchThumb = n65
2978
+ export const light_active_SliderThumb = n65
2979
+ export const light_active_Tooltip = n65
2980
+ export const light_active_ProgressIndicator = n65
2981
+ const n66 = t([
2982
+ [12, 119],
2983
+ [13, 118],
2984
+ [14, 117],
2985
+ [15, 116],
2986
+ [16, 120],
2987
+ [23, 116],
2988
+ [24, 115],
2989
+ [25, 117],
2990
+ [26, 116],
2991
+ [28, 116],
2992
+ ])
2993
+
2994
+ export const dark_alt1_SwitchThumb = n66
2995
+ export const dark_alt1_SliderThumb = n66
2996
+ export const dark_alt1_Tooltip = n66
2997
+ export const dark_alt1_ProgressIndicator = n66
2998
+ const n67 = t([
2999
+ [12, 118],
3000
+ [13, 117],
3001
+ [14, 116],
3002
+ [15, 115],
3003
+ [16, 119],
3004
+ [23, 115],
3005
+ [24, 114],
3006
+ [25, 116],
3007
+ [26, 115],
3008
+ [28, 115],
3009
+ ])
3010
+
3011
+ export const dark_alt2_SwitchThumb = n67
3012
+ export const dark_alt2_SliderThumb = n67
3013
+ export const dark_alt2_Tooltip = n67
3014
+ export const dark_alt2_ProgressIndicator = n67
3015
+ const n68 = t([
3016
+ [12, 117],
3017
+ [13, 116],
3018
+ [14, 115],
3019
+ [15, 114],
3020
+ [16, 118],
3021
+ [23, 114],
3022
+ [24, 113],
3023
+ [25, 115],
3024
+ [26, 114],
3025
+ [28, 114],
3026
+ ])
3027
+
3028
+ export const dark_active_SwitchThumb = n68
3029
+ export const dark_active_SliderThumb = n68
3030
+ export const dark_active_Tooltip = n68
3031
+ export const dark_active_ProgressIndicator = n68
3032
+ const n69 = t([
3033
+ [12, 58],
3034
+ [13, 57],
3035
+ [14, 56],
3036
+ [15, 55],
3037
+ [16, 59],
3038
+ [23, 55],
3039
+ [24, 53],
3040
+ [25, 56],
3041
+ [26, 55],
3042
+ [28, 55],
3043
+ ])
3044
+
3045
+ export const light_orange_alt1_SwitchThumb = n69
3046
+ export const light_orange_alt1_SliderThumb = n69
3047
+ export const light_orange_alt1_Tooltip = n69
3048
+ export const light_orange_alt1_ProgressIndicator = n69
3049
+ const n70 = t([
3050
+ [12, 57],
3051
+ [13, 56],
3052
+ [14, 55],
3053
+ [15, 53],
3054
+ [16, 58],
3055
+ [23, 53],
3056
+ [24, 52],
3057
+ [25, 55],
3058
+ [26, 53],
3059
+ [28, 53],
3060
+ ])
3061
+
3062
+ export const light_orange_alt2_SwitchThumb = n70
3063
+ export const light_orange_alt2_SliderThumb = n70
3064
+ export const light_orange_alt2_Tooltip = n70
3065
+ export const light_orange_alt2_ProgressIndicator = n70
3066
+ const n71 = t([
3067
+ [12, 56],
3068
+ [13, 55],
3069
+ [14, 53],
3070
+ [15, 52],
3071
+ [16, 57],
3072
+ [23, 52],
3073
+ [24, 51],
3074
+ [25, 53],
3075
+ [26, 52],
3076
+ [28, 52],
3077
+ ])
3078
+
3079
+ export const light_orange_active_SwitchThumb = n71
3080
+ export const light_orange_active_SliderThumb = n71
3081
+ export const light_orange_active_Tooltip = n71
3082
+ export const light_orange_active_ProgressIndicator = n71
3083
+ const n72 = t([
3084
+ [12, 106],
3085
+ [13, 105],
3086
+ [14, 104],
3087
+ [15, 103],
3088
+ [16, 107],
3089
+ [23, 103],
3090
+ [24, 101],
3091
+ [25, 104],
3092
+ [26, 103],
3093
+ [28, 103],
3094
+ ])
3095
+
3096
+ export const light_yellow_alt1_SwitchThumb = n72
3097
+ export const light_yellow_alt1_SliderThumb = n72
3098
+ export const light_yellow_alt1_Tooltip = n72
3099
+ export const light_yellow_alt1_ProgressIndicator = n72
3100
+ const n73 = t([
3101
+ [12, 105],
3102
+ [13, 104],
3103
+ [14, 103],
3104
+ [15, 101],
3105
+ [16, 106],
3106
+ [23, 101],
3107
+ [24, 100],
3108
+ [25, 103],
3109
+ [26, 101],
3110
+ [28, 101],
3111
+ ])
3112
+
3113
+ export const light_yellow_alt2_SwitchThumb = n73
3114
+ export const light_yellow_alt2_SliderThumb = n73
3115
+ export const light_yellow_alt2_Tooltip = n73
3116
+ export const light_yellow_alt2_ProgressIndicator = n73
3117
+ const n74 = t([
3118
+ [12, 104],
3119
+ [13, 103],
3120
+ [14, 101],
3121
+ [15, 100],
3122
+ [16, 105],
3123
+ [23, 100],
3124
+ [24, 99],
3125
+ [25, 101],
3126
+ [26, 100],
3127
+ [28, 100],
3128
+ ])
3129
+
3130
+ export const light_yellow_active_SwitchThumb = n74
3131
+ export const light_yellow_active_SliderThumb = n74
3132
+ export const light_yellow_active_Tooltip = n74
3133
+ export const light_yellow_active_ProgressIndicator = n74
3134
+ const n75 = t([
3135
+ [12, 46],
3136
+ [13, 45],
3137
+ [14, 44],
3138
+ [15, 43],
3139
+ [16, 47],
3140
+ [23, 43],
3141
+ [24, 41],
3142
+ [25, 44],
3143
+ [26, 43],
3144
+ [28, 43],
3145
+ ])
3146
+
3147
+ export const light_green_alt1_SwitchThumb = n75
3148
+ export const light_green_alt1_SliderThumb = n75
3149
+ export const light_green_alt1_Tooltip = n75
3150
+ export const light_green_alt1_ProgressIndicator = n75
3151
+ const n76 = t([
3152
+ [12, 45],
3153
+ [13, 44],
3154
+ [14, 43],
3155
+ [15, 41],
3156
+ [16, 46],
3157
+ [23, 41],
3158
+ [24, 40],
3159
+ [25, 43],
3160
+ [26, 41],
3161
+ [28, 41],
3162
+ ])
3163
+
3164
+ export const light_green_alt2_SwitchThumb = n76
3165
+ export const light_green_alt2_SliderThumb = n76
3166
+ export const light_green_alt2_Tooltip = n76
3167
+ export const light_green_alt2_ProgressIndicator = n76
3168
+ const n77 = t([
3169
+ [12, 44],
3170
+ [13, 43],
3171
+ [14, 41],
3172
+ [15, 40],
3173
+ [16, 45],
3174
+ [23, 40],
3175
+ [24, 39],
3176
+ [25, 41],
3177
+ [26, 40],
3178
+ [28, 40],
3179
+ ])
3180
+
3181
+ export const light_green_active_SwitchThumb = n77
3182
+ export const light_green_active_SliderThumb = n77
3183
+ export const light_green_active_Tooltip = n77
3184
+ export const light_green_active_ProgressIndicator = n77
3185
+ const n78 = t([
3186
+ [12, 24],
3187
+ [13, 23],
3188
+ [14, 22],
3189
+ [15, 21],
3190
+ [16, 25],
3191
+ [23, 21],
3192
+ [24, 19],
3193
+ [25, 22],
3194
+ [26, 21],
3195
+ [28, 21],
3196
+ ])
3197
+
3198
+ export const light_blue_alt1_SwitchThumb = n78
3199
+ export const light_blue_alt1_SliderThumb = n78
3200
+ export const light_blue_alt1_Tooltip = n78
3201
+ export const light_blue_alt1_ProgressIndicator = n78
3202
+ const n79 = t([
3203
+ [12, 23],
3204
+ [13, 22],
3205
+ [14, 21],
3206
+ [15, 19],
3207
+ [16, 24],
3208
+ [23, 19],
3209
+ [24, 18],
3210
+ [25, 21],
3211
+ [26, 19],
3212
+ [28, 19],
3213
+ ])
3214
+
3215
+ export const light_blue_alt2_SwitchThumb = n79
3216
+ export const light_blue_alt2_SliderThumb = n79
3217
+ export const light_blue_alt2_Tooltip = n79
3218
+ export const light_blue_alt2_ProgressIndicator = n79
3219
+ const n80 = t([
3220
+ [12, 22],
3221
+ [13, 21],
3222
+ [14, 19],
3223
+ [15, 18],
3224
+ [16, 23],
3225
+ [23, 18],
3226
+ [24, 17],
3227
+ [25, 19],
3228
+ [26, 18],
3229
+ [28, 18],
3230
+ ])
3231
+
3232
+ export const light_blue_active_SwitchThumb = n80
3233
+ export const light_blue_active_SliderThumb = n80
3234
+ export const light_blue_active_Tooltip = n80
3235
+ export const light_blue_active_ProgressIndicator = n80
3236
+ const n81 = t([
3237
+ [12, 82],
3238
+ [13, 81],
3239
+ [14, 80],
3240
+ [15, 79],
3241
+ [16, 83],
3242
+ [23, 79],
3243
+ [24, 77],
3244
+ [25, 80],
3245
+ [26, 79],
3246
+ [28, 79],
3247
+ ])
3248
+
3249
+ export const light_purple_alt1_SwitchThumb = n81
3250
+ export const light_purple_alt1_SliderThumb = n81
3251
+ export const light_purple_alt1_Tooltip = n81
3252
+ export const light_purple_alt1_ProgressIndicator = n81
3253
+ const n82 = t([
3254
+ [12, 81],
3255
+ [13, 80],
3256
+ [14, 79],
3257
+ [15, 77],
3258
+ [16, 82],
3259
+ [23, 77],
3260
+ [24, 76],
3261
+ [25, 79],
3262
+ [26, 77],
3263
+ [28, 77],
3264
+ ])
3265
+
3266
+ export const light_purple_alt2_SwitchThumb = n82
3267
+ export const light_purple_alt2_SliderThumb = n82
3268
+ export const light_purple_alt2_Tooltip = n82
3269
+ export const light_purple_alt2_ProgressIndicator = n82
3270
+ const n83 = t([
3271
+ [12, 80],
3272
+ [13, 79],
3273
+ [14, 77],
3274
+ [15, 76],
3275
+ [16, 81],
3276
+ [23, 76],
3277
+ [24, 75],
3278
+ [25, 77],
3279
+ [26, 76],
3280
+ [28, 76],
3281
+ ])
3282
+
3283
+ export const light_purple_active_SwitchThumb = n83
3284
+ export const light_purple_active_SliderThumb = n83
3285
+ export const light_purple_active_Tooltip = n83
3286
+ export const light_purple_active_ProgressIndicator = n83
3287
+ const n84 = t([
3288
+ [12, 70],
3289
+ [13, 69],
3290
+ [14, 68],
3291
+ [15, 67],
3292
+ [16, 71],
3293
+ [23, 67],
3294
+ [24, 65],
3295
+ [25, 68],
3296
+ [26, 67],
3297
+ [28, 67],
3298
+ ])
3299
+
3300
+ export const light_pink_alt1_SwitchThumb = n84
3301
+ export const light_pink_alt1_SliderThumb = n84
3302
+ export const light_pink_alt1_Tooltip = n84
3303
+ export const light_pink_alt1_ProgressIndicator = n84
3304
+ const n85 = t([
3305
+ [12, 69],
3306
+ [13, 68],
3307
+ [14, 67],
3308
+ [15, 65],
3309
+ [16, 70],
3310
+ [23, 65],
3311
+ [24, 64],
3312
+ [25, 67],
3313
+ [26, 65],
3314
+ [28, 65],
3315
+ ])
3316
+
3317
+ export const light_pink_alt2_SwitchThumb = n85
3318
+ export const light_pink_alt2_SliderThumb = n85
3319
+ export const light_pink_alt2_Tooltip = n85
3320
+ export const light_pink_alt2_ProgressIndicator = n85
3321
+ const n86 = t([
3322
+ [12, 68],
3323
+ [13, 67],
3324
+ [14, 65],
3325
+ [15, 64],
3326
+ [16, 69],
3327
+ [23, 64],
3328
+ [24, 63],
3329
+ [25, 65],
3330
+ [26, 64],
3331
+ [28, 64],
3332
+ ])
3333
+
3334
+ export const light_pink_active_SwitchThumb = n86
3335
+ export const light_pink_active_SliderThumb = n86
3336
+ export const light_pink_active_Tooltip = n86
3337
+ export const light_pink_active_ProgressIndicator = n86
3338
+ const n87 = t([
3339
+ [12, 94],
3340
+ [13, 93],
3341
+ [14, 92],
3342
+ [15, 91],
3343
+ [16, 95],
3344
+ [23, 91],
3345
+ [24, 89],
3346
+ [25, 92],
3347
+ [26, 91],
3348
+ [28, 91],
3349
+ ])
3350
+
3351
+ export const light_red_alt1_SwitchThumb = n87
3352
+ export const light_red_alt1_SliderThumb = n87
3353
+ export const light_red_alt1_Tooltip = n87
3354
+ export const light_red_alt1_ProgressIndicator = n87
3355
+ const n88 = t([
3356
+ [12, 93],
3357
+ [13, 92],
3358
+ [14, 91],
3359
+ [15, 89],
3360
+ [16, 94],
3361
+ [23, 89],
3362
+ [24, 88],
3363
+ [25, 91],
3364
+ [26, 89],
3365
+ [28, 89],
3366
+ ])
3367
+
3368
+ export const light_red_alt2_SwitchThumb = n88
3369
+ export const light_red_alt2_SliderThumb = n88
3370
+ export const light_red_alt2_Tooltip = n88
3371
+ export const light_red_alt2_ProgressIndicator = n88
3372
+ const n89 = t([
3373
+ [12, 92],
3374
+ [13, 91],
3375
+ [14, 89],
3376
+ [15, 88],
3377
+ [16, 93],
3378
+ [23, 88],
3379
+ [24, 87],
3380
+ [25, 89],
3381
+ [26, 88],
3382
+ [28, 88],
3383
+ ])
3384
+
3385
+ export const light_red_active_SwitchThumb = n89
3386
+ export const light_red_active_SliderThumb = n89
3387
+ export const light_red_active_Tooltip = n89
3388
+ export const light_red_active_ProgressIndicator = n89
3389
+ const n90 = t([
3390
+ [12, 35],
3391
+ [13, 34],
3392
+ [14, 8],
3393
+ [15, 33],
3394
+ [16, 11],
3395
+ [23, 33],
3396
+ [24, 31],
3397
+ [25, 8],
3398
+ [26, 33],
3399
+ [28, 33],
3400
+ ])
3401
+
3402
+ export const light_gray_alt1_SwitchThumb = n90
3403
+ export const light_gray_alt1_SliderThumb = n90
3404
+ export const light_gray_alt1_Tooltip = n90
3405
+ export const light_gray_alt1_ProgressIndicator = n90
3406
+ const n91 = t([
3407
+ [12, 34],
3408
+ [13, 8],
3409
+ [14, 33],
3410
+ [15, 31],
3411
+ [16, 35],
3412
+ [23, 31],
3413
+ [24, 30],
3414
+ [25, 33],
3415
+ [26, 31],
3416
+ [28, 31],
3417
+ ])
3418
+
3419
+ export const light_gray_alt2_SwitchThumb = n91
3420
+ export const light_gray_alt2_SliderThumb = n91
3421
+ export const light_gray_alt2_Tooltip = n91
3422
+ export const light_gray_alt2_ProgressIndicator = n91
3423
+ const n92 = t([
3424
+ [12, 8],
3425
+ [13, 33],
3426
+ [14, 31],
3427
+ [15, 30],
3428
+ [16, 34],
3429
+ [23, 30],
3430
+ [24, 29],
3431
+ [25, 31],
3432
+ [26, 30],
3433
+ [28, 30],
3434
+ ])
3435
+
3436
+ export const light_gray_active_SwitchThumb = n92
3437
+ export const light_gray_active_SliderThumb = n92
3438
+ export const light_gray_active_Tooltip = n92
3439
+ export const light_gray_active_ProgressIndicator = n92
3440
+ const n93 = t([
3441
+ [12, 163],
3442
+ [13, 162],
3443
+ [14, 56],
3444
+ [15, 161],
3445
+ [16, 164],
3446
+ [23, 161],
3447
+ [24, 159],
3448
+ [25, 56],
3449
+ [26, 161],
3450
+ [28, 161],
3451
+ ])
3452
+
3453
+ export const dark_orange_alt1_SwitchThumb = n93
3454
+ export const dark_orange_alt1_SliderThumb = n93
3455
+ export const dark_orange_alt1_Tooltip = n93
3456
+ export const dark_orange_alt1_ProgressIndicator = n93
3457
+ const n94 = t([
3458
+ [12, 162],
3459
+ [13, 56],
3460
+ [14, 161],
3461
+ [15, 159],
3462
+ [16, 163],
3463
+ [23, 159],
3464
+ [24, 158],
3465
+ [25, 161],
3466
+ [26, 159],
3467
+ [28, 159],
3468
+ ])
3469
+
3470
+ export const dark_orange_alt2_SwitchThumb = n94
3471
+ export const dark_orange_alt2_SliderThumb = n94
3472
+ export const dark_orange_alt2_Tooltip = n94
3473
+ export const dark_orange_alt2_ProgressIndicator = n94
3474
+ const n95 = t([
3475
+ [12, 56],
3476
+ [13, 161],
3477
+ [14, 159],
3478
+ [15, 158],
3479
+ [16, 162],
3480
+ [23, 158],
3481
+ [24, 157],
3482
+ [25, 159],
3483
+ [26, 158],
3484
+ [28, 158],
3485
+ ])
3486
+
3487
+ export const dark_orange_active_SwitchThumb = n95
3488
+ export const dark_orange_active_SliderThumb = n95
3489
+ export const dark_orange_active_Tooltip = n95
3490
+ export const dark_orange_active_ProgressIndicator = n95
3491
+ const n96 = t([
3492
+ [12, 207],
3493
+ [13, 206],
3494
+ [14, 104],
3495
+ [15, 205],
3496
+ [16, 208],
3497
+ [23, 205],
3498
+ [24, 203],
3499
+ [25, 104],
3500
+ [26, 205],
3501
+ [28, 205],
3502
+ ])
3503
+
3504
+ export const dark_yellow_alt1_SwitchThumb = n96
3505
+ export const dark_yellow_alt1_SliderThumb = n96
3506
+ export const dark_yellow_alt1_Tooltip = n96
3507
+ export const dark_yellow_alt1_ProgressIndicator = n96
3508
+ const n97 = t([
3509
+ [12, 206],
3510
+ [13, 104],
3511
+ [14, 205],
3512
+ [15, 203],
3513
+ [16, 207],
3514
+ [23, 203],
3515
+ [24, 202],
3516
+ [25, 205],
3517
+ [26, 203],
3518
+ [28, 203],
3519
+ ])
3520
+
3521
+ export const dark_yellow_alt2_SwitchThumb = n97
3522
+ export const dark_yellow_alt2_SliderThumb = n97
3523
+ export const dark_yellow_alt2_Tooltip = n97
3524
+ export const dark_yellow_alt2_ProgressIndicator = n97
3525
+ const n98 = t([
3526
+ [12, 104],
3527
+ [13, 205],
3528
+ [14, 203],
3529
+ [15, 202],
3530
+ [16, 206],
3531
+ [23, 202],
3532
+ [24, 201],
3533
+ [25, 203],
3534
+ [26, 202],
3535
+ [28, 202],
3536
+ ])
3537
+
3538
+ export const dark_yellow_active_SwitchThumb = n98
3539
+ export const dark_yellow_active_SliderThumb = n98
3540
+ export const dark_yellow_active_Tooltip = n98
3541
+ export const dark_yellow_active_ProgressIndicator = n98
3542
+ const n99 = t([
3543
+ [12, 152],
3544
+ [13, 151],
3545
+ [14, 44],
3546
+ [15, 150],
3547
+ [16, 153],
3548
+ [23, 150],
3549
+ [24, 148],
3550
+ [25, 44],
3551
+ [26, 150],
3552
+ [28, 150],
3553
+ ])
3554
+
3555
+ export const dark_green_alt1_SwitchThumb = n99
3556
+ export const dark_green_alt1_SliderThumb = n99
3557
+ export const dark_green_alt1_Tooltip = n99
3558
+ export const dark_green_alt1_ProgressIndicator = n99
3559
+ const n100 = t([
3560
+ [12, 151],
3561
+ [13, 44],
3562
+ [14, 150],
3563
+ [15, 148],
3564
+ [16, 152],
3565
+ [23, 148],
3566
+ [24, 147],
3567
+ [25, 150],
3568
+ [26, 148],
3569
+ [28, 148],
3570
+ ])
3571
+
3572
+ export const dark_green_alt2_SwitchThumb = n100
3573
+ export const dark_green_alt2_SliderThumb = n100
3574
+ export const dark_green_alt2_Tooltip = n100
3575
+ export const dark_green_alt2_ProgressIndicator = n100
3576
+ const n101 = t([
3577
+ [12, 44],
3578
+ [13, 150],
3579
+ [14, 148],
3580
+ [15, 147],
3581
+ [16, 151],
3582
+ [23, 147],
3583
+ [24, 146],
3584
+ [25, 148],
3585
+ [26, 147],
3586
+ [28, 147],
3587
+ ])
3588
+
3589
+ export const dark_green_active_SwitchThumb = n101
3590
+ export const dark_green_active_SliderThumb = n101
3591
+ export const dark_green_active_Tooltip = n101
3592
+ export const dark_green_active_ProgressIndicator = n101
3593
+ const n102 = t([
3594
+ [12, 130],
3595
+ [13, 129],
3596
+ [14, 22],
3597
+ [15, 128],
3598
+ [16, 131],
3599
+ [23, 128],
3600
+ [24, 126],
3601
+ [25, 22],
3602
+ [26, 128],
3603
+ [28, 128],
3604
+ ])
3605
+
3606
+ export const dark_blue_alt1_SwitchThumb = n102
3607
+ export const dark_blue_alt1_SliderThumb = n102
3608
+ export const dark_blue_alt1_Tooltip = n102
3609
+ export const dark_blue_alt1_ProgressIndicator = n102
3610
+ const n103 = t([
3611
+ [12, 129],
3612
+ [13, 22],
3613
+ [14, 128],
3614
+ [15, 126],
3615
+ [16, 130],
3616
+ [23, 126],
3617
+ [24, 125],
3618
+ [25, 128],
3619
+ [26, 126],
3620
+ [28, 126],
3621
+ ])
3622
+
3623
+ export const dark_blue_alt2_SwitchThumb = n103
3624
+ export const dark_blue_alt2_SliderThumb = n103
3625
+ export const dark_blue_alt2_Tooltip = n103
3626
+ export const dark_blue_alt2_ProgressIndicator = n103
3627
+ const n104 = t([
3628
+ [12, 22],
3629
+ [13, 128],
3630
+ [14, 126],
3631
+ [15, 125],
3632
+ [16, 129],
3633
+ [23, 125],
3634
+ [24, 124],
3635
+ [25, 126],
3636
+ [26, 125],
3637
+ [28, 125],
3638
+ ])
3639
+
3640
+ export const dark_blue_active_SwitchThumb = n104
3641
+ export const dark_blue_active_SliderThumb = n104
3642
+ export const dark_blue_active_Tooltip = n104
3643
+ export const dark_blue_active_ProgressIndicator = n104
3644
+ const n105 = t([
3645
+ [12, 185],
3646
+ [13, 184],
3647
+ [14, 80],
3648
+ [15, 183],
3649
+ [16, 186],
3650
+ [23, 183],
3651
+ [24, 181],
3652
+ [25, 80],
3653
+ [26, 183],
3654
+ [28, 183],
3655
+ ])
3656
+
3657
+ export const dark_purple_alt1_SwitchThumb = n105
3658
+ export const dark_purple_alt1_SliderThumb = n105
3659
+ export const dark_purple_alt1_Tooltip = n105
3660
+ export const dark_purple_alt1_ProgressIndicator = n105
3661
+ const n106 = t([
3662
+ [12, 184],
3663
+ [13, 80],
3664
+ [14, 183],
3665
+ [15, 181],
3666
+ [16, 185],
3667
+ [23, 181],
3668
+ [24, 180],
3669
+ [25, 183],
3670
+ [26, 181],
3671
+ [28, 181],
3672
+ ])
3673
+
3674
+ export const dark_purple_alt2_SwitchThumb = n106
3675
+ export const dark_purple_alt2_SliderThumb = n106
3676
+ export const dark_purple_alt2_Tooltip = n106
3677
+ export const dark_purple_alt2_ProgressIndicator = n106
3678
+ const n107 = t([
3679
+ [12, 80],
3680
+ [13, 183],
3681
+ [14, 181],
3682
+ [15, 180],
3683
+ [16, 184],
3684
+ [23, 180],
3685
+ [24, 179],
3686
+ [25, 181],
3687
+ [26, 180],
3688
+ [28, 180],
3689
+ ])
3690
+
3691
+ export const dark_purple_active_SwitchThumb = n107
3692
+ export const dark_purple_active_SliderThumb = n107
3693
+ export const dark_purple_active_Tooltip = n107
3694
+ export const dark_purple_active_ProgressIndicator = n107
3695
+ const n108 = t([
3696
+ [12, 174],
3697
+ [13, 173],
3698
+ [14, 68],
3699
+ [15, 172],
3700
+ [16, 175],
3701
+ [23, 172],
3702
+ [24, 170],
3703
+ [25, 68],
3704
+ [26, 172],
3705
+ [28, 172],
3706
+ ])
3707
+
3708
+ export const dark_pink_alt1_SwitchThumb = n108
3709
+ export const dark_pink_alt1_SliderThumb = n108
3710
+ export const dark_pink_alt1_Tooltip = n108
3711
+ export const dark_pink_alt1_ProgressIndicator = n108
3712
+ const n109 = t([
3713
+ [12, 173],
3714
+ [13, 68],
3715
+ [14, 172],
3716
+ [15, 170],
3717
+ [16, 174],
3718
+ [23, 170],
3719
+ [24, 169],
3720
+ [25, 172],
3721
+ [26, 170],
3722
+ [28, 170],
3723
+ ])
3724
+
3725
+ export const dark_pink_alt2_SwitchThumb = n109
3726
+ export const dark_pink_alt2_SliderThumb = n109
3727
+ export const dark_pink_alt2_Tooltip = n109
3728
+ export const dark_pink_alt2_ProgressIndicator = n109
3729
+ const n110 = t([
3730
+ [12, 68],
3731
+ [13, 172],
3732
+ [14, 170],
3733
+ [15, 169],
3734
+ [16, 173],
3735
+ [23, 169],
3736
+ [24, 168],
3737
+ [25, 170],
3738
+ [26, 169],
3739
+ [28, 169],
3740
+ ])
3741
+
3742
+ export const dark_pink_active_SwitchThumb = n110
3743
+ export const dark_pink_active_SliderThumb = n110
3744
+ export const dark_pink_active_Tooltip = n110
3745
+ export const dark_pink_active_ProgressIndicator = n110
3746
+ const n111 = t([
3747
+ [12, 196],
3748
+ [13, 195],
3749
+ [14, 92],
3750
+ [15, 194],
3751
+ [16, 197],
3752
+ [23, 194],
3753
+ [24, 192],
3754
+ [25, 92],
3755
+ [26, 194],
3756
+ [28, 194],
3757
+ ])
3758
+
3759
+ export const dark_red_alt1_SwitchThumb = n111
3760
+ export const dark_red_alt1_SliderThumb = n111
3761
+ export const dark_red_alt1_Tooltip = n111
3762
+ export const dark_red_alt1_ProgressIndicator = n111
3763
+ const n112 = t([
3764
+ [12, 195],
3765
+ [13, 92],
3766
+ [14, 194],
3767
+ [15, 192],
3768
+ [16, 196],
3769
+ [23, 192],
3770
+ [24, 191],
3771
+ [25, 194],
3772
+ [26, 192],
3773
+ [28, 192],
3774
+ ])
3775
+
3776
+ export const dark_red_alt2_SwitchThumb = n112
3777
+ export const dark_red_alt2_SliderThumb = n112
3778
+ export const dark_red_alt2_Tooltip = n112
3779
+ export const dark_red_alt2_ProgressIndicator = n112
3780
+ const n113 = t([
3781
+ [12, 92],
3782
+ [13, 194],
3783
+ [14, 192],
3784
+ [15, 191],
3785
+ [16, 195],
3786
+ [23, 191],
3787
+ [24, 190],
3788
+ [25, 192],
3789
+ [26, 191],
3790
+ [28, 191],
3791
+ ])
3792
+
3793
+ export const dark_red_active_SwitchThumb = n113
3794
+ export const dark_red_active_SliderThumb = n113
3795
+ export const dark_red_active_Tooltip = n113
3796
+ export const dark_red_active_ProgressIndicator = n113
3797
+ const n114 = t([
3798
+ [12, 142],
3799
+ [13, 141],
3800
+ [14, 140],
3801
+ [15, 139],
3802
+ [16, 29],
3803
+ [23, 139],
3804
+ [24, 137],
3805
+ [25, 140],
3806
+ [26, 139],
3807
+ [28, 139],
3808
+ ])
3809
+
3810
+ export const dark_gray_alt1_SwitchThumb = n114
3811
+ export const dark_gray_alt1_SliderThumb = n114
3812
+ export const dark_gray_alt1_Tooltip = n114
3813
+ export const dark_gray_alt1_ProgressIndicator = n114
3814
+ const n115 = t([
3815
+ [12, 141],
3816
+ [13, 140],
3817
+ [14, 139],
3818
+ [15, 137],
3819
+ [16, 142],
3820
+ [23, 137],
3821
+ [24, 136],
3822
+ [25, 139],
3823
+ [26, 137],
3824
+ [28, 137],
3825
+ ])
3826
+
3827
+ export const dark_gray_alt2_SwitchThumb = n115
3828
+ export const dark_gray_alt2_SliderThumb = n115
3829
+ export const dark_gray_alt2_Tooltip = n115
3830
+ export const dark_gray_alt2_ProgressIndicator = n115
3831
+ const n116 = t([
3832
+ [12, 140],
3833
+ [13, 139],
3834
+ [14, 137],
3835
+ [15, 136],
3836
+ [16, 141],
3837
+ [23, 136],
3838
+ [24, 135],
3839
+ [25, 137],
3840
+ [26, 136],
3841
+ [28, 136],
3842
+ ])
3843
+
3844
+ export const dark_gray_active_SwitchThumb = n116
3845
+ export const dark_gray_active_SliderThumb = n116
3846
+ export const dark_gray_active_Tooltip = n116
3847
+ export const dark_gray_active_ProgressIndicator = n116