@tamagui/themes 1.31.4 → 1.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/componentThemeDefinitions.js +7 -6
- package/dist/cjs/componentThemeDefinitions.js.map +1 -1
- package/dist/cjs/generated-new.js +171 -460
- package/dist/cjs/generated-new.js.map +1 -1
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/masks.js +4 -1
- package/dist/cjs/masks.js.map +1 -1
- package/dist/cjs/shadows.js +46 -0
- package/dist/cjs/shadows.js.map +6 -0
- package/dist/cjs/themes-new.js +3 -19
- package/dist/cjs/themes-new.js.map +1 -1
- package/dist/cjs/themes.js +11 -301
- package/dist/cjs/themes.js.map +1 -1
- package/dist/esm/componentThemeDefinitions.js +7 -6
- package/dist/esm/componentThemeDefinitions.js.map +1 -1
- package/dist/esm/generated-new.js +171 -460
- package/dist/esm/generated-new.js.map +1 -1
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/masks.js +4 -1
- package/dist/esm/masks.js.map +1 -1
- package/dist/esm/shadows.js +22 -0
- package/dist/esm/shadows.js.map +6 -0
- package/dist/esm/themes-new.js +3 -19
- package/dist/esm/themes-new.js.map +1 -1
- package/dist/esm/themes.js +1 -308
- package/dist/esm/themes.js.map +1 -1
- package/package.json +10 -8
- package/src/componentThemeDefinitions.tsx +137 -0
- package/src/generated-new.ts +4313 -0
- package/src/helpers.ts +44 -0
- package/src/index.tsx +3 -9
- package/src/masks.tsx +45 -0
- package/src/palettes.tsx +91 -0
- package/src/shadows.tsx +19 -0
- package/src/templates.tsx +111 -0
- package/src/themes-new.tsx +74 -0
- package/src/{themes.outlined.tsx → themes-old.tsx} +108 -17
- package/src/themes.tsx +4 -378
- package/types/componentThemeDefinitions.d.ts +628 -0
- package/types/componentThemeDefinitions.d.ts.map +1 -1
- package/types/generated-new.d.ts +516 -0
- package/types/generated-new.d.ts.map +1 -1
- package/types/helpers.d.ts +24 -0
- package/types/index.d.ts +3 -0
- package/types/index.d.ts.map +1 -1
- package/types/masks.d.ts +13 -0
- package/types/masks.d.ts.map +1 -1
- package/types/palettes.d.ts +21 -0
- package/types/shadows.d.ts +15 -0
- package/types/shadows.d.ts.map +1 -0
- package/types/templates.d.ts +142 -0
- package/types/themes-new.d.ts +40323 -0
- package/types/themes-new.d.ts.map +1 -1
- package/types/themes-old.d.ts +51411 -0
- package/types/themes.d.ts +2 -51602
- package/types/themes.d.ts.map +1 -1
- package/types/tokens.d.ts +2 -2
- package/dist/cjs/generated-old.js +0 -13599
- package/dist/cjs/generated-old.js.map +0 -6
- package/dist/esm/generated-old.js +0 -12064
- package/dist/esm/generated-old.js.map +0 -6
- package/src/generate.ts +0 -25
- package/src/generated.js +0 -23954
- package/types/generate.d.ts +0 -2
- package/types/themes.outlined.d.ts +0 -2643
|
@@ -2179,7 +2179,6 @@ const light_ListItem = {
|
|
|
2179
2179
|
borderColorPress: "hsl(0, 0%, 95.1%)",
|
|
2180
2180
|
placeholderColor: "hsl(0, 0%, 50.3%)"
|
|
2181
2181
|
};
|
|
2182
|
-
const light_SliderTrack = light_ListItem;
|
|
2183
2182
|
const light_Card = {
|
|
2184
2183
|
background: "hsl(0, 0%, 97.3%)",
|
|
2185
2184
|
backgroundHover: "hsl(0, 0%, 95.1%)",
|
|
@@ -2201,6 +2200,7 @@ const light_Card = {
|
|
|
2201
2200
|
const light_DrawerFrame = light_Card;
|
|
2202
2201
|
const light_Progress = light_Card;
|
|
2203
2202
|
const light_TooltipArrow = light_Card;
|
|
2203
|
+
const light_SliderTrack = light_Card;
|
|
2204
2204
|
const light_Button = {
|
|
2205
2205
|
background: "hsl(0, 0%, 95.1%)",
|
|
2206
2206
|
backgroundHover: "hsl(0, 0%, 94.0%)",
|
|
@@ -2240,26 +2240,26 @@ const light_Checkbox = {
|
|
|
2240
2240
|
const light_SliderTrackActive = light_Checkbox;
|
|
2241
2241
|
const light_Switch = light_Checkbox;
|
|
2242
2242
|
const light_TooltipContent = light_Checkbox;
|
|
2243
|
-
const
|
|
2244
|
-
background: "
|
|
2245
|
-
backgroundHover: "
|
|
2246
|
-
backgroundPress: "hsl(
|
|
2247
|
-
backgroundFocus: "hsl(358,
|
|
2248
|
-
backgroundStrong: "
|
|
2243
|
+
const light_SwitchThumb = {
|
|
2244
|
+
background: "#fff",
|
|
2245
|
+
backgroundHover: "#fff",
|
|
2246
|
+
backgroundPress: "hsl(351, 89.0%, 96.0%)",
|
|
2247
|
+
backgroundFocus: "hsl(358, 100%, 69.5%)",
|
|
2248
|
+
backgroundStrong: "#fff",
|
|
2249
2249
|
backgroundTransparent: "#fff",
|
|
2250
2250
|
color: "hsl(353, 23.0%, 9.8%)",
|
|
2251
2251
|
colorHover: "hsl(357, 34.4%, 12.0%)",
|
|
2252
2252
|
colorPress: "hsl(353, 23.0%, 9.8%)",
|
|
2253
2253
|
colorFocus: "hsl(357, 34.4%, 12.0%)",
|
|
2254
2254
|
colorTransparent: "hsl(353, 23.0%, 9.8%)",
|
|
2255
|
-
borderColor: "hsl(358,
|
|
2256
|
-
borderColorHover: "hsl(
|
|
2257
|
-
borderColorFocus: "hsl(
|
|
2258
|
-
borderColorPress: "hsl(358,
|
|
2259
|
-
placeholderColor: "hsl(
|
|
2255
|
+
borderColor: "hsl(358, 100%, 69.5%)",
|
|
2256
|
+
borderColorHover: "hsl(358, 85.3%, 64.0%)",
|
|
2257
|
+
borderColorFocus: "hsl(351, 89.0%, 96.0%)",
|
|
2258
|
+
borderColorPress: "hsl(358, 100%, 69.5%)",
|
|
2259
|
+
placeholderColor: "hsl(357, 34.4%, 12.0%)"
|
|
2260
2260
|
};
|
|
2261
|
-
const
|
|
2262
|
-
const
|
|
2261
|
+
const dark_red_SwitchThumb = light_SwitchThumb;
|
|
2262
|
+
const light_SliderThumb = {
|
|
2263
2263
|
background: "hsl(0, 0%, 42.5%)",
|
|
2264
2264
|
backgroundHover: "hsl(0, 0%, 50.3%)",
|
|
2265
2265
|
backgroundPress: "hsl(0, 0%, 56.1%)",
|
|
@@ -2277,26 +2277,8 @@ const light_Tooltip = {
|
|
|
2277
2277
|
borderColorPress: "hsl(0, 0%, 81.0%)",
|
|
2278
2278
|
placeholderColor: "hsl(0, 0%, 95.1%)"
|
|
2279
2279
|
};
|
|
2280
|
-
const
|
|
2281
|
-
const
|
|
2282
|
-
background: "hsl(358, 85.3%, 64.0%)",
|
|
2283
|
-
backgroundHover: "hsl(358, 75.0%, 59.0%)",
|
|
2284
|
-
backgroundPress: "hsl(358, 65.0%, 40.4%)",
|
|
2285
|
-
backgroundFocus: "hsl(356, 55.2%, 25.9%)",
|
|
2286
|
-
backgroundStrong: "hsl(358, 100%, 69.5%)",
|
|
2287
|
-
backgroundTransparent: "hsl(351, 89.0%, 96.0%)",
|
|
2288
|
-
color: "hsl(353, 23.0%, 9.8%)",
|
|
2289
|
-
colorHover: "hsl(357, 34.4%, 12.0%)",
|
|
2290
|
-
colorPress: "hsl(353, 23.0%, 9.8%)",
|
|
2291
|
-
colorFocus: "hsl(357, 34.4%, 12.0%)",
|
|
2292
|
-
colorTransparent: "hsl(357, 34.4%, 12.0%)",
|
|
2293
|
-
borderColor: "hsl(356, 55.2%, 25.9%)",
|
|
2294
|
-
borderColorHover: "hsl(356, 51.1%, 21.9%)",
|
|
2295
|
-
borderColorFocus: "hsl(358, 65.0%, 40.4%)",
|
|
2296
|
-
borderColorPress: "hsl(356, 55.2%, 25.9%)",
|
|
2297
|
-
placeholderColor: "hsl(356, 55.2%, 25.9%)"
|
|
2298
|
-
};
|
|
2299
|
-
const dark_red_SwitchThumb = light_SwitchThumb;
|
|
2280
|
+
const light_Tooltip = light_SliderThumb;
|
|
2281
|
+
const light_ProgressIndicator = light_SliderThumb;
|
|
2300
2282
|
const light_Input = {
|
|
2301
2283
|
background: "#fff",
|
|
2302
2284
|
backgroundHover: "#f9f9f9",
|
|
@@ -2367,6 +2349,7 @@ const dark_Card = {
|
|
|
2367
2349
|
const dark_DrawerFrame = dark_Card;
|
|
2368
2350
|
const dark_Progress = dark_Card;
|
|
2369
2351
|
const dark_TooltipArrow = dark_Card;
|
|
2352
|
+
const dark_SliderTrack = dark_Card;
|
|
2370
2353
|
const dark_Button = {
|
|
2371
2354
|
background: "#232323",
|
|
2372
2355
|
backgroundHover: "#282828",
|
|
@@ -2406,43 +2389,25 @@ const dark_Checkbox = {
|
|
|
2406
2389
|
const dark_SliderTrackActive = dark_Checkbox;
|
|
2407
2390
|
const dark_Switch = dark_Checkbox;
|
|
2408
2391
|
const dark_TooltipContent = dark_Checkbox;
|
|
2409
|
-
const
|
|
2410
|
-
background: "#
|
|
2411
|
-
backgroundHover: "#
|
|
2412
|
-
backgroundPress: "#
|
|
2413
|
-
backgroundFocus: "#
|
|
2414
|
-
backgroundStrong: "#
|
|
2415
|
-
backgroundTransparent: "#050505",
|
|
2416
|
-
color: "#fff",
|
|
2417
|
-
colorHover: "#a5a5a5",
|
|
2418
|
-
colorPress: "#fff",
|
|
2419
|
-
colorFocus: "#a5a5a5",
|
|
2420
|
-
colorTransparent: "#fff",
|
|
2421
|
-
borderColor: "#232323",
|
|
2422
|
-
borderColorHover: "#282828",
|
|
2423
|
-
borderColorFocus: "#191919",
|
|
2424
|
-
borderColorPress: "#232323",
|
|
2425
|
-
placeholderColor: "#626262"
|
|
2426
|
-
};
|
|
2427
|
-
const dark_SliderThumb = {
|
|
2428
|
-
background: "#626262",
|
|
2429
|
-
backgroundHover: "#545454",
|
|
2430
|
-
backgroundPress: "#494949",
|
|
2431
|
-
backgroundFocus: "#424242",
|
|
2432
|
-
backgroundStrong: "#a5a5a5",
|
|
2392
|
+
const dark_SwitchThumb = {
|
|
2393
|
+
background: "#fff",
|
|
2394
|
+
backgroundHover: "#fff",
|
|
2395
|
+
backgroundPress: "#a5a5a5",
|
|
2396
|
+
backgroundFocus: "#626262",
|
|
2397
|
+
backgroundStrong: "#fff",
|
|
2433
2398
|
backgroundTransparent: "#fff",
|
|
2434
2399
|
color: "#050505",
|
|
2435
2400
|
colorHover: "#151515",
|
|
2436
2401
|
colorPress: "#050505",
|
|
2437
2402
|
colorFocus: "#151515",
|
|
2438
2403
|
colorTransparent: "#050505",
|
|
2439
|
-
borderColor: "#
|
|
2440
|
-
borderColorHover: "#
|
|
2441
|
-
borderColorFocus: "#
|
|
2442
|
-
borderColorPress: "#
|
|
2443
|
-
placeholderColor: "#
|
|
2404
|
+
borderColor: "#626262",
|
|
2405
|
+
borderColorHover: "#545454",
|
|
2406
|
+
borderColorFocus: "#a5a5a5",
|
|
2407
|
+
borderColorPress: "#626262",
|
|
2408
|
+
placeholderColor: "#151515"
|
|
2444
2409
|
};
|
|
2445
|
-
const
|
|
2410
|
+
const dark_SliderThumb = {
|
|
2446
2411
|
background: "#a5a5a5",
|
|
2447
2412
|
backgroundHover: "#626262",
|
|
2448
2413
|
backgroundPress: "#545454",
|
|
@@ -2460,25 +2425,8 @@ const dark_Tooltip = {
|
|
|
2460
2425
|
borderColorPress: "#494949",
|
|
2461
2426
|
placeholderColor: "#232323"
|
|
2462
2427
|
};
|
|
2463
|
-
const
|
|
2464
|
-
const
|
|
2465
|
-
background: "#545454",
|
|
2466
|
-
backgroundHover: "#494949",
|
|
2467
|
-
backgroundPress: "#424242",
|
|
2468
|
-
backgroundFocus: "#323232",
|
|
2469
|
-
backgroundStrong: "#626262",
|
|
2470
|
-
backgroundTransparent: "#a5a5a5",
|
|
2471
|
-
color: "#050505",
|
|
2472
|
-
colorHover: "#151515",
|
|
2473
|
-
colorPress: "#050505",
|
|
2474
|
-
colorFocus: "#151515",
|
|
2475
|
-
colorTransparent: "#151515",
|
|
2476
|
-
borderColor: "#323232",
|
|
2477
|
-
borderColorHover: "#282828",
|
|
2478
|
-
borderColorFocus: "#424242",
|
|
2479
|
-
borderColorPress: "#323232",
|
|
2480
|
-
placeholderColor: "#323232"
|
|
2481
|
-
};
|
|
2428
|
+
const dark_Tooltip = dark_SliderThumb;
|
|
2429
|
+
const dark_ProgressIndicator = dark_SliderThumb;
|
|
2482
2430
|
const dark_Input = {
|
|
2483
2431
|
background: "#151515",
|
|
2484
2432
|
backgroundHover: "#191919",
|
|
@@ -2516,7 +2464,6 @@ const light_orange_ListItem = {
|
|
|
2516
2464
|
borderColorPress: "hsl(24, 100%, 95.3%)",
|
|
2517
2465
|
placeholderColor: "hsl(24, 100%, 37.0%)"
|
|
2518
2466
|
};
|
|
2519
|
-
const light_orange_SliderTrack = light_orange_ListItem;
|
|
2520
2467
|
const light_orange_Card = {
|
|
2521
2468
|
background: "hsl(24, 100%, 95.3%)",
|
|
2522
2469
|
backgroundHover: "hsl(25, 100%, 92.2%)",
|
|
@@ -2538,6 +2485,7 @@ const light_orange_Card = {
|
|
|
2538
2485
|
const light_orange_DrawerFrame = light_orange_Card;
|
|
2539
2486
|
const light_orange_Progress = light_orange_Card;
|
|
2540
2487
|
const light_orange_TooltipArrow = light_orange_Card;
|
|
2488
|
+
const light_orange_SliderTrack = light_orange_Card;
|
|
2541
2489
|
const light_orange_Button = {
|
|
2542
2490
|
background: "hsl(25, 100%, 92.2%)",
|
|
2543
2491
|
backgroundHover: "hsl(25, 100%, 88.2%)",
|
|
@@ -2577,31 +2525,31 @@ const light_orange_Checkbox = {
|
|
|
2577
2525
|
const light_orange_SliderTrackActive = light_orange_Checkbox;
|
|
2578
2526
|
const light_orange_Switch = light_orange_Checkbox;
|
|
2579
2527
|
const light_orange_TooltipContent = light_orange_Checkbox;
|
|
2580
|
-
const
|
|
2581
|
-
background: "hsl(
|
|
2582
|
-
backgroundHover: "hsl(
|
|
2583
|
-
backgroundPress: "hsl(
|
|
2584
|
-
backgroundFocus: "hsl(
|
|
2585
|
-
backgroundStrong: "hsl(
|
|
2528
|
+
const light_orange_SwitchThumb = {
|
|
2529
|
+
background: "hsl(0, 0%, 9.0%)",
|
|
2530
|
+
backgroundHover: "hsl(0, 0%, 9.0%)",
|
|
2531
|
+
backgroundPress: "hsl(354, 50.0%, 14.6%)",
|
|
2532
|
+
backgroundFocus: "hsl(358, 65.0%, 48.7%)",
|
|
2533
|
+
backgroundStrong: "hsl(0, 0%, 9.0%)",
|
|
2586
2534
|
backgroundTransparent: "hsl(0, 0%, 9.0%)",
|
|
2587
2535
|
color: "hsl(359, 100%, 99.4%)",
|
|
2588
2536
|
colorHover: "hsl(359, 100%, 98.6%)",
|
|
2589
2537
|
colorPress: "hsl(359, 100%, 99.4%)",
|
|
2590
2538
|
colorFocus: "hsl(359, 100%, 98.6%)",
|
|
2591
2539
|
colorTransparent: "hsl(359, 100%, 99.4%)",
|
|
2592
|
-
borderColor: "hsl(
|
|
2593
|
-
borderColorHover: "hsl(
|
|
2594
|
-
borderColorFocus: "hsl(
|
|
2595
|
-
borderColorPress: "hsl(
|
|
2596
|
-
placeholderColor: "hsl(
|
|
2597
|
-
};
|
|
2598
|
-
const
|
|
2599
|
-
const
|
|
2600
|
-
const
|
|
2601
|
-
const
|
|
2602
|
-
const
|
|
2603
|
-
const
|
|
2604
|
-
const
|
|
2540
|
+
borderColor: "hsl(354, 50.0%, 14.6%)",
|
|
2541
|
+
borderColorHover: "hsl(358, 65.0%, 48.7%)",
|
|
2542
|
+
borderColorFocus: "hsl(354, 50.0%, 14.6%)",
|
|
2543
|
+
borderColorPress: "hsl(354, 50.0%, 14.6%)",
|
|
2544
|
+
placeholderColor: "hsl(359, 100%, 98.6%)"
|
|
2545
|
+
};
|
|
2546
|
+
const light_yellow_SwitchThumb = light_orange_SwitchThumb;
|
|
2547
|
+
const light_green_SwitchThumb = light_orange_SwitchThumb;
|
|
2548
|
+
const light_blue_SwitchThumb = light_orange_SwitchThumb;
|
|
2549
|
+
const light_purple_SwitchThumb = light_orange_SwitchThumb;
|
|
2550
|
+
const light_pink_SwitchThumb = light_orange_SwitchThumb;
|
|
2551
|
+
const light_red_SwitchThumb = light_orange_SwitchThumb;
|
|
2552
|
+
const light_orange_SliderThumb = {
|
|
2605
2553
|
background: "hsl(15, 60.0%, 17.0%)",
|
|
2606
2554
|
backgroundHover: "hsl(24, 100%, 37.0%)",
|
|
2607
2555
|
backgroundPress: "hsl(24, 100%, 46.5%)",
|
|
@@ -2619,31 +2567,8 @@ const light_orange_Tooltip = {
|
|
|
2619
2567
|
borderColorPress: "hsl(24, 100%, 46.5%)",
|
|
2620
2568
|
placeholderColor: "hsl(25, 100%, 92.2%)"
|
|
2621
2569
|
};
|
|
2622
|
-
const
|
|
2623
|
-
const
|
|
2624
|
-
background: "hsl(358, 69.4%, 55.2%)",
|
|
2625
|
-
backgroundHover: "hsl(358, 75.0%, 59.0%)",
|
|
2626
|
-
backgroundPress: "hsl(359, 69.5%, 74.3%)",
|
|
2627
|
-
backgroundFocus: "hsl(360, 81.7%, 87.8%)",
|
|
2628
|
-
backgroundStrong: "hsl(358, 65.0%, 48.7%)",
|
|
2629
|
-
backgroundTransparent: "hsl(354, 50.0%, 14.6%)",
|
|
2630
|
-
color: "hsl(359, 100%, 99.4%)",
|
|
2631
|
-
colorHover: "hsl(359, 100%, 98.6%)",
|
|
2632
|
-
colorPress: "hsl(359, 100%, 99.4%)",
|
|
2633
|
-
colorFocus: "hsl(359, 100%, 98.6%)",
|
|
2634
|
-
colorTransparent: "hsl(359, 100%, 98.6%)",
|
|
2635
|
-
borderColor: "hsl(359, 69.5%, 74.3%)",
|
|
2636
|
-
borderColorHover: "hsl(360, 81.7%, 87.8%)",
|
|
2637
|
-
borderColorFocus: "hsl(359, 69.5%, 74.3%)",
|
|
2638
|
-
borderColorPress: "hsl(359, 69.5%, 74.3%)",
|
|
2639
|
-
placeholderColor: "hsl(360, 81.7%, 87.8%)"
|
|
2640
|
-
};
|
|
2641
|
-
const light_yellow_SwitchThumb = light_orange_SwitchThumb;
|
|
2642
|
-
const light_green_SwitchThumb = light_orange_SwitchThumb;
|
|
2643
|
-
const light_blue_SwitchThumb = light_orange_SwitchThumb;
|
|
2644
|
-
const light_purple_SwitchThumb = light_orange_SwitchThumb;
|
|
2645
|
-
const light_pink_SwitchThumb = light_orange_SwitchThumb;
|
|
2646
|
-
const light_red_SwitchThumb = light_orange_SwitchThumb;
|
|
2570
|
+
const light_orange_Tooltip = light_orange_SliderThumb;
|
|
2571
|
+
const light_orange_ProgressIndicator = light_orange_SliderThumb;
|
|
2647
2572
|
const light_orange_Input = {
|
|
2648
2573
|
background: "hsl(24, 70.0%, 99.0%)",
|
|
2649
2574
|
backgroundHover: "hsl(24, 83.3%, 97.6%)",
|
|
@@ -2681,7 +2606,6 @@ const light_yellow_ListItem = {
|
|
|
2681
2606
|
borderColorPress: "hsl(55, 100%, 90.9%)",
|
|
2682
2607
|
placeholderColor: "hsl(42, 100%, 29.0%)"
|
|
2683
2608
|
};
|
|
2684
|
-
const light_yellow_SliderTrack = light_yellow_ListItem;
|
|
2685
2609
|
const light_yellow_Card = {
|
|
2686
2610
|
background: "hsl(55, 100%, 90.9%)",
|
|
2687
2611
|
backgroundHover: "hsl(54, 100%, 86.6%)",
|
|
@@ -2703,6 +2627,7 @@ const light_yellow_Card = {
|
|
|
2703
2627
|
const light_yellow_DrawerFrame = light_yellow_Card;
|
|
2704
2628
|
const light_yellow_Progress = light_yellow_Card;
|
|
2705
2629
|
const light_yellow_TooltipArrow = light_yellow_Card;
|
|
2630
|
+
const light_yellow_SliderTrack = light_yellow_Card;
|
|
2706
2631
|
const light_yellow_Button = {
|
|
2707
2632
|
background: "hsl(54, 100%, 86.6%)",
|
|
2708
2633
|
backgroundHover: "hsl(52, 97.9%, 82.0%)",
|
|
@@ -2742,7 +2667,7 @@ const light_yellow_Checkbox = {
|
|
|
2742
2667
|
const light_yellow_SliderTrackActive = light_yellow_Checkbox;
|
|
2743
2668
|
const light_yellow_Switch = light_yellow_Checkbox;
|
|
2744
2669
|
const light_yellow_TooltipContent = light_yellow_Checkbox;
|
|
2745
|
-
const
|
|
2670
|
+
const light_yellow_SliderThumb = {
|
|
2746
2671
|
background: "hsl(40, 55.0%, 13.5%)",
|
|
2747
2672
|
backgroundHover: "hsl(42, 100%, 29.0%)",
|
|
2748
2673
|
backgroundPress: "hsl(50, 100%, 48.5%)",
|
|
@@ -2760,7 +2685,8 @@ const light_yellow_Tooltip = {
|
|
|
2760
2685
|
borderColorPress: "hsl(50, 100%, 48.5%)",
|
|
2761
2686
|
placeholderColor: "hsl(54, 100%, 86.6%)"
|
|
2762
2687
|
};
|
|
2763
|
-
const
|
|
2688
|
+
const light_yellow_Tooltip = light_yellow_SliderThumb;
|
|
2689
|
+
const light_yellow_ProgressIndicator = light_yellow_SliderThumb;
|
|
2764
2690
|
const light_yellow_Input = {
|
|
2765
2691
|
background: "hsl(60, 54.0%, 98.5%)",
|
|
2766
2692
|
backgroundHover: "hsl(52, 100%, 95.5%)",
|
|
@@ -2798,7 +2724,6 @@ const light_green_ListItem = {
|
|
|
2798
2724
|
borderColorPress: "hsl(139, 55.2%, 94.5%)",
|
|
2799
2725
|
placeholderColor: "hsl(153, 67.0%, 28.5%)"
|
|
2800
2726
|
};
|
|
2801
|
-
const light_green_SliderTrack = light_green_ListItem;
|
|
2802
2727
|
const light_green_Card = {
|
|
2803
2728
|
background: "hsl(139, 55.2%, 94.5%)",
|
|
2804
2729
|
backgroundHover: "hsl(140, 48.7%, 91.0%)",
|
|
@@ -2820,6 +2745,7 @@ const light_green_Card = {
|
|
|
2820
2745
|
const light_green_DrawerFrame = light_green_Card;
|
|
2821
2746
|
const light_green_Progress = light_green_Card;
|
|
2822
2747
|
const light_green_TooltipArrow = light_green_Card;
|
|
2748
|
+
const light_green_SliderTrack = light_green_Card;
|
|
2823
2749
|
const light_green_Button = {
|
|
2824
2750
|
background: "hsl(140, 48.7%, 91.0%)",
|
|
2825
2751
|
backgroundHover: "hsl(141, 43.7%, 86.0%)",
|
|
@@ -2859,7 +2785,7 @@ const light_green_Checkbox = {
|
|
|
2859
2785
|
const light_green_SliderTrackActive = light_green_Checkbox;
|
|
2860
2786
|
const light_green_Switch = light_green_Checkbox;
|
|
2861
2787
|
const light_green_TooltipContent = light_green_Checkbox;
|
|
2862
|
-
const
|
|
2788
|
+
const light_green_SliderThumb = {
|
|
2863
2789
|
background: "hsl(155, 40.0%, 14.0%)",
|
|
2864
2790
|
backgroundHover: "hsl(153, 67.0%, 28.5%)",
|
|
2865
2791
|
backgroundPress: "hsl(152, 57.5%, 37.6%)",
|
|
@@ -2877,7 +2803,8 @@ const light_green_Tooltip = {
|
|
|
2877
2803
|
borderColorPress: "hsl(152, 57.5%, 37.6%)",
|
|
2878
2804
|
placeholderColor: "hsl(140, 48.7%, 91.0%)"
|
|
2879
2805
|
};
|
|
2880
|
-
const
|
|
2806
|
+
const light_green_Tooltip = light_green_SliderThumb;
|
|
2807
|
+
const light_green_ProgressIndicator = light_green_SliderThumb;
|
|
2881
2808
|
const light_green_Input = {
|
|
2882
2809
|
background: "hsl(136, 50.0%, 98.9%)",
|
|
2883
2810
|
backgroundHover: "hsl(138, 62.5%, 96.9%)",
|
|
@@ -2915,7 +2842,6 @@ const light_blue_ListItem = {
|
|
|
2915
2842
|
borderColorPress: "hsl(209, 100%, 96.5%)",
|
|
2916
2843
|
placeholderColor: "hsl(211, 100%, 43.2%)"
|
|
2917
2844
|
};
|
|
2918
|
-
const light_blue_SliderTrack = light_blue_ListItem;
|
|
2919
2845
|
const light_blue_Card = {
|
|
2920
2846
|
background: "hsl(209, 100%, 96.5%)",
|
|
2921
2847
|
backgroundHover: "hsl(210, 98.8%, 94.0%)",
|
|
@@ -2937,6 +2863,7 @@ const light_blue_Card = {
|
|
|
2937
2863
|
const light_blue_DrawerFrame = light_blue_Card;
|
|
2938
2864
|
const light_blue_Progress = light_blue_Card;
|
|
2939
2865
|
const light_blue_TooltipArrow = light_blue_Card;
|
|
2866
|
+
const light_blue_SliderTrack = light_blue_Card;
|
|
2940
2867
|
const light_blue_Button = {
|
|
2941
2868
|
background: "hsl(210, 98.8%, 94.0%)",
|
|
2942
2869
|
backgroundHover: "hsl(209, 95.0%, 90.1%)",
|
|
@@ -2976,7 +2903,7 @@ const light_blue_Checkbox = {
|
|
|
2976
2903
|
const light_blue_SliderTrackActive = light_blue_Checkbox;
|
|
2977
2904
|
const light_blue_Switch = light_blue_Checkbox;
|
|
2978
2905
|
const light_blue_TooltipContent = light_blue_Checkbox;
|
|
2979
|
-
const
|
|
2906
|
+
const light_blue_SliderThumb = {
|
|
2980
2907
|
background: "hsl(211, 100%, 15.0%)",
|
|
2981
2908
|
backgroundHover: "hsl(211, 100%, 43.2%)",
|
|
2982
2909
|
backgroundPress: "hsl(208, 100%, 47.3%)",
|
|
@@ -2994,7 +2921,8 @@ const light_blue_Tooltip = {
|
|
|
2994
2921
|
borderColorPress: "hsl(208, 100%, 47.3%)",
|
|
2995
2922
|
placeholderColor: "hsl(210, 98.8%, 94.0%)"
|
|
2996
2923
|
};
|
|
2997
|
-
const
|
|
2924
|
+
const light_blue_Tooltip = light_blue_SliderThumb;
|
|
2925
|
+
const light_blue_ProgressIndicator = light_blue_SliderThumb;
|
|
2998
2926
|
const light_blue_Input = {
|
|
2999
2927
|
background: "hsl(206, 100%, 99.2%)",
|
|
3000
2928
|
backgroundHover: "hsl(210, 100%, 98.0%)",
|
|
@@ -3032,7 +2960,6 @@ const light_purple_ListItem = {
|
|
|
3032
2960
|
borderColorPress: "hsl(276, 83.1%, 97.0%)",
|
|
3033
2961
|
placeholderColor: "hsl(272, 50.0%, 45.8%)"
|
|
3034
2962
|
};
|
|
3035
|
-
const light_purple_SliderTrack = light_purple_ListItem;
|
|
3036
2963
|
const light_purple_Card = {
|
|
3037
2964
|
background: "hsl(276, 83.1%, 97.0%)",
|
|
3038
2965
|
backgroundHover: "hsl(275, 76.4%, 94.7%)",
|
|
@@ -3054,6 +2981,7 @@ const light_purple_Card = {
|
|
|
3054
2981
|
const light_purple_DrawerFrame = light_purple_Card;
|
|
3055
2982
|
const light_purple_Progress = light_purple_Card;
|
|
3056
2983
|
const light_purple_TooltipArrow = light_purple_Card;
|
|
2984
|
+
const light_purple_SliderTrack = light_purple_Card;
|
|
3057
2985
|
const light_purple_Button = {
|
|
3058
2986
|
background: "hsl(275, 76.4%, 94.7%)",
|
|
3059
2987
|
backgroundHover: "hsl(275, 70.8%, 91.8%)",
|
|
@@ -3093,7 +3021,7 @@ const light_purple_Checkbox = {
|
|
|
3093
3021
|
const light_purple_SliderTrackActive = light_purple_Checkbox;
|
|
3094
3022
|
const light_purple_Switch = light_purple_Checkbox;
|
|
3095
3023
|
const light_purple_TooltipContent = light_purple_Checkbox;
|
|
3096
|
-
const
|
|
3024
|
+
const light_purple_SliderThumb = {
|
|
3097
3025
|
background: "hsl(272, 66.0%, 16.0%)",
|
|
3098
3026
|
backgroundHover: "hsl(272, 50.0%, 45.8%)",
|
|
3099
3027
|
backgroundPress: "hsl(272, 46.8%, 50.3%)",
|
|
@@ -3111,7 +3039,8 @@ const light_purple_Tooltip = {
|
|
|
3111
3039
|
borderColorPress: "hsl(272, 46.8%, 50.3%)",
|
|
3112
3040
|
placeholderColor: "hsl(275, 76.4%, 94.7%)"
|
|
3113
3041
|
};
|
|
3114
|
-
const
|
|
3042
|
+
const light_purple_Tooltip = light_purple_SliderThumb;
|
|
3043
|
+
const light_purple_ProgressIndicator = light_purple_SliderThumb;
|
|
3115
3044
|
const light_purple_Input = {
|
|
3116
3045
|
background: "hsl(280, 65.0%, 99.4%)",
|
|
3117
3046
|
backgroundHover: "hsl(276, 100%, 99.0%)",
|
|
@@ -3149,7 +3078,6 @@ const light_pink_ListItem = {
|
|
|
3149
3078
|
borderColorPress: "hsl(323, 86.3%, 96.5%)",
|
|
3150
3079
|
placeholderColor: "hsl(322, 75.0%, 46.0%)"
|
|
3151
3080
|
};
|
|
3152
|
-
const light_pink_SliderTrack = light_pink_ListItem;
|
|
3153
3081
|
const light_pink_Card = {
|
|
3154
3082
|
background: "hsl(323, 86.3%, 96.5%)",
|
|
3155
3083
|
backgroundHover: "hsl(323, 78.7%, 94.2%)",
|
|
@@ -3171,6 +3099,7 @@ const light_pink_Card = {
|
|
|
3171
3099
|
const light_pink_DrawerFrame = light_pink_Card;
|
|
3172
3100
|
const light_pink_Progress = light_pink_Card;
|
|
3173
3101
|
const light_pink_TooltipArrow = light_pink_Card;
|
|
3102
|
+
const light_pink_SliderTrack = light_pink_Card;
|
|
3174
3103
|
const light_pink_Button = {
|
|
3175
3104
|
background: "hsl(323, 78.7%, 94.2%)",
|
|
3176
3105
|
backgroundHover: "hsl(323, 72.2%, 91.1%)",
|
|
@@ -3210,7 +3139,7 @@ const light_pink_Checkbox = {
|
|
|
3210
3139
|
const light_pink_SliderTrackActive = light_pink_Checkbox;
|
|
3211
3140
|
const light_pink_Switch = light_pink_Checkbox;
|
|
3212
3141
|
const light_pink_TooltipContent = light_pink_Checkbox;
|
|
3213
|
-
const
|
|
3142
|
+
const light_pink_SliderThumb = {
|
|
3214
3143
|
background: "hsl(320, 70.0%, 13.5%)",
|
|
3215
3144
|
backgroundHover: "hsl(322, 75.0%, 46.0%)",
|
|
3216
3145
|
backgroundPress: "hsl(322, 63.9%, 50.7%)",
|
|
@@ -3228,7 +3157,8 @@ const light_pink_Tooltip = {
|
|
|
3228
3157
|
borderColorPress: "hsl(322, 63.9%, 50.7%)",
|
|
3229
3158
|
placeholderColor: "hsl(323, 78.7%, 94.2%)"
|
|
3230
3159
|
};
|
|
3231
|
-
const
|
|
3160
|
+
const light_pink_Tooltip = light_pink_SliderThumb;
|
|
3161
|
+
const light_pink_ProgressIndicator = light_pink_SliderThumb;
|
|
3232
3162
|
const light_pink_Input = {
|
|
3233
3163
|
background: "hsl(322, 100%, 99.4%)",
|
|
3234
3164
|
backgroundHover: "hsl(323, 100%, 98.4%)",
|
|
@@ -3266,7 +3196,6 @@ const light_red_ListItem = {
|
|
|
3266
3196
|
borderColorPress: "hsl(360, 100%, 96.8%)",
|
|
3267
3197
|
placeholderColor: "hsl(358, 65.0%, 48.7%)"
|
|
3268
3198
|
};
|
|
3269
|
-
const light_red_SliderTrack = light_red_ListItem;
|
|
3270
3199
|
const light_red_Card = {
|
|
3271
3200
|
background: "hsl(360, 100%, 96.8%)",
|
|
3272
3201
|
backgroundHover: "hsl(360, 97.9%, 94.8%)",
|
|
@@ -3288,6 +3217,7 @@ const light_red_Card = {
|
|
|
3288
3217
|
const light_red_DrawerFrame = light_red_Card;
|
|
3289
3218
|
const light_red_Progress = light_red_Card;
|
|
3290
3219
|
const light_red_TooltipArrow = light_red_Card;
|
|
3220
|
+
const light_red_SliderTrack = light_red_Card;
|
|
3291
3221
|
const light_red_Button = {
|
|
3292
3222
|
background: "hsl(360, 97.9%, 94.8%)",
|
|
3293
3223
|
backgroundHover: "hsl(360, 90.2%, 91.9%)",
|
|
@@ -3327,7 +3257,7 @@ const light_red_Checkbox = {
|
|
|
3327
3257
|
const light_red_SliderTrackActive = light_red_Checkbox;
|
|
3328
3258
|
const light_red_Switch = light_red_Checkbox;
|
|
3329
3259
|
const light_red_TooltipContent = light_red_Checkbox;
|
|
3330
|
-
const
|
|
3260
|
+
const light_red_SliderThumb = {
|
|
3331
3261
|
background: "hsl(354, 50.0%, 14.6%)",
|
|
3332
3262
|
backgroundHover: "hsl(358, 65.0%, 48.7%)",
|
|
3333
3263
|
backgroundPress: "hsl(358, 69.4%, 55.2%)",
|
|
@@ -3345,7 +3275,8 @@ const light_red_Tooltip = {
|
|
|
3345
3275
|
borderColorPress: "hsl(358, 69.4%, 55.2%)",
|
|
3346
3276
|
placeholderColor: "hsl(360, 97.9%, 94.8%)"
|
|
3347
3277
|
};
|
|
3348
|
-
const
|
|
3278
|
+
const light_red_Tooltip = light_red_SliderThumb;
|
|
3279
|
+
const light_red_ProgressIndicator = light_red_SliderThumb;
|
|
3349
3280
|
const light_red_Input = {
|
|
3350
3281
|
background: "hsl(359, 100%, 99.4%)",
|
|
3351
3282
|
backgroundHover: "hsl(359, 100%, 98.6%)",
|
|
@@ -3386,6 +3317,7 @@ const dark_orange_Card = {
|
|
|
3386
3317
|
const dark_orange_DrawerFrame = dark_orange_Card;
|
|
3387
3318
|
const dark_orange_Progress = dark_orange_Card;
|
|
3388
3319
|
const dark_orange_TooltipArrow = dark_orange_Card;
|
|
3320
|
+
const dark_orange_SliderTrack = dark_orange_Card;
|
|
3389
3321
|
const dark_orange_Button = {
|
|
3390
3322
|
background: "hsl(25, 88.3%, 14.1%)",
|
|
3391
3323
|
backgroundHover: "hsl(24, 87.6%, 16.6%)",
|
|
@@ -3425,43 +3357,25 @@ const dark_orange_Checkbox = {
|
|
|
3425
3357
|
const dark_orange_SliderTrackActive = dark_orange_Checkbox;
|
|
3426
3358
|
const dark_orange_Switch = dark_orange_Checkbox;
|
|
3427
3359
|
const dark_orange_TooltipContent = dark_orange_Checkbox;
|
|
3428
|
-
const
|
|
3429
|
-
background: "
|
|
3430
|
-
backgroundHover: "
|
|
3431
|
-
backgroundPress: "hsl(
|
|
3432
|
-
backgroundFocus: "hsl(
|
|
3433
|
-
backgroundStrong: "
|
|
3434
|
-
backgroundTransparent: "hsl(30, 70.0%, 7.2%)",
|
|
3435
|
-
color: "#fff",
|
|
3436
|
-
colorHover: "hsl(24, 97.0%, 93.2%)",
|
|
3437
|
-
colorPress: "#fff",
|
|
3438
|
-
colorFocus: "hsl(24, 97.0%, 93.2%)",
|
|
3439
|
-
colorTransparent: "#fff",
|
|
3440
|
-
borderColor: "hsl(25, 88.3%, 14.1%)",
|
|
3441
|
-
borderColorHover: "hsl(24, 87.6%, 16.6%)",
|
|
3442
|
-
borderColorFocus: "hsl(26, 91.1%, 11.6%)",
|
|
3443
|
-
borderColorPress: "hsl(25, 88.3%, 14.1%)",
|
|
3444
|
-
placeholderColor: "hsl(24, 100%, 62.2%)"
|
|
3445
|
-
};
|
|
3446
|
-
const dark_orange_SliderThumb = {
|
|
3447
|
-
background: "hsl(24, 100%, 62.2%)",
|
|
3448
|
-
backgroundHover: "hsl(24, 100%, 58.5%)",
|
|
3449
|
-
backgroundPress: "hsl(24, 94.0%, 50.0%)",
|
|
3450
|
-
backgroundFocus: "hsl(25, 100%, 29.0%)",
|
|
3451
|
-
backgroundStrong: "hsl(24, 97.0%, 93.2%)",
|
|
3360
|
+
const dark_orange_SwitchThumb = {
|
|
3361
|
+
background: "#fff",
|
|
3362
|
+
backgroundHover: "#fff",
|
|
3363
|
+
backgroundPress: "hsl(24, 97.0%, 93.2%)",
|
|
3364
|
+
backgroundFocus: "hsl(24, 100%, 62.2%)",
|
|
3365
|
+
backgroundStrong: "#fff",
|
|
3452
3366
|
backgroundTransparent: "#fff",
|
|
3453
3367
|
color: "hsl(30, 70.0%, 7.2%)",
|
|
3454
3368
|
colorHover: "hsl(28, 100%, 8.4%)",
|
|
3455
3369
|
colorPress: "hsl(30, 70.0%, 7.2%)",
|
|
3456
3370
|
colorFocus: "hsl(28, 100%, 8.4%)",
|
|
3457
3371
|
colorTransparent: "hsl(30, 70.0%, 7.2%)",
|
|
3458
|
-
borderColor: "hsl(
|
|
3459
|
-
borderColorHover: "hsl(24,
|
|
3460
|
-
borderColorFocus: "hsl(24,
|
|
3461
|
-
borderColorPress: "hsl(
|
|
3462
|
-
placeholderColor: "hsl(
|
|
3372
|
+
borderColor: "hsl(24, 100%, 62.2%)",
|
|
3373
|
+
borderColorHover: "hsl(24, 100%, 58.5%)",
|
|
3374
|
+
borderColorFocus: "hsl(24, 97.0%, 93.2%)",
|
|
3375
|
+
borderColorPress: "hsl(24, 100%, 62.2%)",
|
|
3376
|
+
placeholderColor: "hsl(28, 100%, 8.4%)"
|
|
3463
3377
|
};
|
|
3464
|
-
const
|
|
3378
|
+
const dark_orange_SliderThumb = {
|
|
3465
3379
|
background: "hsl(24, 97.0%, 93.2%)",
|
|
3466
3380
|
backgroundHover: "hsl(24, 100%, 62.2%)",
|
|
3467
3381
|
backgroundPress: "hsl(24, 100%, 58.5%)",
|
|
@@ -3479,25 +3393,8 @@ const dark_orange_Tooltip = {
|
|
|
3479
3393
|
borderColorPress: "hsl(24, 94.0%, 50.0%)",
|
|
3480
3394
|
placeholderColor: "hsl(25, 88.3%, 14.1%)"
|
|
3481
3395
|
};
|
|
3482
|
-
const
|
|
3483
|
-
const
|
|
3484
|
-
background: "hsl(24, 100%, 58.5%)",
|
|
3485
|
-
backgroundHover: "hsl(24, 94.0%, 50.0%)",
|
|
3486
|
-
backgroundPress: "hsl(25, 100%, 29.0%)",
|
|
3487
|
-
backgroundFocus: "hsl(24, 88.6%, 19.8%)",
|
|
3488
|
-
backgroundStrong: "hsl(24, 100%, 62.2%)",
|
|
3489
|
-
backgroundTransparent: "hsl(24, 97.0%, 93.2%)",
|
|
3490
|
-
color: "hsl(30, 70.0%, 7.2%)",
|
|
3491
|
-
colorHover: "hsl(28, 100%, 8.4%)",
|
|
3492
|
-
colorPress: "hsl(30, 70.0%, 7.2%)",
|
|
3493
|
-
colorFocus: "hsl(28, 100%, 8.4%)",
|
|
3494
|
-
colorTransparent: "hsl(28, 100%, 8.4%)",
|
|
3495
|
-
borderColor: "hsl(24, 88.6%, 19.8%)",
|
|
3496
|
-
borderColorHover: "hsl(24, 87.6%, 16.6%)",
|
|
3497
|
-
borderColorFocus: "hsl(25, 100%, 29.0%)",
|
|
3498
|
-
borderColorPress: "hsl(24, 88.6%, 19.8%)",
|
|
3499
|
-
placeholderColor: "hsl(24, 88.6%, 19.8%)"
|
|
3500
|
-
};
|
|
3396
|
+
const dark_orange_Tooltip = dark_orange_SliderThumb;
|
|
3397
|
+
const dark_orange_ProgressIndicator = dark_orange_SliderThumb;
|
|
3501
3398
|
const dark_orange_Input = {
|
|
3502
3399
|
background: "hsl(28, 100%, 8.4%)",
|
|
3503
3400
|
backgroundHover: "hsl(26, 91.1%, 11.6%)",
|
|
@@ -3538,6 +3435,7 @@ const dark_yellow_Card = {
|
|
|
3538
3435
|
const dark_yellow_DrawerFrame = dark_yellow_Card;
|
|
3539
3436
|
const dark_yellow_Progress = dark_yellow_Card;
|
|
3540
3437
|
const dark_yellow_TooltipArrow = dark_yellow_Card;
|
|
3438
|
+
const dark_yellow_SliderTrack = dark_yellow_Card;
|
|
3541
3439
|
const dark_yellow_Button = {
|
|
3542
3440
|
background: "hsl(45, 100%, 10.4%)",
|
|
3543
3441
|
backgroundHover: "hsl(47, 100%, 12.1%)",
|
|
@@ -3577,43 +3475,25 @@ const dark_yellow_Checkbox = {
|
|
|
3577
3475
|
const dark_yellow_SliderTrackActive = dark_yellow_Checkbox;
|
|
3578
3476
|
const dark_yellow_Switch = dark_yellow_Checkbox;
|
|
3579
3477
|
const dark_yellow_TooltipContent = dark_yellow_Checkbox;
|
|
3580
|
-
const
|
|
3581
|
-
background: "
|
|
3582
|
-
backgroundHover: "
|
|
3583
|
-
backgroundPress: "hsl(
|
|
3584
|
-
backgroundFocus: "hsl(
|
|
3585
|
-
backgroundStrong: "
|
|
3586
|
-
backgroundTransparent: "hsl(45, 100%, 5.5%)",
|
|
3587
|
-
color: "#fff",
|
|
3588
|
-
colorHover: "hsl(53, 100%, 91.0%)",
|
|
3589
|
-
colorPress: "#fff",
|
|
3590
|
-
colorFocus: "hsl(53, 100%, 91.0%)",
|
|
3591
|
-
colorTransparent: "#fff",
|
|
3592
|
-
borderColor: "hsl(45, 100%, 10.4%)",
|
|
3593
|
-
borderColorHover: "hsl(47, 100%, 12.1%)",
|
|
3594
|
-
borderColorFocus: "hsl(45, 100%, 8.7%)",
|
|
3595
|
-
borderColorPress: "hsl(45, 100%, 10.4%)",
|
|
3596
|
-
placeholderColor: "hsl(48, 100%, 47.0%)"
|
|
3597
|
-
};
|
|
3598
|
-
const dark_yellow_SliderThumb = {
|
|
3599
|
-
background: "hsl(48, 100%, 47.0%)",
|
|
3600
|
-
backgroundHover: "hsl(54, 100%, 68.0%)",
|
|
3601
|
-
backgroundPress: "hsl(53, 92.0%, 50.0%)",
|
|
3602
|
-
backgroundFocus: "hsl(50, 100%, 22.0%)",
|
|
3603
|
-
backgroundStrong: "hsl(53, 100%, 91.0%)",
|
|
3478
|
+
const dark_yellow_SwitchThumb = {
|
|
3479
|
+
background: "#fff",
|
|
3480
|
+
backgroundHover: "#fff",
|
|
3481
|
+
backgroundPress: "hsl(53, 100%, 91.0%)",
|
|
3482
|
+
backgroundFocus: "hsl(48, 100%, 47.0%)",
|
|
3483
|
+
backgroundStrong: "#fff",
|
|
3604
3484
|
backgroundTransparent: "#fff",
|
|
3605
3485
|
color: "hsl(45, 100%, 5.5%)",
|
|
3606
3486
|
colorHover: "hsl(46, 100%, 6.7%)",
|
|
3607
3487
|
colorPress: "hsl(45, 100%, 5.5%)",
|
|
3608
3488
|
colorFocus: "hsl(46, 100%, 6.7%)",
|
|
3609
3489
|
colorTransparent: "hsl(45, 100%, 5.5%)",
|
|
3610
|
-
borderColor: "hsl(
|
|
3611
|
-
borderColorHover: "hsl(
|
|
3612
|
-
borderColorFocus: "hsl(53,
|
|
3613
|
-
borderColorPress: "hsl(
|
|
3614
|
-
placeholderColor: "hsl(
|
|
3490
|
+
borderColor: "hsl(48, 100%, 47.0%)",
|
|
3491
|
+
borderColorHover: "hsl(54, 100%, 68.0%)",
|
|
3492
|
+
borderColorFocus: "hsl(53, 100%, 91.0%)",
|
|
3493
|
+
borderColorPress: "hsl(48, 100%, 47.0%)",
|
|
3494
|
+
placeholderColor: "hsl(46, 100%, 6.7%)"
|
|
3615
3495
|
};
|
|
3616
|
-
const
|
|
3496
|
+
const dark_yellow_SliderThumb = {
|
|
3617
3497
|
background: "hsl(53, 100%, 91.0%)",
|
|
3618
3498
|
backgroundHover: "hsl(48, 100%, 47.0%)",
|
|
3619
3499
|
backgroundPress: "hsl(54, 100%, 68.0%)",
|
|
@@ -3631,25 +3511,8 @@ const dark_yellow_Tooltip = {
|
|
|
3631
3511
|
borderColorPress: "hsl(53, 92.0%, 50.0%)",
|
|
3632
3512
|
placeholderColor: "hsl(45, 100%, 10.4%)"
|
|
3633
3513
|
};
|
|
3634
|
-
const
|
|
3635
|
-
const
|
|
3636
|
-
background: "hsl(54, 100%, 68.0%)",
|
|
3637
|
-
backgroundHover: "hsl(53, 92.0%, 50.0%)",
|
|
3638
|
-
backgroundPress: "hsl(50, 100%, 22.0%)",
|
|
3639
|
-
backgroundFocus: "hsl(49, 100%, 14.3%)",
|
|
3640
|
-
backgroundStrong: "hsl(48, 100%, 47.0%)",
|
|
3641
|
-
backgroundTransparent: "hsl(53, 100%, 91.0%)",
|
|
3642
|
-
color: "hsl(45, 100%, 5.5%)",
|
|
3643
|
-
colorHover: "hsl(46, 100%, 6.7%)",
|
|
3644
|
-
colorPress: "hsl(45, 100%, 5.5%)",
|
|
3645
|
-
colorFocus: "hsl(46, 100%, 6.7%)",
|
|
3646
|
-
colorTransparent: "hsl(46, 100%, 6.7%)",
|
|
3647
|
-
borderColor: "hsl(49, 100%, 14.3%)",
|
|
3648
|
-
borderColorHover: "hsl(47, 100%, 12.1%)",
|
|
3649
|
-
borderColorFocus: "hsl(50, 100%, 22.0%)",
|
|
3650
|
-
borderColorPress: "hsl(49, 100%, 14.3%)",
|
|
3651
|
-
placeholderColor: "hsl(49, 100%, 14.3%)"
|
|
3652
|
-
};
|
|
3514
|
+
const dark_yellow_Tooltip = dark_yellow_SliderThumb;
|
|
3515
|
+
const dark_yellow_ProgressIndicator = dark_yellow_SliderThumb;
|
|
3653
3516
|
const dark_yellow_Input = {
|
|
3654
3517
|
background: "hsl(46, 100%, 6.7%)",
|
|
3655
3518
|
backgroundHover: "hsl(45, 100%, 8.7%)",
|
|
@@ -3690,6 +3553,7 @@ const dark_green_Card = {
|
|
|
3690
3553
|
const dark_green_DrawerFrame = dark_green_Card;
|
|
3691
3554
|
const dark_green_Progress = dark_green_Card;
|
|
3692
3555
|
const dark_green_TooltipArrow = dark_green_Card;
|
|
3556
|
+
const dark_green_SliderTrack = dark_green_Card;
|
|
3693
3557
|
const dark_green_Button = {
|
|
3694
3558
|
background: "hsl(154, 48.4%, 12.9%)",
|
|
3695
3559
|
backgroundHover: "hsl(154, 49.7%, 14.9%)",
|
|
@@ -3729,43 +3593,25 @@ const dark_green_Checkbox = {
|
|
|
3729
3593
|
const dark_green_SliderTrackActive = dark_green_Checkbox;
|
|
3730
3594
|
const dark_green_Switch = dark_green_Checkbox;
|
|
3731
3595
|
const dark_green_TooltipContent = dark_green_Checkbox;
|
|
3732
|
-
const
|
|
3733
|
-
background: "
|
|
3734
|
-
backgroundHover: "
|
|
3735
|
-
backgroundPress: "hsl(
|
|
3736
|
-
backgroundFocus: "hsl(
|
|
3737
|
-
backgroundStrong: "
|
|
3738
|
-
backgroundTransparent: "hsl(146, 30.0%, 7.4%)",
|
|
3739
|
-
color: "#fff",
|
|
3740
|
-
colorHover: "hsl(137, 72.0%, 94.0%)",
|
|
3741
|
-
colorPress: "#fff",
|
|
3742
|
-
colorFocus: "hsl(137, 72.0%, 94.0%)",
|
|
3743
|
-
colorTransparent: "#fff",
|
|
3744
|
-
borderColor: "hsl(154, 48.4%, 12.9%)",
|
|
3745
|
-
borderColorHover: "hsl(154, 49.7%, 14.9%)",
|
|
3746
|
-
borderColorFocus: "hsl(155, 46.7%, 10.9%)",
|
|
3747
|
-
borderColorPress: "hsl(154, 48.4%, 12.9%)",
|
|
3748
|
-
placeholderColor: "hsl(151, 50.0%, 53.2%)"
|
|
3749
|
-
};
|
|
3750
|
-
const dark_green_SliderThumb = {
|
|
3751
|
-
background: "hsl(151, 50.0%, 53.2%)",
|
|
3752
|
-
backgroundHover: "hsl(151, 49.3%, 46.5%)",
|
|
3753
|
-
backgroundPress: "hsl(151, 55.0%, 41.5%)",
|
|
3754
|
-
backgroundFocus: "hsl(151, 51.7%, 28.4%)",
|
|
3755
|
-
backgroundStrong: "hsl(137, 72.0%, 94.0%)",
|
|
3596
|
+
const dark_green_SwitchThumb = {
|
|
3597
|
+
background: "#fff",
|
|
3598
|
+
backgroundHover: "#fff",
|
|
3599
|
+
backgroundPress: "hsl(137, 72.0%, 94.0%)",
|
|
3600
|
+
backgroundFocus: "hsl(151, 50.0%, 53.2%)",
|
|
3601
|
+
backgroundStrong: "#fff",
|
|
3756
3602
|
backgroundTransparent: "#fff",
|
|
3757
3603
|
color: "hsl(146, 30.0%, 7.4%)",
|
|
3758
3604
|
colorHover: "hsl(155, 44.2%, 8.4%)",
|
|
3759
3605
|
colorPress: "hsl(146, 30.0%, 7.4%)",
|
|
3760
3606
|
colorFocus: "hsl(155, 44.2%, 8.4%)",
|
|
3761
3607
|
colorTransparent: "hsl(146, 30.0%, 7.4%)",
|
|
3762
|
-
borderColor: "hsl(151,
|
|
3763
|
-
borderColorHover: "hsl(
|
|
3764
|
-
borderColorFocus: "hsl(
|
|
3765
|
-
borderColorPress: "hsl(151,
|
|
3766
|
-
placeholderColor: "hsl(
|
|
3608
|
+
borderColor: "hsl(151, 50.0%, 53.2%)",
|
|
3609
|
+
borderColorHover: "hsl(151, 49.3%, 46.5%)",
|
|
3610
|
+
borderColorFocus: "hsl(137, 72.0%, 94.0%)",
|
|
3611
|
+
borderColorPress: "hsl(151, 50.0%, 53.2%)",
|
|
3612
|
+
placeholderColor: "hsl(155, 44.2%, 8.4%)"
|
|
3767
3613
|
};
|
|
3768
|
-
const
|
|
3614
|
+
const dark_green_SliderThumb = {
|
|
3769
3615
|
background: "hsl(137, 72.0%, 94.0%)",
|
|
3770
3616
|
backgroundHover: "hsl(151, 50.0%, 53.2%)",
|
|
3771
3617
|
backgroundPress: "hsl(151, 49.3%, 46.5%)",
|
|
@@ -3783,25 +3629,8 @@ const dark_green_Tooltip = {
|
|
|
3783
3629
|
borderColorPress: "hsl(151, 55.0%, 41.5%)",
|
|
3784
3630
|
placeholderColor: "hsl(154, 48.4%, 12.9%)"
|
|
3785
3631
|
};
|
|
3786
|
-
const
|
|
3787
|
-
const
|
|
3788
|
-
background: "hsl(151, 49.3%, 46.5%)",
|
|
3789
|
-
backgroundHover: "hsl(151, 55.0%, 41.5%)",
|
|
3790
|
-
backgroundPress: "hsl(151, 51.7%, 28.4%)",
|
|
3791
|
-
backgroundFocus: "hsl(154, 50.9%, 17.6%)",
|
|
3792
|
-
backgroundStrong: "hsl(151, 50.0%, 53.2%)",
|
|
3793
|
-
backgroundTransparent: "hsl(137, 72.0%, 94.0%)",
|
|
3794
|
-
color: "hsl(146, 30.0%, 7.4%)",
|
|
3795
|
-
colorHover: "hsl(155, 44.2%, 8.4%)",
|
|
3796
|
-
colorPress: "hsl(146, 30.0%, 7.4%)",
|
|
3797
|
-
colorFocus: "hsl(155, 44.2%, 8.4%)",
|
|
3798
|
-
colorTransparent: "hsl(155, 44.2%, 8.4%)",
|
|
3799
|
-
borderColor: "hsl(154, 50.9%, 17.6%)",
|
|
3800
|
-
borderColorHover: "hsl(154, 49.7%, 14.9%)",
|
|
3801
|
-
borderColorFocus: "hsl(151, 51.7%, 28.4%)",
|
|
3802
|
-
borderColorPress: "hsl(154, 50.9%, 17.6%)",
|
|
3803
|
-
placeholderColor: "hsl(154, 50.9%, 17.6%)"
|
|
3804
|
-
};
|
|
3632
|
+
const dark_green_Tooltip = dark_green_SliderThumb;
|
|
3633
|
+
const dark_green_ProgressIndicator = dark_green_SliderThumb;
|
|
3805
3634
|
const dark_green_Input = {
|
|
3806
3635
|
background: "hsl(155, 44.2%, 8.4%)",
|
|
3807
3636
|
backgroundHover: "hsl(155, 46.7%, 10.9%)",
|
|
@@ -3842,6 +3671,7 @@ const dark_blue_Card = {
|
|
|
3842
3671
|
const dark_blue_DrawerFrame = dark_blue_Card;
|
|
3843
3672
|
const dark_blue_Progress = dark_blue_Card;
|
|
3844
3673
|
const dark_blue_TooltipArrow = dark_blue_Card;
|
|
3674
|
+
const dark_blue_SliderTrack = dark_blue_Card;
|
|
3845
3675
|
const dark_blue_Button = {
|
|
3846
3676
|
background: "hsl(214, 65.8%, 17.9%)",
|
|
3847
3677
|
backgroundHover: "hsl(213, 71.2%, 20.2%)",
|
|
@@ -3881,43 +3711,25 @@ const dark_blue_Checkbox = {
|
|
|
3881
3711
|
const dark_blue_SliderTrackActive = dark_blue_Checkbox;
|
|
3882
3712
|
const dark_blue_Switch = dark_blue_Checkbox;
|
|
3883
3713
|
const dark_blue_TooltipContent = dark_blue_Checkbox;
|
|
3884
|
-
const
|
|
3885
|
-
background: "
|
|
3886
|
-
backgroundHover: "
|
|
3887
|
-
backgroundPress: "hsl(
|
|
3888
|
-
backgroundFocus: "hsl(
|
|
3889
|
-
backgroundStrong: "
|
|
3890
|
-
backgroundTransparent: "hsl(212, 35.0%, 9.2%)",
|
|
3891
|
-
color: "#fff",
|
|
3892
|
-
colorHover: "hsl(206, 98.0%, 95.8%)",
|
|
3893
|
-
colorPress: "#fff",
|
|
3894
|
-
colorFocus: "hsl(206, 98.0%, 95.8%)",
|
|
3895
|
-
colorTransparent: "#fff",
|
|
3896
|
-
borderColor: "hsl(214, 65.8%, 17.9%)",
|
|
3897
|
-
borderColorHover: "hsl(213, 71.2%, 20.2%)",
|
|
3898
|
-
borderColorFocus: "hsl(214, 59.4%, 15.3%)",
|
|
3899
|
-
borderColorPress: "hsl(214, 65.8%, 17.9%)",
|
|
3900
|
-
placeholderColor: "hsl(210, 100%, 66.1%)"
|
|
3901
|
-
};
|
|
3902
|
-
const dark_blue_SliderThumb = {
|
|
3903
|
-
background: "hsl(210, 100%, 66.1%)",
|
|
3904
|
-
backgroundHover: "hsl(209, 100%, 60.6%)",
|
|
3905
|
-
backgroundPress: "hsl(206, 100%, 50.0%)",
|
|
3906
|
-
backgroundFocus: "hsl(211, 89.7%, 34.1%)",
|
|
3907
|
-
backgroundStrong: "hsl(206, 98.0%, 95.8%)",
|
|
3714
|
+
const dark_blue_SwitchThumb = {
|
|
3715
|
+
background: "#fff",
|
|
3716
|
+
backgroundHover: "#fff",
|
|
3717
|
+
backgroundPress: "hsl(206, 98.0%, 95.8%)",
|
|
3718
|
+
backgroundFocus: "hsl(210, 100%, 66.1%)",
|
|
3719
|
+
backgroundStrong: "#fff",
|
|
3908
3720
|
backgroundTransparent: "#fff",
|
|
3909
3721
|
color: "hsl(212, 35.0%, 9.2%)",
|
|
3910
3722
|
colorHover: "hsl(216, 50.0%, 11.8%)",
|
|
3911
3723
|
colorPress: "hsl(212, 35.0%, 9.2%)",
|
|
3912
3724
|
colorFocus: "hsl(216, 50.0%, 11.8%)",
|
|
3913
3725
|
colorTransparent: "hsl(212, 35.0%, 9.2%)",
|
|
3914
|
-
borderColor: "hsl(
|
|
3915
|
-
borderColorHover: "hsl(
|
|
3916
|
-
borderColorFocus: "hsl(206,
|
|
3917
|
-
borderColorPress: "hsl(
|
|
3918
|
-
placeholderColor: "hsl(
|
|
3726
|
+
borderColor: "hsl(210, 100%, 66.1%)",
|
|
3727
|
+
borderColorHover: "hsl(209, 100%, 60.6%)",
|
|
3728
|
+
borderColorFocus: "hsl(206, 98.0%, 95.8%)",
|
|
3729
|
+
borderColorPress: "hsl(210, 100%, 66.1%)",
|
|
3730
|
+
placeholderColor: "hsl(216, 50.0%, 11.8%)"
|
|
3919
3731
|
};
|
|
3920
|
-
const
|
|
3732
|
+
const dark_blue_SliderThumb = {
|
|
3921
3733
|
background: "hsl(206, 98.0%, 95.8%)",
|
|
3922
3734
|
backgroundHover: "hsl(210, 100%, 66.1%)",
|
|
3923
3735
|
backgroundPress: "hsl(209, 100%, 60.6%)",
|
|
@@ -3935,25 +3747,8 @@ const dark_blue_Tooltip = {
|
|
|
3935
3747
|
borderColorPress: "hsl(206, 100%, 50.0%)",
|
|
3936
3748
|
placeholderColor: "hsl(214, 65.8%, 17.9%)"
|
|
3937
3749
|
};
|
|
3938
|
-
const
|
|
3939
|
-
const
|
|
3940
|
-
background: "hsl(209, 100%, 60.6%)",
|
|
3941
|
-
backgroundHover: "hsl(206, 100%, 50.0%)",
|
|
3942
|
-
backgroundPress: "hsl(211, 89.7%, 34.1%)",
|
|
3943
|
-
backgroundFocus: "hsl(212, 77.4%, 23.1%)",
|
|
3944
|
-
backgroundStrong: "hsl(210, 100%, 66.1%)",
|
|
3945
|
-
backgroundTransparent: "hsl(206, 98.0%, 95.8%)",
|
|
3946
|
-
color: "hsl(212, 35.0%, 9.2%)",
|
|
3947
|
-
colorHover: "hsl(216, 50.0%, 11.8%)",
|
|
3948
|
-
colorPress: "hsl(212, 35.0%, 9.2%)",
|
|
3949
|
-
colorFocus: "hsl(216, 50.0%, 11.8%)",
|
|
3950
|
-
colorTransparent: "hsl(216, 50.0%, 11.8%)",
|
|
3951
|
-
borderColor: "hsl(212, 77.4%, 23.1%)",
|
|
3952
|
-
borderColorHover: "hsl(213, 71.2%, 20.2%)",
|
|
3953
|
-
borderColorFocus: "hsl(211, 89.7%, 34.1%)",
|
|
3954
|
-
borderColorPress: "hsl(212, 77.4%, 23.1%)",
|
|
3955
|
-
placeholderColor: "hsl(212, 77.4%, 23.1%)"
|
|
3956
|
-
};
|
|
3750
|
+
const dark_blue_Tooltip = dark_blue_SliderThumb;
|
|
3751
|
+
const dark_blue_ProgressIndicator = dark_blue_SliderThumb;
|
|
3957
3752
|
const dark_blue_Input = {
|
|
3958
3753
|
background: "hsl(216, 50.0%, 11.8%)",
|
|
3959
3754
|
backgroundHover: "hsl(214, 59.4%, 15.3%)",
|
|
@@ -3994,6 +3789,7 @@ const dark_purple_Card = {
|
|
|
3994
3789
|
const dark_purple_DrawerFrame = dark_purple_Card;
|
|
3995
3790
|
const dark_purple_Progress = dark_purple_Card;
|
|
3996
3791
|
const dark_purple_TooltipArrow = dark_purple_Card;
|
|
3792
|
+
const dark_purple_SliderTrack = dark_purple_Card;
|
|
3997
3793
|
const dark_purple_Button = {
|
|
3998
3794
|
background: "hsl(280, 41.2%, 20.0%)",
|
|
3999
3795
|
backgroundHover: "hsl(279, 43.8%, 23.3%)",
|
|
@@ -4033,43 +3829,25 @@ const dark_purple_Checkbox = {
|
|
|
4033
3829
|
const dark_purple_SliderTrackActive = dark_purple_Checkbox;
|
|
4034
3830
|
const dark_purple_Switch = dark_purple_Checkbox;
|
|
4035
3831
|
const dark_purple_TooltipContent = dark_purple_Checkbox;
|
|
4036
|
-
const
|
|
4037
|
-
background: "
|
|
4038
|
-
backgroundHover: "
|
|
4039
|
-
backgroundPress: "hsl(
|
|
4040
|
-
backgroundFocus: "hsl(
|
|
4041
|
-
backgroundStrong: "
|
|
4042
|
-
backgroundTransparent: "hsl(284, 20.0%, 9.6%)",
|
|
4043
|
-
color: "#fff",
|
|
4044
|
-
colorHover: "hsl(279, 75.0%, 95.7%)",
|
|
4045
|
-
colorPress: "#fff",
|
|
4046
|
-
colorFocus: "hsl(279, 75.0%, 95.7%)",
|
|
4047
|
-
colorTransparent: "#fff",
|
|
4048
|
-
borderColor: "hsl(280, 41.2%, 20.0%)",
|
|
4049
|
-
borderColorHover: "hsl(279, 43.8%, 23.3%)",
|
|
4050
|
-
borderColorFocus: "hsl(281, 37.5%, 16.5%)",
|
|
4051
|
-
borderColorPress: "hsl(280, 41.2%, 20.0%)",
|
|
4052
|
-
placeholderColor: "hsl(275, 80.0%, 71.0%)"
|
|
4053
|
-
};
|
|
4054
|
-
const dark_purple_SliderThumb = {
|
|
4055
|
-
background: "hsl(275, 80.0%, 71.0%)",
|
|
4056
|
-
backgroundHover: "hsl(273, 57.3%, 59.1%)",
|
|
4057
|
-
backgroundPress: "hsl(272, 51.0%, 54.0%)",
|
|
4058
|
-
backgroundFocus: "hsl(272, 52.1%, 45.9%)",
|
|
4059
|
-
backgroundStrong: "hsl(279, 75.0%, 95.7%)",
|
|
3832
|
+
const dark_purple_SwitchThumb = {
|
|
3833
|
+
background: "#fff",
|
|
3834
|
+
backgroundHover: "#fff",
|
|
3835
|
+
backgroundPress: "hsl(279, 75.0%, 95.7%)",
|
|
3836
|
+
backgroundFocus: "hsl(275, 80.0%, 71.0%)",
|
|
3837
|
+
backgroundStrong: "#fff",
|
|
4060
3838
|
backgroundTransparent: "#fff",
|
|
4061
3839
|
color: "hsl(284, 20.0%, 9.6%)",
|
|
4062
3840
|
colorHover: "hsl(283, 30.0%, 11.8%)",
|
|
4063
3841
|
colorPress: "hsl(284, 20.0%, 9.6%)",
|
|
4064
3842
|
colorFocus: "hsl(283, 30.0%, 11.8%)",
|
|
4065
3843
|
colorTransparent: "hsl(284, 20.0%, 9.6%)",
|
|
4066
|
-
borderColor: "hsl(
|
|
4067
|
-
borderColorHover: "hsl(
|
|
4068
|
-
borderColorFocus: "hsl(
|
|
4069
|
-
borderColorPress: "hsl(
|
|
4070
|
-
placeholderColor: "hsl(
|
|
3844
|
+
borderColor: "hsl(275, 80.0%, 71.0%)",
|
|
3845
|
+
borderColorHover: "hsl(273, 57.3%, 59.1%)",
|
|
3846
|
+
borderColorFocus: "hsl(279, 75.0%, 95.7%)",
|
|
3847
|
+
borderColorPress: "hsl(275, 80.0%, 71.0%)",
|
|
3848
|
+
placeholderColor: "hsl(283, 30.0%, 11.8%)"
|
|
4071
3849
|
};
|
|
4072
|
-
const
|
|
3850
|
+
const dark_purple_SliderThumb = {
|
|
4073
3851
|
background: "hsl(279, 75.0%, 95.7%)",
|
|
4074
3852
|
backgroundHover: "hsl(275, 80.0%, 71.0%)",
|
|
4075
3853
|
backgroundPress: "hsl(273, 57.3%, 59.1%)",
|
|
@@ -4087,25 +3865,8 @@ const dark_purple_Tooltip = {
|
|
|
4087
3865
|
borderColorPress: "hsl(272, 51.0%, 54.0%)",
|
|
4088
3866
|
placeholderColor: "hsl(280, 41.2%, 20.0%)"
|
|
4089
3867
|
};
|
|
4090
|
-
const
|
|
4091
|
-
const
|
|
4092
|
-
background: "hsl(273, 57.3%, 59.1%)",
|
|
4093
|
-
backgroundHover: "hsl(272, 51.0%, 54.0%)",
|
|
4094
|
-
backgroundPress: "hsl(272, 52.1%, 45.9%)",
|
|
4095
|
-
backgroundFocus: "hsl(277, 46.4%, 27.5%)",
|
|
4096
|
-
backgroundStrong: "hsl(275, 80.0%, 71.0%)",
|
|
4097
|
-
backgroundTransparent: "hsl(279, 75.0%, 95.7%)",
|
|
4098
|
-
color: "hsl(284, 20.0%, 9.6%)",
|
|
4099
|
-
colorHover: "hsl(283, 30.0%, 11.8%)",
|
|
4100
|
-
colorPress: "hsl(284, 20.0%, 9.6%)",
|
|
4101
|
-
colorFocus: "hsl(283, 30.0%, 11.8%)",
|
|
4102
|
-
colorTransparent: "hsl(283, 30.0%, 11.8%)",
|
|
4103
|
-
borderColor: "hsl(277, 46.4%, 27.5%)",
|
|
4104
|
-
borderColorHover: "hsl(279, 43.8%, 23.3%)",
|
|
4105
|
-
borderColorFocus: "hsl(272, 52.1%, 45.9%)",
|
|
4106
|
-
borderColorPress: "hsl(277, 46.4%, 27.5%)",
|
|
4107
|
-
placeholderColor: "hsl(277, 46.4%, 27.5%)"
|
|
4108
|
-
};
|
|
3868
|
+
const dark_purple_Tooltip = dark_purple_SliderThumb;
|
|
3869
|
+
const dark_purple_ProgressIndicator = dark_purple_SliderThumb;
|
|
4109
3870
|
const dark_purple_Input = {
|
|
4110
3871
|
background: "hsl(283, 30.0%, 11.8%)",
|
|
4111
3872
|
backgroundHover: "hsl(281, 37.5%, 16.5%)",
|
|
@@ -4146,6 +3907,7 @@ const dark_pink_Card = {
|
|
|
4146
3907
|
const dark_pink_DrawerFrame = dark_pink_Card;
|
|
4147
3908
|
const dark_pink_Progress = dark_pink_Card;
|
|
4148
3909
|
const dark_pink_TooltipArrow = dark_pink_Card;
|
|
3910
|
+
const dark_pink_SliderTrack = dark_pink_Card;
|
|
4149
3911
|
const dark_pink_Button = {
|
|
4150
3912
|
background: "hsl(320, 45.4%, 18.7%)",
|
|
4151
3913
|
backgroundHover: "hsl(320, 49.0%, 21.1%)",
|
|
@@ -4185,43 +3947,25 @@ const dark_pink_Checkbox = {
|
|
|
4185
3947
|
const dark_pink_SliderTrackActive = dark_pink_Checkbox;
|
|
4186
3948
|
const dark_pink_Switch = dark_pink_Checkbox;
|
|
4187
3949
|
const dark_pink_TooltipContent = dark_pink_Checkbox;
|
|
4188
|
-
const
|
|
4189
|
-
background: "
|
|
4190
|
-
backgroundHover: "
|
|
4191
|
-
backgroundPress: "hsl(
|
|
4192
|
-
backgroundFocus: "hsl(
|
|
4193
|
-
backgroundStrong: "
|
|
4194
|
-
backgroundTransparent: "hsl(318, 25.0%, 9.6%)",
|
|
4195
|
-
color: "#fff",
|
|
4196
|
-
colorHover: "hsl(322, 90.0%, 95.8%)",
|
|
4197
|
-
colorPress: "#fff",
|
|
4198
|
-
colorFocus: "hsl(322, 90.0%, 95.8%)",
|
|
4199
|
-
colorTransparent: "#fff",
|
|
4200
|
-
borderColor: "hsl(320, 45.4%, 18.7%)",
|
|
4201
|
-
borderColorHover: "hsl(320, 49.0%, 21.1%)",
|
|
4202
|
-
borderColorFocus: "hsl(319, 41.0%, 16.0%)",
|
|
4203
|
-
borderColorPress: "hsl(320, 45.4%, 18.7%)",
|
|
4204
|
-
placeholderColor: "hsl(325, 90.0%, 66.4%)"
|
|
4205
|
-
};
|
|
4206
|
-
const dark_pink_SliderThumb = {
|
|
4207
|
-
background: "hsl(325, 90.0%, 66.4%)",
|
|
4208
|
-
backgroundHover: "hsl(323, 72.8%, 59.2%)",
|
|
4209
|
-
backgroundPress: "hsl(322, 65.0%, 54.5%)",
|
|
4210
|
-
backgroundFocus: "hsl(322, 74.9%, 37.5%)",
|
|
4211
|
-
backgroundStrong: "hsl(322, 90.0%, 95.8%)",
|
|
3950
|
+
const dark_pink_SwitchThumb = {
|
|
3951
|
+
background: "#fff",
|
|
3952
|
+
backgroundHover: "#fff",
|
|
3953
|
+
backgroundPress: "hsl(322, 90.0%, 95.8%)",
|
|
3954
|
+
backgroundFocus: "hsl(325, 90.0%, 66.4%)",
|
|
3955
|
+
backgroundStrong: "#fff",
|
|
4212
3956
|
backgroundTransparent: "#fff",
|
|
4213
3957
|
color: "hsl(318, 25.0%, 9.6%)",
|
|
4214
3958
|
colorHover: "hsl(319, 32.2%, 11.6%)",
|
|
4215
3959
|
colorPress: "hsl(318, 25.0%, 9.6%)",
|
|
4216
3960
|
colorFocus: "hsl(319, 32.2%, 11.6%)",
|
|
4217
3961
|
colorTransparent: "hsl(318, 25.0%, 9.6%)",
|
|
4218
|
-
borderColor: "hsl(
|
|
4219
|
-
borderColorHover: "hsl(
|
|
4220
|
-
borderColorFocus: "hsl(322,
|
|
4221
|
-
borderColorPress: "hsl(
|
|
4222
|
-
placeholderColor: "hsl(
|
|
3962
|
+
borderColor: "hsl(325, 90.0%, 66.4%)",
|
|
3963
|
+
borderColorHover: "hsl(323, 72.8%, 59.2%)",
|
|
3964
|
+
borderColorFocus: "hsl(322, 90.0%, 95.8%)",
|
|
3965
|
+
borderColorPress: "hsl(325, 90.0%, 66.4%)",
|
|
3966
|
+
placeholderColor: "hsl(319, 32.2%, 11.6%)"
|
|
4223
3967
|
};
|
|
4224
|
-
const
|
|
3968
|
+
const dark_pink_SliderThumb = {
|
|
4225
3969
|
background: "hsl(322, 90.0%, 95.8%)",
|
|
4226
3970
|
backgroundHover: "hsl(325, 90.0%, 66.4%)",
|
|
4227
3971
|
backgroundPress: "hsl(323, 72.8%, 59.2%)",
|
|
@@ -4239,25 +3983,8 @@ const dark_pink_Tooltip = {
|
|
|
4239
3983
|
borderColorPress: "hsl(322, 65.0%, 54.5%)",
|
|
4240
3984
|
placeholderColor: "hsl(320, 45.4%, 18.7%)"
|
|
4241
3985
|
};
|
|
4242
|
-
const
|
|
4243
|
-
const
|
|
4244
|
-
background: "hsl(323, 72.8%, 59.2%)",
|
|
4245
|
-
backgroundHover: "hsl(322, 65.0%, 54.5%)",
|
|
4246
|
-
backgroundPress: "hsl(322, 74.9%, 37.5%)",
|
|
4247
|
-
backgroundFocus: "hsl(321, 53.6%, 24.4%)",
|
|
4248
|
-
backgroundStrong: "hsl(325, 90.0%, 66.4%)",
|
|
4249
|
-
backgroundTransparent: "hsl(322, 90.0%, 95.8%)",
|
|
4250
|
-
color: "hsl(318, 25.0%, 9.6%)",
|
|
4251
|
-
colorHover: "hsl(319, 32.2%, 11.6%)",
|
|
4252
|
-
colorPress: "hsl(318, 25.0%, 9.6%)",
|
|
4253
|
-
colorFocus: "hsl(319, 32.2%, 11.6%)",
|
|
4254
|
-
colorTransparent: "hsl(319, 32.2%, 11.6%)",
|
|
4255
|
-
borderColor: "hsl(321, 53.6%, 24.4%)",
|
|
4256
|
-
borderColorHover: "hsl(320, 49.0%, 21.1%)",
|
|
4257
|
-
borderColorFocus: "hsl(322, 74.9%, 37.5%)",
|
|
4258
|
-
borderColorPress: "hsl(321, 53.6%, 24.4%)",
|
|
4259
|
-
placeholderColor: "hsl(321, 53.6%, 24.4%)"
|
|
4260
|
-
};
|
|
3986
|
+
const dark_pink_Tooltip = dark_pink_SliderThumb;
|
|
3987
|
+
const dark_pink_ProgressIndicator = dark_pink_SliderThumb;
|
|
4261
3988
|
const dark_pink_Input = {
|
|
4262
3989
|
background: "hsl(319, 32.2%, 11.6%)",
|
|
4263
3990
|
backgroundHover: "hsl(319, 41.0%, 16.0%)",
|
|
@@ -4298,6 +4025,7 @@ const dark_red_Card = {
|
|
|
4298
4025
|
const dark_red_DrawerFrame = dark_red_Card;
|
|
4299
4026
|
const dark_red_Progress = dark_red_Card;
|
|
4300
4027
|
const dark_red_TooltipArrow = dark_red_Card;
|
|
4028
|
+
const dark_red_SliderTrack = dark_red_Card;
|
|
4301
4029
|
const dark_red_Button = {
|
|
4302
4030
|
background: "hsl(356, 47.6%, 19.2%)",
|
|
4303
4031
|
backgroundHover: "hsl(356, 51.1%, 21.9%)",
|
|
@@ -4337,25 +4065,7 @@ const dark_red_Checkbox = {
|
|
|
4337
4065
|
const dark_red_SliderTrackActive = dark_red_Checkbox;
|
|
4338
4066
|
const dark_red_Switch = dark_red_Checkbox;
|
|
4339
4067
|
const dark_red_TooltipContent = dark_red_Checkbox;
|
|
4340
|
-
const
|
|
4341
|
-
background: "hsl(353, 23.0%, 9.8%)",
|
|
4342
|
-
backgroundHover: "hsl(357, 34.4%, 12.0%)",
|
|
4343
|
-
backgroundPress: "hsl(356, 43.4%, 16.4%)",
|
|
4344
|
-
backgroundFocus: "hsl(356, 47.6%, 19.2%)",
|
|
4345
|
-
backgroundStrong: "hsl(353, 23.0%, 9.8%)",
|
|
4346
|
-
backgroundTransparent: "hsl(353, 23.0%, 9.8%)",
|
|
4347
|
-
color: "#fff",
|
|
4348
|
-
colorHover: "hsl(351, 89.0%, 96.0%)",
|
|
4349
|
-
colorPress: "#fff",
|
|
4350
|
-
colorFocus: "hsl(351, 89.0%, 96.0%)",
|
|
4351
|
-
colorTransparent: "#fff",
|
|
4352
|
-
borderColor: "hsl(356, 47.6%, 19.2%)",
|
|
4353
|
-
borderColorHover: "hsl(356, 51.1%, 21.9%)",
|
|
4354
|
-
borderColorFocus: "hsl(356, 43.4%, 16.4%)",
|
|
4355
|
-
borderColorPress: "hsl(356, 47.6%, 19.2%)",
|
|
4356
|
-
placeholderColor: "hsl(358, 100%, 69.5%)"
|
|
4357
|
-
};
|
|
4358
|
-
const dark_red_Tooltip = {
|
|
4068
|
+
const dark_red_SliderThumb = {
|
|
4359
4069
|
background: "hsl(351, 89.0%, 96.0%)",
|
|
4360
4070
|
backgroundHover: "hsl(358, 100%, 69.5%)",
|
|
4361
4071
|
backgroundPress: "hsl(358, 85.3%, 64.0%)",
|
|
@@ -4373,7 +4083,8 @@ const dark_red_Tooltip = {
|
|
|
4373
4083
|
borderColorPress: "hsl(358, 75.0%, 59.0%)",
|
|
4374
4084
|
placeholderColor: "hsl(356, 47.6%, 19.2%)"
|
|
4375
4085
|
};
|
|
4376
|
-
const
|
|
4086
|
+
const dark_red_Tooltip = dark_red_SliderThumb;
|
|
4087
|
+
const dark_red_ProgressIndicator = dark_red_SliderThumb;
|
|
4377
4088
|
const dark_red_Input = {
|
|
4378
4089
|
background: "hsl(357, 34.4%, 12.0%)",
|
|
4379
4090
|
backgroundHover: "hsl(356, 43.4%, 16.4%)",
|