@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
|
@@ -2585,7 +2585,6 @@ const light_ListItem = {
|
|
|
2585
2585
|
borderColorPress: "hsl(0, 0%, 95.1%)",
|
|
2586
2586
|
placeholderColor: "hsl(0, 0%, 50.3%)"
|
|
2587
2587
|
};
|
|
2588
|
-
const light_SliderTrack = light_ListItem;
|
|
2589
2588
|
const light_Card = {
|
|
2590
2589
|
background: "hsl(0, 0%, 97.3%)",
|
|
2591
2590
|
backgroundHover: "hsl(0, 0%, 95.1%)",
|
|
@@ -2607,6 +2606,7 @@ const light_Card = {
|
|
|
2607
2606
|
const light_DrawerFrame = light_Card;
|
|
2608
2607
|
const light_Progress = light_Card;
|
|
2609
2608
|
const light_TooltipArrow = light_Card;
|
|
2609
|
+
const light_SliderTrack = light_Card;
|
|
2610
2610
|
const light_Button = {
|
|
2611
2611
|
background: "hsl(0, 0%, 95.1%)",
|
|
2612
2612
|
backgroundHover: "hsl(0, 0%, 94.0%)",
|
|
@@ -2646,26 +2646,26 @@ const light_Checkbox = {
|
|
|
2646
2646
|
const light_SliderTrackActive = light_Checkbox;
|
|
2647
2647
|
const light_Switch = light_Checkbox;
|
|
2648
2648
|
const light_TooltipContent = light_Checkbox;
|
|
2649
|
-
const
|
|
2650
|
-
background: "
|
|
2651
|
-
backgroundHover: "
|
|
2652
|
-
backgroundPress: "hsl(
|
|
2653
|
-
backgroundFocus: "hsl(358,
|
|
2654
|
-
backgroundStrong: "
|
|
2649
|
+
const light_SwitchThumb = {
|
|
2650
|
+
background: "#fff",
|
|
2651
|
+
backgroundHover: "#fff",
|
|
2652
|
+
backgroundPress: "hsl(351, 89.0%, 96.0%)",
|
|
2653
|
+
backgroundFocus: "hsl(358, 100%, 69.5%)",
|
|
2654
|
+
backgroundStrong: "#fff",
|
|
2655
2655
|
backgroundTransparent: "#fff",
|
|
2656
2656
|
color: "hsl(353, 23.0%, 9.8%)",
|
|
2657
2657
|
colorHover: "hsl(357, 34.4%, 12.0%)",
|
|
2658
2658
|
colorPress: "hsl(353, 23.0%, 9.8%)",
|
|
2659
2659
|
colorFocus: "hsl(357, 34.4%, 12.0%)",
|
|
2660
2660
|
colorTransparent: "hsl(353, 23.0%, 9.8%)",
|
|
2661
|
-
borderColor: "hsl(358,
|
|
2662
|
-
borderColorHover: "hsl(
|
|
2663
|
-
borderColorFocus: "hsl(
|
|
2664
|
-
borderColorPress: "hsl(358,
|
|
2665
|
-
placeholderColor: "hsl(
|
|
2661
|
+
borderColor: "hsl(358, 100%, 69.5%)",
|
|
2662
|
+
borderColorHover: "hsl(358, 85.3%, 64.0%)",
|
|
2663
|
+
borderColorFocus: "hsl(351, 89.0%, 96.0%)",
|
|
2664
|
+
borderColorPress: "hsl(358, 100%, 69.5%)",
|
|
2665
|
+
placeholderColor: "hsl(357, 34.4%, 12.0%)"
|
|
2666
2666
|
};
|
|
2667
|
-
const
|
|
2668
|
-
const
|
|
2667
|
+
const dark_red_SwitchThumb = light_SwitchThumb;
|
|
2668
|
+
const light_SliderThumb = {
|
|
2669
2669
|
background: "hsl(0, 0%, 42.5%)",
|
|
2670
2670
|
backgroundHover: "hsl(0, 0%, 50.3%)",
|
|
2671
2671
|
backgroundPress: "hsl(0, 0%, 56.1%)",
|
|
@@ -2683,26 +2683,8 @@ const light_Tooltip = {
|
|
|
2683
2683
|
borderColorPress: "hsl(0, 0%, 81.0%)",
|
|
2684
2684
|
placeholderColor: "hsl(0, 0%, 95.1%)"
|
|
2685
2685
|
};
|
|
2686
|
-
const
|
|
2687
|
-
const
|
|
2688
|
-
background: "hsl(358, 85.3%, 64.0%)",
|
|
2689
|
-
backgroundHover: "hsl(358, 75.0%, 59.0%)",
|
|
2690
|
-
backgroundPress: "hsl(358, 65.0%, 40.4%)",
|
|
2691
|
-
backgroundFocus: "hsl(356, 55.2%, 25.9%)",
|
|
2692
|
-
backgroundStrong: "hsl(358, 100%, 69.5%)",
|
|
2693
|
-
backgroundTransparent: "hsl(351, 89.0%, 96.0%)",
|
|
2694
|
-
color: "hsl(353, 23.0%, 9.8%)",
|
|
2695
|
-
colorHover: "hsl(357, 34.4%, 12.0%)",
|
|
2696
|
-
colorPress: "hsl(353, 23.0%, 9.8%)",
|
|
2697
|
-
colorFocus: "hsl(357, 34.4%, 12.0%)",
|
|
2698
|
-
colorTransparent: "hsl(357, 34.4%, 12.0%)",
|
|
2699
|
-
borderColor: "hsl(356, 55.2%, 25.9%)",
|
|
2700
|
-
borderColorHover: "hsl(356, 51.1%, 21.9%)",
|
|
2701
|
-
borderColorFocus: "hsl(358, 65.0%, 40.4%)",
|
|
2702
|
-
borderColorPress: "hsl(356, 55.2%, 25.9%)",
|
|
2703
|
-
placeholderColor: "hsl(356, 55.2%, 25.9%)"
|
|
2704
|
-
};
|
|
2705
|
-
const dark_red_SwitchThumb = light_SwitchThumb;
|
|
2686
|
+
const light_Tooltip = light_SliderThumb;
|
|
2687
|
+
const light_ProgressIndicator = light_SliderThumb;
|
|
2706
2688
|
const light_Input = {
|
|
2707
2689
|
background: "#fff",
|
|
2708
2690
|
backgroundHover: "#f9f9f9",
|
|
@@ -2773,6 +2755,7 @@ const dark_Card = {
|
|
|
2773
2755
|
const dark_DrawerFrame = dark_Card;
|
|
2774
2756
|
const dark_Progress = dark_Card;
|
|
2775
2757
|
const dark_TooltipArrow = dark_Card;
|
|
2758
|
+
const dark_SliderTrack = dark_Card;
|
|
2776
2759
|
const dark_Button = {
|
|
2777
2760
|
background: "#232323",
|
|
2778
2761
|
backgroundHover: "#282828",
|
|
@@ -2812,43 +2795,25 @@ const dark_Checkbox = {
|
|
|
2812
2795
|
const dark_SliderTrackActive = dark_Checkbox;
|
|
2813
2796
|
const dark_Switch = dark_Checkbox;
|
|
2814
2797
|
const dark_TooltipContent = dark_Checkbox;
|
|
2815
|
-
const
|
|
2816
|
-
background: "#
|
|
2817
|
-
backgroundHover: "#
|
|
2818
|
-
backgroundPress: "#
|
|
2819
|
-
backgroundFocus: "#
|
|
2820
|
-
backgroundStrong: "#
|
|
2821
|
-
backgroundTransparent: "#050505",
|
|
2822
|
-
color: "#fff",
|
|
2823
|
-
colorHover: "#a5a5a5",
|
|
2824
|
-
colorPress: "#fff",
|
|
2825
|
-
colorFocus: "#a5a5a5",
|
|
2826
|
-
colorTransparent: "#fff",
|
|
2827
|
-
borderColor: "#232323",
|
|
2828
|
-
borderColorHover: "#282828",
|
|
2829
|
-
borderColorFocus: "#191919",
|
|
2830
|
-
borderColorPress: "#232323",
|
|
2831
|
-
placeholderColor: "#626262"
|
|
2832
|
-
};
|
|
2833
|
-
const dark_SliderThumb = {
|
|
2834
|
-
background: "#626262",
|
|
2835
|
-
backgroundHover: "#545454",
|
|
2836
|
-
backgroundPress: "#494949",
|
|
2837
|
-
backgroundFocus: "#424242",
|
|
2838
|
-
backgroundStrong: "#a5a5a5",
|
|
2798
|
+
const dark_SwitchThumb = {
|
|
2799
|
+
background: "#fff",
|
|
2800
|
+
backgroundHover: "#fff",
|
|
2801
|
+
backgroundPress: "#a5a5a5",
|
|
2802
|
+
backgroundFocus: "#626262",
|
|
2803
|
+
backgroundStrong: "#fff",
|
|
2839
2804
|
backgroundTransparent: "#fff",
|
|
2840
2805
|
color: "#050505",
|
|
2841
2806
|
colorHover: "#151515",
|
|
2842
2807
|
colorPress: "#050505",
|
|
2843
2808
|
colorFocus: "#151515",
|
|
2844
2809
|
colorTransparent: "#050505",
|
|
2845
|
-
borderColor: "#
|
|
2846
|
-
borderColorHover: "#
|
|
2847
|
-
borderColorFocus: "#
|
|
2848
|
-
borderColorPress: "#
|
|
2849
|
-
placeholderColor: "#
|
|
2810
|
+
borderColor: "#626262",
|
|
2811
|
+
borderColorHover: "#545454",
|
|
2812
|
+
borderColorFocus: "#a5a5a5",
|
|
2813
|
+
borderColorPress: "#626262",
|
|
2814
|
+
placeholderColor: "#151515"
|
|
2850
2815
|
};
|
|
2851
|
-
const
|
|
2816
|
+
const dark_SliderThumb = {
|
|
2852
2817
|
background: "#a5a5a5",
|
|
2853
2818
|
backgroundHover: "#626262",
|
|
2854
2819
|
backgroundPress: "#545454",
|
|
@@ -2866,25 +2831,8 @@ const dark_Tooltip = {
|
|
|
2866
2831
|
borderColorPress: "#494949",
|
|
2867
2832
|
placeholderColor: "#232323"
|
|
2868
2833
|
};
|
|
2869
|
-
const
|
|
2870
|
-
const
|
|
2871
|
-
background: "#545454",
|
|
2872
|
-
backgroundHover: "#494949",
|
|
2873
|
-
backgroundPress: "#424242",
|
|
2874
|
-
backgroundFocus: "#323232",
|
|
2875
|
-
backgroundStrong: "#626262",
|
|
2876
|
-
backgroundTransparent: "#a5a5a5",
|
|
2877
|
-
color: "#050505",
|
|
2878
|
-
colorHover: "#151515",
|
|
2879
|
-
colorPress: "#050505",
|
|
2880
|
-
colorFocus: "#151515",
|
|
2881
|
-
colorTransparent: "#151515",
|
|
2882
|
-
borderColor: "#323232",
|
|
2883
|
-
borderColorHover: "#282828",
|
|
2884
|
-
borderColorFocus: "#424242",
|
|
2885
|
-
borderColorPress: "#323232",
|
|
2886
|
-
placeholderColor: "#323232"
|
|
2887
|
-
};
|
|
2834
|
+
const dark_Tooltip = dark_SliderThumb;
|
|
2835
|
+
const dark_ProgressIndicator = dark_SliderThumb;
|
|
2888
2836
|
const dark_Input = {
|
|
2889
2837
|
background: "#151515",
|
|
2890
2838
|
backgroundHover: "#191919",
|
|
@@ -2922,7 +2870,6 @@ const light_orange_ListItem = {
|
|
|
2922
2870
|
borderColorPress: "hsl(24, 100%, 95.3%)",
|
|
2923
2871
|
placeholderColor: "hsl(24, 100%, 37.0%)"
|
|
2924
2872
|
};
|
|
2925
|
-
const light_orange_SliderTrack = light_orange_ListItem;
|
|
2926
2873
|
const light_orange_Card = {
|
|
2927
2874
|
background: "hsl(24, 100%, 95.3%)",
|
|
2928
2875
|
backgroundHover: "hsl(25, 100%, 92.2%)",
|
|
@@ -2944,6 +2891,7 @@ const light_orange_Card = {
|
|
|
2944
2891
|
const light_orange_DrawerFrame = light_orange_Card;
|
|
2945
2892
|
const light_orange_Progress = light_orange_Card;
|
|
2946
2893
|
const light_orange_TooltipArrow = light_orange_Card;
|
|
2894
|
+
const light_orange_SliderTrack = light_orange_Card;
|
|
2947
2895
|
const light_orange_Button = {
|
|
2948
2896
|
background: "hsl(25, 100%, 92.2%)",
|
|
2949
2897
|
backgroundHover: "hsl(25, 100%, 88.2%)",
|
|
@@ -2983,31 +2931,31 @@ const light_orange_Checkbox = {
|
|
|
2983
2931
|
const light_orange_SliderTrackActive = light_orange_Checkbox;
|
|
2984
2932
|
const light_orange_Switch = light_orange_Checkbox;
|
|
2985
2933
|
const light_orange_TooltipContent = light_orange_Checkbox;
|
|
2986
|
-
const
|
|
2987
|
-
background: "hsl(
|
|
2988
|
-
backgroundHover: "hsl(
|
|
2989
|
-
backgroundPress: "hsl(
|
|
2990
|
-
backgroundFocus: "hsl(
|
|
2991
|
-
backgroundStrong: "hsl(
|
|
2934
|
+
const light_orange_SwitchThumb = {
|
|
2935
|
+
background: "hsl(0, 0%, 9.0%)",
|
|
2936
|
+
backgroundHover: "hsl(0, 0%, 9.0%)",
|
|
2937
|
+
backgroundPress: "hsl(354, 50.0%, 14.6%)",
|
|
2938
|
+
backgroundFocus: "hsl(358, 65.0%, 48.7%)",
|
|
2939
|
+
backgroundStrong: "hsl(0, 0%, 9.0%)",
|
|
2992
2940
|
backgroundTransparent: "hsl(0, 0%, 9.0%)",
|
|
2993
2941
|
color: "hsl(359, 100%, 99.4%)",
|
|
2994
2942
|
colorHover: "hsl(359, 100%, 98.6%)",
|
|
2995
2943
|
colorPress: "hsl(359, 100%, 99.4%)",
|
|
2996
2944
|
colorFocus: "hsl(359, 100%, 98.6%)",
|
|
2997
2945
|
colorTransparent: "hsl(359, 100%, 99.4%)",
|
|
2998
|
-
borderColor: "hsl(
|
|
2999
|
-
borderColorHover: "hsl(
|
|
3000
|
-
borderColorFocus: "hsl(
|
|
3001
|
-
borderColorPress: "hsl(
|
|
3002
|
-
placeholderColor: "hsl(
|
|
3003
|
-
};
|
|
3004
|
-
const
|
|
3005
|
-
const
|
|
3006
|
-
const
|
|
3007
|
-
const
|
|
3008
|
-
const
|
|
3009
|
-
const
|
|
3010
|
-
const
|
|
2946
|
+
borderColor: "hsl(354, 50.0%, 14.6%)",
|
|
2947
|
+
borderColorHover: "hsl(358, 65.0%, 48.7%)",
|
|
2948
|
+
borderColorFocus: "hsl(354, 50.0%, 14.6%)",
|
|
2949
|
+
borderColorPress: "hsl(354, 50.0%, 14.6%)",
|
|
2950
|
+
placeholderColor: "hsl(359, 100%, 98.6%)"
|
|
2951
|
+
};
|
|
2952
|
+
const light_yellow_SwitchThumb = light_orange_SwitchThumb;
|
|
2953
|
+
const light_green_SwitchThumb = light_orange_SwitchThumb;
|
|
2954
|
+
const light_blue_SwitchThumb = light_orange_SwitchThumb;
|
|
2955
|
+
const light_purple_SwitchThumb = light_orange_SwitchThumb;
|
|
2956
|
+
const light_pink_SwitchThumb = light_orange_SwitchThumb;
|
|
2957
|
+
const light_red_SwitchThumb = light_orange_SwitchThumb;
|
|
2958
|
+
const light_orange_SliderThumb = {
|
|
3011
2959
|
background: "hsl(15, 60.0%, 17.0%)",
|
|
3012
2960
|
backgroundHover: "hsl(24, 100%, 37.0%)",
|
|
3013
2961
|
backgroundPress: "hsl(24, 100%, 46.5%)",
|
|
@@ -3025,31 +2973,8 @@ const light_orange_Tooltip = {
|
|
|
3025
2973
|
borderColorPress: "hsl(24, 100%, 46.5%)",
|
|
3026
2974
|
placeholderColor: "hsl(25, 100%, 92.2%)"
|
|
3027
2975
|
};
|
|
3028
|
-
const
|
|
3029
|
-
const
|
|
3030
|
-
background: "hsl(358, 69.4%, 55.2%)",
|
|
3031
|
-
backgroundHover: "hsl(358, 75.0%, 59.0%)",
|
|
3032
|
-
backgroundPress: "hsl(359, 69.5%, 74.3%)",
|
|
3033
|
-
backgroundFocus: "hsl(360, 81.7%, 87.8%)",
|
|
3034
|
-
backgroundStrong: "hsl(358, 65.0%, 48.7%)",
|
|
3035
|
-
backgroundTransparent: "hsl(354, 50.0%, 14.6%)",
|
|
3036
|
-
color: "hsl(359, 100%, 99.4%)",
|
|
3037
|
-
colorHover: "hsl(359, 100%, 98.6%)",
|
|
3038
|
-
colorPress: "hsl(359, 100%, 99.4%)",
|
|
3039
|
-
colorFocus: "hsl(359, 100%, 98.6%)",
|
|
3040
|
-
colorTransparent: "hsl(359, 100%, 98.6%)",
|
|
3041
|
-
borderColor: "hsl(359, 69.5%, 74.3%)",
|
|
3042
|
-
borderColorHover: "hsl(360, 81.7%, 87.8%)",
|
|
3043
|
-
borderColorFocus: "hsl(359, 69.5%, 74.3%)",
|
|
3044
|
-
borderColorPress: "hsl(359, 69.5%, 74.3%)",
|
|
3045
|
-
placeholderColor: "hsl(360, 81.7%, 87.8%)"
|
|
3046
|
-
};
|
|
3047
|
-
const light_yellow_SwitchThumb = light_orange_SwitchThumb;
|
|
3048
|
-
const light_green_SwitchThumb = light_orange_SwitchThumb;
|
|
3049
|
-
const light_blue_SwitchThumb = light_orange_SwitchThumb;
|
|
3050
|
-
const light_purple_SwitchThumb = light_orange_SwitchThumb;
|
|
3051
|
-
const light_pink_SwitchThumb = light_orange_SwitchThumb;
|
|
3052
|
-
const light_red_SwitchThumb = light_orange_SwitchThumb;
|
|
2976
|
+
const light_orange_Tooltip = light_orange_SliderThumb;
|
|
2977
|
+
const light_orange_ProgressIndicator = light_orange_SliderThumb;
|
|
3053
2978
|
const light_orange_Input = {
|
|
3054
2979
|
background: "hsl(24, 70.0%, 99.0%)",
|
|
3055
2980
|
backgroundHover: "hsl(24, 83.3%, 97.6%)",
|
|
@@ -3087,7 +3012,6 @@ const light_yellow_ListItem = {
|
|
|
3087
3012
|
borderColorPress: "hsl(55, 100%, 90.9%)",
|
|
3088
3013
|
placeholderColor: "hsl(42, 100%, 29.0%)"
|
|
3089
3014
|
};
|
|
3090
|
-
const light_yellow_SliderTrack = light_yellow_ListItem;
|
|
3091
3015
|
const light_yellow_Card = {
|
|
3092
3016
|
background: "hsl(55, 100%, 90.9%)",
|
|
3093
3017
|
backgroundHover: "hsl(54, 100%, 86.6%)",
|
|
@@ -3109,6 +3033,7 @@ const light_yellow_Card = {
|
|
|
3109
3033
|
const light_yellow_DrawerFrame = light_yellow_Card;
|
|
3110
3034
|
const light_yellow_Progress = light_yellow_Card;
|
|
3111
3035
|
const light_yellow_TooltipArrow = light_yellow_Card;
|
|
3036
|
+
const light_yellow_SliderTrack = light_yellow_Card;
|
|
3112
3037
|
const light_yellow_Button = {
|
|
3113
3038
|
background: "hsl(54, 100%, 86.6%)",
|
|
3114
3039
|
backgroundHover: "hsl(52, 97.9%, 82.0%)",
|
|
@@ -3148,7 +3073,7 @@ const light_yellow_Checkbox = {
|
|
|
3148
3073
|
const light_yellow_SliderTrackActive = light_yellow_Checkbox;
|
|
3149
3074
|
const light_yellow_Switch = light_yellow_Checkbox;
|
|
3150
3075
|
const light_yellow_TooltipContent = light_yellow_Checkbox;
|
|
3151
|
-
const
|
|
3076
|
+
const light_yellow_SliderThumb = {
|
|
3152
3077
|
background: "hsl(40, 55.0%, 13.5%)",
|
|
3153
3078
|
backgroundHover: "hsl(42, 100%, 29.0%)",
|
|
3154
3079
|
backgroundPress: "hsl(50, 100%, 48.5%)",
|
|
@@ -3166,7 +3091,8 @@ const light_yellow_Tooltip = {
|
|
|
3166
3091
|
borderColorPress: "hsl(50, 100%, 48.5%)",
|
|
3167
3092
|
placeholderColor: "hsl(54, 100%, 86.6%)"
|
|
3168
3093
|
};
|
|
3169
|
-
const
|
|
3094
|
+
const light_yellow_Tooltip = light_yellow_SliderThumb;
|
|
3095
|
+
const light_yellow_ProgressIndicator = light_yellow_SliderThumb;
|
|
3170
3096
|
const light_yellow_Input = {
|
|
3171
3097
|
background: "hsl(60, 54.0%, 98.5%)",
|
|
3172
3098
|
backgroundHover: "hsl(52, 100%, 95.5%)",
|
|
@@ -3204,7 +3130,6 @@ const light_green_ListItem = {
|
|
|
3204
3130
|
borderColorPress: "hsl(139, 55.2%, 94.5%)",
|
|
3205
3131
|
placeholderColor: "hsl(153, 67.0%, 28.5%)"
|
|
3206
3132
|
};
|
|
3207
|
-
const light_green_SliderTrack = light_green_ListItem;
|
|
3208
3133
|
const light_green_Card = {
|
|
3209
3134
|
background: "hsl(139, 55.2%, 94.5%)",
|
|
3210
3135
|
backgroundHover: "hsl(140, 48.7%, 91.0%)",
|
|
@@ -3226,6 +3151,7 @@ const light_green_Card = {
|
|
|
3226
3151
|
const light_green_DrawerFrame = light_green_Card;
|
|
3227
3152
|
const light_green_Progress = light_green_Card;
|
|
3228
3153
|
const light_green_TooltipArrow = light_green_Card;
|
|
3154
|
+
const light_green_SliderTrack = light_green_Card;
|
|
3229
3155
|
const light_green_Button = {
|
|
3230
3156
|
background: "hsl(140, 48.7%, 91.0%)",
|
|
3231
3157
|
backgroundHover: "hsl(141, 43.7%, 86.0%)",
|
|
@@ -3265,7 +3191,7 @@ const light_green_Checkbox = {
|
|
|
3265
3191
|
const light_green_SliderTrackActive = light_green_Checkbox;
|
|
3266
3192
|
const light_green_Switch = light_green_Checkbox;
|
|
3267
3193
|
const light_green_TooltipContent = light_green_Checkbox;
|
|
3268
|
-
const
|
|
3194
|
+
const light_green_SliderThumb = {
|
|
3269
3195
|
background: "hsl(155, 40.0%, 14.0%)",
|
|
3270
3196
|
backgroundHover: "hsl(153, 67.0%, 28.5%)",
|
|
3271
3197
|
backgroundPress: "hsl(152, 57.5%, 37.6%)",
|
|
@@ -3283,7 +3209,8 @@ const light_green_Tooltip = {
|
|
|
3283
3209
|
borderColorPress: "hsl(152, 57.5%, 37.6%)",
|
|
3284
3210
|
placeholderColor: "hsl(140, 48.7%, 91.0%)"
|
|
3285
3211
|
};
|
|
3286
|
-
const
|
|
3212
|
+
const light_green_Tooltip = light_green_SliderThumb;
|
|
3213
|
+
const light_green_ProgressIndicator = light_green_SliderThumb;
|
|
3287
3214
|
const light_green_Input = {
|
|
3288
3215
|
background: "hsl(136, 50.0%, 98.9%)",
|
|
3289
3216
|
backgroundHover: "hsl(138, 62.5%, 96.9%)",
|
|
@@ -3321,7 +3248,6 @@ const light_blue_ListItem = {
|
|
|
3321
3248
|
borderColorPress: "hsl(209, 100%, 96.5%)",
|
|
3322
3249
|
placeholderColor: "hsl(211, 100%, 43.2%)"
|
|
3323
3250
|
};
|
|
3324
|
-
const light_blue_SliderTrack = light_blue_ListItem;
|
|
3325
3251
|
const light_blue_Card = {
|
|
3326
3252
|
background: "hsl(209, 100%, 96.5%)",
|
|
3327
3253
|
backgroundHover: "hsl(210, 98.8%, 94.0%)",
|
|
@@ -3343,6 +3269,7 @@ const light_blue_Card = {
|
|
|
3343
3269
|
const light_blue_DrawerFrame = light_blue_Card;
|
|
3344
3270
|
const light_blue_Progress = light_blue_Card;
|
|
3345
3271
|
const light_blue_TooltipArrow = light_blue_Card;
|
|
3272
|
+
const light_blue_SliderTrack = light_blue_Card;
|
|
3346
3273
|
const light_blue_Button = {
|
|
3347
3274
|
background: "hsl(210, 98.8%, 94.0%)",
|
|
3348
3275
|
backgroundHover: "hsl(209, 95.0%, 90.1%)",
|
|
@@ -3382,7 +3309,7 @@ const light_blue_Checkbox = {
|
|
|
3382
3309
|
const light_blue_SliderTrackActive = light_blue_Checkbox;
|
|
3383
3310
|
const light_blue_Switch = light_blue_Checkbox;
|
|
3384
3311
|
const light_blue_TooltipContent = light_blue_Checkbox;
|
|
3385
|
-
const
|
|
3312
|
+
const light_blue_SliderThumb = {
|
|
3386
3313
|
background: "hsl(211, 100%, 15.0%)",
|
|
3387
3314
|
backgroundHover: "hsl(211, 100%, 43.2%)",
|
|
3388
3315
|
backgroundPress: "hsl(208, 100%, 47.3%)",
|
|
@@ -3400,7 +3327,8 @@ const light_blue_Tooltip = {
|
|
|
3400
3327
|
borderColorPress: "hsl(208, 100%, 47.3%)",
|
|
3401
3328
|
placeholderColor: "hsl(210, 98.8%, 94.0%)"
|
|
3402
3329
|
};
|
|
3403
|
-
const
|
|
3330
|
+
const light_blue_Tooltip = light_blue_SliderThumb;
|
|
3331
|
+
const light_blue_ProgressIndicator = light_blue_SliderThumb;
|
|
3404
3332
|
const light_blue_Input = {
|
|
3405
3333
|
background: "hsl(206, 100%, 99.2%)",
|
|
3406
3334
|
backgroundHover: "hsl(210, 100%, 98.0%)",
|
|
@@ -3438,7 +3366,6 @@ const light_purple_ListItem = {
|
|
|
3438
3366
|
borderColorPress: "hsl(276, 83.1%, 97.0%)",
|
|
3439
3367
|
placeholderColor: "hsl(272, 50.0%, 45.8%)"
|
|
3440
3368
|
};
|
|
3441
|
-
const light_purple_SliderTrack = light_purple_ListItem;
|
|
3442
3369
|
const light_purple_Card = {
|
|
3443
3370
|
background: "hsl(276, 83.1%, 97.0%)",
|
|
3444
3371
|
backgroundHover: "hsl(275, 76.4%, 94.7%)",
|
|
@@ -3460,6 +3387,7 @@ const light_purple_Card = {
|
|
|
3460
3387
|
const light_purple_DrawerFrame = light_purple_Card;
|
|
3461
3388
|
const light_purple_Progress = light_purple_Card;
|
|
3462
3389
|
const light_purple_TooltipArrow = light_purple_Card;
|
|
3390
|
+
const light_purple_SliderTrack = light_purple_Card;
|
|
3463
3391
|
const light_purple_Button = {
|
|
3464
3392
|
background: "hsl(275, 76.4%, 94.7%)",
|
|
3465
3393
|
backgroundHover: "hsl(275, 70.8%, 91.8%)",
|
|
@@ -3499,7 +3427,7 @@ const light_purple_Checkbox = {
|
|
|
3499
3427
|
const light_purple_SliderTrackActive = light_purple_Checkbox;
|
|
3500
3428
|
const light_purple_Switch = light_purple_Checkbox;
|
|
3501
3429
|
const light_purple_TooltipContent = light_purple_Checkbox;
|
|
3502
|
-
const
|
|
3430
|
+
const light_purple_SliderThumb = {
|
|
3503
3431
|
background: "hsl(272, 66.0%, 16.0%)",
|
|
3504
3432
|
backgroundHover: "hsl(272, 50.0%, 45.8%)",
|
|
3505
3433
|
backgroundPress: "hsl(272, 46.8%, 50.3%)",
|
|
@@ -3517,7 +3445,8 @@ const light_purple_Tooltip = {
|
|
|
3517
3445
|
borderColorPress: "hsl(272, 46.8%, 50.3%)",
|
|
3518
3446
|
placeholderColor: "hsl(275, 76.4%, 94.7%)"
|
|
3519
3447
|
};
|
|
3520
|
-
const
|
|
3448
|
+
const light_purple_Tooltip = light_purple_SliderThumb;
|
|
3449
|
+
const light_purple_ProgressIndicator = light_purple_SliderThumb;
|
|
3521
3450
|
const light_purple_Input = {
|
|
3522
3451
|
background: "hsl(280, 65.0%, 99.4%)",
|
|
3523
3452
|
backgroundHover: "hsl(276, 100%, 99.0%)",
|
|
@@ -3555,7 +3484,6 @@ const light_pink_ListItem = {
|
|
|
3555
3484
|
borderColorPress: "hsl(323, 86.3%, 96.5%)",
|
|
3556
3485
|
placeholderColor: "hsl(322, 75.0%, 46.0%)"
|
|
3557
3486
|
};
|
|
3558
|
-
const light_pink_SliderTrack = light_pink_ListItem;
|
|
3559
3487
|
const light_pink_Card = {
|
|
3560
3488
|
background: "hsl(323, 86.3%, 96.5%)",
|
|
3561
3489
|
backgroundHover: "hsl(323, 78.7%, 94.2%)",
|
|
@@ -3577,6 +3505,7 @@ const light_pink_Card = {
|
|
|
3577
3505
|
const light_pink_DrawerFrame = light_pink_Card;
|
|
3578
3506
|
const light_pink_Progress = light_pink_Card;
|
|
3579
3507
|
const light_pink_TooltipArrow = light_pink_Card;
|
|
3508
|
+
const light_pink_SliderTrack = light_pink_Card;
|
|
3580
3509
|
const light_pink_Button = {
|
|
3581
3510
|
background: "hsl(323, 78.7%, 94.2%)",
|
|
3582
3511
|
backgroundHover: "hsl(323, 72.2%, 91.1%)",
|
|
@@ -3616,7 +3545,7 @@ const light_pink_Checkbox = {
|
|
|
3616
3545
|
const light_pink_SliderTrackActive = light_pink_Checkbox;
|
|
3617
3546
|
const light_pink_Switch = light_pink_Checkbox;
|
|
3618
3547
|
const light_pink_TooltipContent = light_pink_Checkbox;
|
|
3619
|
-
const
|
|
3548
|
+
const light_pink_SliderThumb = {
|
|
3620
3549
|
background: "hsl(320, 70.0%, 13.5%)",
|
|
3621
3550
|
backgroundHover: "hsl(322, 75.0%, 46.0%)",
|
|
3622
3551
|
backgroundPress: "hsl(322, 63.9%, 50.7%)",
|
|
@@ -3634,7 +3563,8 @@ const light_pink_Tooltip = {
|
|
|
3634
3563
|
borderColorPress: "hsl(322, 63.9%, 50.7%)",
|
|
3635
3564
|
placeholderColor: "hsl(323, 78.7%, 94.2%)"
|
|
3636
3565
|
};
|
|
3637
|
-
const
|
|
3566
|
+
const light_pink_Tooltip = light_pink_SliderThumb;
|
|
3567
|
+
const light_pink_ProgressIndicator = light_pink_SliderThumb;
|
|
3638
3568
|
const light_pink_Input = {
|
|
3639
3569
|
background: "hsl(322, 100%, 99.4%)",
|
|
3640
3570
|
backgroundHover: "hsl(323, 100%, 98.4%)",
|
|
@@ -3672,7 +3602,6 @@ const light_red_ListItem = {
|
|
|
3672
3602
|
borderColorPress: "hsl(360, 100%, 96.8%)",
|
|
3673
3603
|
placeholderColor: "hsl(358, 65.0%, 48.7%)"
|
|
3674
3604
|
};
|
|
3675
|
-
const light_red_SliderTrack = light_red_ListItem;
|
|
3676
3605
|
const light_red_Card = {
|
|
3677
3606
|
background: "hsl(360, 100%, 96.8%)",
|
|
3678
3607
|
backgroundHover: "hsl(360, 97.9%, 94.8%)",
|
|
@@ -3694,6 +3623,7 @@ const light_red_Card = {
|
|
|
3694
3623
|
const light_red_DrawerFrame = light_red_Card;
|
|
3695
3624
|
const light_red_Progress = light_red_Card;
|
|
3696
3625
|
const light_red_TooltipArrow = light_red_Card;
|
|
3626
|
+
const light_red_SliderTrack = light_red_Card;
|
|
3697
3627
|
const light_red_Button = {
|
|
3698
3628
|
background: "hsl(360, 97.9%, 94.8%)",
|
|
3699
3629
|
backgroundHover: "hsl(360, 90.2%, 91.9%)",
|
|
@@ -3733,7 +3663,7 @@ const light_red_Checkbox = {
|
|
|
3733
3663
|
const light_red_SliderTrackActive = light_red_Checkbox;
|
|
3734
3664
|
const light_red_Switch = light_red_Checkbox;
|
|
3735
3665
|
const light_red_TooltipContent = light_red_Checkbox;
|
|
3736
|
-
const
|
|
3666
|
+
const light_red_SliderThumb = {
|
|
3737
3667
|
background: "hsl(354, 50.0%, 14.6%)",
|
|
3738
3668
|
backgroundHover: "hsl(358, 65.0%, 48.7%)",
|
|
3739
3669
|
backgroundPress: "hsl(358, 69.4%, 55.2%)",
|
|
@@ -3751,7 +3681,8 @@ const light_red_Tooltip = {
|
|
|
3751
3681
|
borderColorPress: "hsl(358, 69.4%, 55.2%)",
|
|
3752
3682
|
placeholderColor: "hsl(360, 97.9%, 94.8%)"
|
|
3753
3683
|
};
|
|
3754
|
-
const
|
|
3684
|
+
const light_red_Tooltip = light_red_SliderThumb;
|
|
3685
|
+
const light_red_ProgressIndicator = light_red_SliderThumb;
|
|
3755
3686
|
const light_red_Input = {
|
|
3756
3687
|
background: "hsl(359, 100%, 99.4%)",
|
|
3757
3688
|
backgroundHover: "hsl(359, 100%, 98.6%)",
|
|
@@ -3792,6 +3723,7 @@ const dark_orange_Card = {
|
|
|
3792
3723
|
const dark_orange_DrawerFrame = dark_orange_Card;
|
|
3793
3724
|
const dark_orange_Progress = dark_orange_Card;
|
|
3794
3725
|
const dark_orange_TooltipArrow = dark_orange_Card;
|
|
3726
|
+
const dark_orange_SliderTrack = dark_orange_Card;
|
|
3795
3727
|
const dark_orange_Button = {
|
|
3796
3728
|
background: "hsl(25, 88.3%, 14.1%)",
|
|
3797
3729
|
backgroundHover: "hsl(24, 87.6%, 16.6%)",
|
|
@@ -3831,43 +3763,25 @@ const dark_orange_Checkbox = {
|
|
|
3831
3763
|
const dark_orange_SliderTrackActive = dark_orange_Checkbox;
|
|
3832
3764
|
const dark_orange_Switch = dark_orange_Checkbox;
|
|
3833
3765
|
const dark_orange_TooltipContent = dark_orange_Checkbox;
|
|
3834
|
-
const
|
|
3835
|
-
background: "
|
|
3836
|
-
backgroundHover: "
|
|
3837
|
-
backgroundPress: "hsl(
|
|
3838
|
-
backgroundFocus: "hsl(
|
|
3839
|
-
backgroundStrong: "
|
|
3840
|
-
backgroundTransparent: "hsl(30, 70.0%, 7.2%)",
|
|
3841
|
-
color: "#fff",
|
|
3842
|
-
colorHover: "hsl(24, 97.0%, 93.2%)",
|
|
3843
|
-
colorPress: "#fff",
|
|
3844
|
-
colorFocus: "hsl(24, 97.0%, 93.2%)",
|
|
3845
|
-
colorTransparent: "#fff",
|
|
3846
|
-
borderColor: "hsl(25, 88.3%, 14.1%)",
|
|
3847
|
-
borderColorHover: "hsl(24, 87.6%, 16.6%)",
|
|
3848
|
-
borderColorFocus: "hsl(26, 91.1%, 11.6%)",
|
|
3849
|
-
borderColorPress: "hsl(25, 88.3%, 14.1%)",
|
|
3850
|
-
placeholderColor: "hsl(24, 100%, 62.2%)"
|
|
3851
|
-
};
|
|
3852
|
-
const dark_orange_SliderThumb = {
|
|
3853
|
-
background: "hsl(24, 100%, 62.2%)",
|
|
3854
|
-
backgroundHover: "hsl(24, 100%, 58.5%)",
|
|
3855
|
-
backgroundPress: "hsl(24, 94.0%, 50.0%)",
|
|
3856
|
-
backgroundFocus: "hsl(25, 100%, 29.0%)",
|
|
3857
|
-
backgroundStrong: "hsl(24, 97.0%, 93.2%)",
|
|
3766
|
+
const dark_orange_SwitchThumb = {
|
|
3767
|
+
background: "#fff",
|
|
3768
|
+
backgroundHover: "#fff",
|
|
3769
|
+
backgroundPress: "hsl(24, 97.0%, 93.2%)",
|
|
3770
|
+
backgroundFocus: "hsl(24, 100%, 62.2%)",
|
|
3771
|
+
backgroundStrong: "#fff",
|
|
3858
3772
|
backgroundTransparent: "#fff",
|
|
3859
3773
|
color: "hsl(30, 70.0%, 7.2%)",
|
|
3860
3774
|
colorHover: "hsl(28, 100%, 8.4%)",
|
|
3861
3775
|
colorPress: "hsl(30, 70.0%, 7.2%)",
|
|
3862
3776
|
colorFocus: "hsl(28, 100%, 8.4%)",
|
|
3863
3777
|
colorTransparent: "hsl(30, 70.0%, 7.2%)",
|
|
3864
|
-
borderColor: "hsl(
|
|
3865
|
-
borderColorHover: "hsl(24,
|
|
3866
|
-
borderColorFocus: "hsl(24,
|
|
3867
|
-
borderColorPress: "hsl(
|
|
3868
|
-
placeholderColor: "hsl(
|
|
3778
|
+
borderColor: "hsl(24, 100%, 62.2%)",
|
|
3779
|
+
borderColorHover: "hsl(24, 100%, 58.5%)",
|
|
3780
|
+
borderColorFocus: "hsl(24, 97.0%, 93.2%)",
|
|
3781
|
+
borderColorPress: "hsl(24, 100%, 62.2%)",
|
|
3782
|
+
placeholderColor: "hsl(28, 100%, 8.4%)"
|
|
3869
3783
|
};
|
|
3870
|
-
const
|
|
3784
|
+
const dark_orange_SliderThumb = {
|
|
3871
3785
|
background: "hsl(24, 97.0%, 93.2%)",
|
|
3872
3786
|
backgroundHover: "hsl(24, 100%, 62.2%)",
|
|
3873
3787
|
backgroundPress: "hsl(24, 100%, 58.5%)",
|
|
@@ -3885,25 +3799,8 @@ const dark_orange_Tooltip = {
|
|
|
3885
3799
|
borderColorPress: "hsl(24, 94.0%, 50.0%)",
|
|
3886
3800
|
placeholderColor: "hsl(25, 88.3%, 14.1%)"
|
|
3887
3801
|
};
|
|
3888
|
-
const
|
|
3889
|
-
const
|
|
3890
|
-
background: "hsl(24, 100%, 58.5%)",
|
|
3891
|
-
backgroundHover: "hsl(24, 94.0%, 50.0%)",
|
|
3892
|
-
backgroundPress: "hsl(25, 100%, 29.0%)",
|
|
3893
|
-
backgroundFocus: "hsl(24, 88.6%, 19.8%)",
|
|
3894
|
-
backgroundStrong: "hsl(24, 100%, 62.2%)",
|
|
3895
|
-
backgroundTransparent: "hsl(24, 97.0%, 93.2%)",
|
|
3896
|
-
color: "hsl(30, 70.0%, 7.2%)",
|
|
3897
|
-
colorHover: "hsl(28, 100%, 8.4%)",
|
|
3898
|
-
colorPress: "hsl(30, 70.0%, 7.2%)",
|
|
3899
|
-
colorFocus: "hsl(28, 100%, 8.4%)",
|
|
3900
|
-
colorTransparent: "hsl(28, 100%, 8.4%)",
|
|
3901
|
-
borderColor: "hsl(24, 88.6%, 19.8%)",
|
|
3902
|
-
borderColorHover: "hsl(24, 87.6%, 16.6%)",
|
|
3903
|
-
borderColorFocus: "hsl(25, 100%, 29.0%)",
|
|
3904
|
-
borderColorPress: "hsl(24, 88.6%, 19.8%)",
|
|
3905
|
-
placeholderColor: "hsl(24, 88.6%, 19.8%)"
|
|
3906
|
-
};
|
|
3802
|
+
const dark_orange_Tooltip = dark_orange_SliderThumb;
|
|
3803
|
+
const dark_orange_ProgressIndicator = dark_orange_SliderThumb;
|
|
3907
3804
|
const dark_orange_Input = {
|
|
3908
3805
|
background: "hsl(28, 100%, 8.4%)",
|
|
3909
3806
|
backgroundHover: "hsl(26, 91.1%, 11.6%)",
|
|
@@ -3944,6 +3841,7 @@ const dark_yellow_Card = {
|
|
|
3944
3841
|
const dark_yellow_DrawerFrame = dark_yellow_Card;
|
|
3945
3842
|
const dark_yellow_Progress = dark_yellow_Card;
|
|
3946
3843
|
const dark_yellow_TooltipArrow = dark_yellow_Card;
|
|
3844
|
+
const dark_yellow_SliderTrack = dark_yellow_Card;
|
|
3947
3845
|
const dark_yellow_Button = {
|
|
3948
3846
|
background: "hsl(45, 100%, 10.4%)",
|
|
3949
3847
|
backgroundHover: "hsl(47, 100%, 12.1%)",
|
|
@@ -3983,43 +3881,25 @@ const dark_yellow_Checkbox = {
|
|
|
3983
3881
|
const dark_yellow_SliderTrackActive = dark_yellow_Checkbox;
|
|
3984
3882
|
const dark_yellow_Switch = dark_yellow_Checkbox;
|
|
3985
3883
|
const dark_yellow_TooltipContent = dark_yellow_Checkbox;
|
|
3986
|
-
const
|
|
3987
|
-
background: "
|
|
3988
|
-
backgroundHover: "
|
|
3989
|
-
backgroundPress: "hsl(
|
|
3990
|
-
backgroundFocus: "hsl(
|
|
3991
|
-
backgroundStrong: "
|
|
3992
|
-
backgroundTransparent: "hsl(45, 100%, 5.5%)",
|
|
3993
|
-
color: "#fff",
|
|
3994
|
-
colorHover: "hsl(53, 100%, 91.0%)",
|
|
3995
|
-
colorPress: "#fff",
|
|
3996
|
-
colorFocus: "hsl(53, 100%, 91.0%)",
|
|
3997
|
-
colorTransparent: "#fff",
|
|
3998
|
-
borderColor: "hsl(45, 100%, 10.4%)",
|
|
3999
|
-
borderColorHover: "hsl(47, 100%, 12.1%)",
|
|
4000
|
-
borderColorFocus: "hsl(45, 100%, 8.7%)",
|
|
4001
|
-
borderColorPress: "hsl(45, 100%, 10.4%)",
|
|
4002
|
-
placeholderColor: "hsl(48, 100%, 47.0%)"
|
|
4003
|
-
};
|
|
4004
|
-
const dark_yellow_SliderThumb = {
|
|
4005
|
-
background: "hsl(48, 100%, 47.0%)",
|
|
4006
|
-
backgroundHover: "hsl(54, 100%, 68.0%)",
|
|
4007
|
-
backgroundPress: "hsl(53, 92.0%, 50.0%)",
|
|
4008
|
-
backgroundFocus: "hsl(50, 100%, 22.0%)",
|
|
4009
|
-
backgroundStrong: "hsl(53, 100%, 91.0%)",
|
|
3884
|
+
const dark_yellow_SwitchThumb = {
|
|
3885
|
+
background: "#fff",
|
|
3886
|
+
backgroundHover: "#fff",
|
|
3887
|
+
backgroundPress: "hsl(53, 100%, 91.0%)",
|
|
3888
|
+
backgroundFocus: "hsl(48, 100%, 47.0%)",
|
|
3889
|
+
backgroundStrong: "#fff",
|
|
4010
3890
|
backgroundTransparent: "#fff",
|
|
4011
3891
|
color: "hsl(45, 100%, 5.5%)",
|
|
4012
3892
|
colorHover: "hsl(46, 100%, 6.7%)",
|
|
4013
3893
|
colorPress: "hsl(45, 100%, 5.5%)",
|
|
4014
3894
|
colorFocus: "hsl(46, 100%, 6.7%)",
|
|
4015
3895
|
colorTransparent: "hsl(45, 100%, 5.5%)",
|
|
4016
|
-
borderColor: "hsl(
|
|
4017
|
-
borderColorHover: "hsl(
|
|
4018
|
-
borderColorFocus: "hsl(53,
|
|
4019
|
-
borderColorPress: "hsl(
|
|
4020
|
-
placeholderColor: "hsl(
|
|
3896
|
+
borderColor: "hsl(48, 100%, 47.0%)",
|
|
3897
|
+
borderColorHover: "hsl(54, 100%, 68.0%)",
|
|
3898
|
+
borderColorFocus: "hsl(53, 100%, 91.0%)",
|
|
3899
|
+
borderColorPress: "hsl(48, 100%, 47.0%)",
|
|
3900
|
+
placeholderColor: "hsl(46, 100%, 6.7%)"
|
|
4021
3901
|
};
|
|
4022
|
-
const
|
|
3902
|
+
const dark_yellow_SliderThumb = {
|
|
4023
3903
|
background: "hsl(53, 100%, 91.0%)",
|
|
4024
3904
|
backgroundHover: "hsl(48, 100%, 47.0%)",
|
|
4025
3905
|
backgroundPress: "hsl(54, 100%, 68.0%)",
|
|
@@ -4037,25 +3917,8 @@ const dark_yellow_Tooltip = {
|
|
|
4037
3917
|
borderColorPress: "hsl(53, 92.0%, 50.0%)",
|
|
4038
3918
|
placeholderColor: "hsl(45, 100%, 10.4%)"
|
|
4039
3919
|
};
|
|
4040
|
-
const
|
|
4041
|
-
const
|
|
4042
|
-
background: "hsl(54, 100%, 68.0%)",
|
|
4043
|
-
backgroundHover: "hsl(53, 92.0%, 50.0%)",
|
|
4044
|
-
backgroundPress: "hsl(50, 100%, 22.0%)",
|
|
4045
|
-
backgroundFocus: "hsl(49, 100%, 14.3%)",
|
|
4046
|
-
backgroundStrong: "hsl(48, 100%, 47.0%)",
|
|
4047
|
-
backgroundTransparent: "hsl(53, 100%, 91.0%)",
|
|
4048
|
-
color: "hsl(45, 100%, 5.5%)",
|
|
4049
|
-
colorHover: "hsl(46, 100%, 6.7%)",
|
|
4050
|
-
colorPress: "hsl(45, 100%, 5.5%)",
|
|
4051
|
-
colorFocus: "hsl(46, 100%, 6.7%)",
|
|
4052
|
-
colorTransparent: "hsl(46, 100%, 6.7%)",
|
|
4053
|
-
borderColor: "hsl(49, 100%, 14.3%)",
|
|
4054
|
-
borderColorHover: "hsl(47, 100%, 12.1%)",
|
|
4055
|
-
borderColorFocus: "hsl(50, 100%, 22.0%)",
|
|
4056
|
-
borderColorPress: "hsl(49, 100%, 14.3%)",
|
|
4057
|
-
placeholderColor: "hsl(49, 100%, 14.3%)"
|
|
4058
|
-
};
|
|
3920
|
+
const dark_yellow_Tooltip = dark_yellow_SliderThumb;
|
|
3921
|
+
const dark_yellow_ProgressIndicator = dark_yellow_SliderThumb;
|
|
4059
3922
|
const dark_yellow_Input = {
|
|
4060
3923
|
background: "hsl(46, 100%, 6.7%)",
|
|
4061
3924
|
backgroundHover: "hsl(45, 100%, 8.7%)",
|
|
@@ -4096,6 +3959,7 @@ const dark_green_Card = {
|
|
|
4096
3959
|
const dark_green_DrawerFrame = dark_green_Card;
|
|
4097
3960
|
const dark_green_Progress = dark_green_Card;
|
|
4098
3961
|
const dark_green_TooltipArrow = dark_green_Card;
|
|
3962
|
+
const dark_green_SliderTrack = dark_green_Card;
|
|
4099
3963
|
const dark_green_Button = {
|
|
4100
3964
|
background: "hsl(154, 48.4%, 12.9%)",
|
|
4101
3965
|
backgroundHover: "hsl(154, 49.7%, 14.9%)",
|
|
@@ -4135,43 +3999,25 @@ const dark_green_Checkbox = {
|
|
|
4135
3999
|
const dark_green_SliderTrackActive = dark_green_Checkbox;
|
|
4136
4000
|
const dark_green_Switch = dark_green_Checkbox;
|
|
4137
4001
|
const dark_green_TooltipContent = dark_green_Checkbox;
|
|
4138
|
-
const
|
|
4139
|
-
background: "
|
|
4140
|
-
backgroundHover: "
|
|
4141
|
-
backgroundPress: "hsl(
|
|
4142
|
-
backgroundFocus: "hsl(
|
|
4143
|
-
backgroundStrong: "
|
|
4144
|
-
backgroundTransparent: "hsl(146, 30.0%, 7.4%)",
|
|
4145
|
-
color: "#fff",
|
|
4146
|
-
colorHover: "hsl(137, 72.0%, 94.0%)",
|
|
4147
|
-
colorPress: "#fff",
|
|
4148
|
-
colorFocus: "hsl(137, 72.0%, 94.0%)",
|
|
4149
|
-
colorTransparent: "#fff",
|
|
4150
|
-
borderColor: "hsl(154, 48.4%, 12.9%)",
|
|
4151
|
-
borderColorHover: "hsl(154, 49.7%, 14.9%)",
|
|
4152
|
-
borderColorFocus: "hsl(155, 46.7%, 10.9%)",
|
|
4153
|
-
borderColorPress: "hsl(154, 48.4%, 12.9%)",
|
|
4154
|
-
placeholderColor: "hsl(151, 50.0%, 53.2%)"
|
|
4155
|
-
};
|
|
4156
|
-
const dark_green_SliderThumb = {
|
|
4157
|
-
background: "hsl(151, 50.0%, 53.2%)",
|
|
4158
|
-
backgroundHover: "hsl(151, 49.3%, 46.5%)",
|
|
4159
|
-
backgroundPress: "hsl(151, 55.0%, 41.5%)",
|
|
4160
|
-
backgroundFocus: "hsl(151, 51.7%, 28.4%)",
|
|
4161
|
-
backgroundStrong: "hsl(137, 72.0%, 94.0%)",
|
|
4002
|
+
const dark_green_SwitchThumb = {
|
|
4003
|
+
background: "#fff",
|
|
4004
|
+
backgroundHover: "#fff",
|
|
4005
|
+
backgroundPress: "hsl(137, 72.0%, 94.0%)",
|
|
4006
|
+
backgroundFocus: "hsl(151, 50.0%, 53.2%)",
|
|
4007
|
+
backgroundStrong: "#fff",
|
|
4162
4008
|
backgroundTransparent: "#fff",
|
|
4163
4009
|
color: "hsl(146, 30.0%, 7.4%)",
|
|
4164
4010
|
colorHover: "hsl(155, 44.2%, 8.4%)",
|
|
4165
4011
|
colorPress: "hsl(146, 30.0%, 7.4%)",
|
|
4166
4012
|
colorFocus: "hsl(155, 44.2%, 8.4%)",
|
|
4167
4013
|
colorTransparent: "hsl(146, 30.0%, 7.4%)",
|
|
4168
|
-
borderColor: "hsl(151,
|
|
4169
|
-
borderColorHover: "hsl(
|
|
4170
|
-
borderColorFocus: "hsl(
|
|
4171
|
-
borderColorPress: "hsl(151,
|
|
4172
|
-
placeholderColor: "hsl(
|
|
4014
|
+
borderColor: "hsl(151, 50.0%, 53.2%)",
|
|
4015
|
+
borderColorHover: "hsl(151, 49.3%, 46.5%)",
|
|
4016
|
+
borderColorFocus: "hsl(137, 72.0%, 94.0%)",
|
|
4017
|
+
borderColorPress: "hsl(151, 50.0%, 53.2%)",
|
|
4018
|
+
placeholderColor: "hsl(155, 44.2%, 8.4%)"
|
|
4173
4019
|
};
|
|
4174
|
-
const
|
|
4020
|
+
const dark_green_SliderThumb = {
|
|
4175
4021
|
background: "hsl(137, 72.0%, 94.0%)",
|
|
4176
4022
|
backgroundHover: "hsl(151, 50.0%, 53.2%)",
|
|
4177
4023
|
backgroundPress: "hsl(151, 49.3%, 46.5%)",
|
|
@@ -4189,25 +4035,8 @@ const dark_green_Tooltip = {
|
|
|
4189
4035
|
borderColorPress: "hsl(151, 55.0%, 41.5%)",
|
|
4190
4036
|
placeholderColor: "hsl(154, 48.4%, 12.9%)"
|
|
4191
4037
|
};
|
|
4192
|
-
const
|
|
4193
|
-
const
|
|
4194
|
-
background: "hsl(151, 49.3%, 46.5%)",
|
|
4195
|
-
backgroundHover: "hsl(151, 55.0%, 41.5%)",
|
|
4196
|
-
backgroundPress: "hsl(151, 51.7%, 28.4%)",
|
|
4197
|
-
backgroundFocus: "hsl(154, 50.9%, 17.6%)",
|
|
4198
|
-
backgroundStrong: "hsl(151, 50.0%, 53.2%)",
|
|
4199
|
-
backgroundTransparent: "hsl(137, 72.0%, 94.0%)",
|
|
4200
|
-
color: "hsl(146, 30.0%, 7.4%)",
|
|
4201
|
-
colorHover: "hsl(155, 44.2%, 8.4%)",
|
|
4202
|
-
colorPress: "hsl(146, 30.0%, 7.4%)",
|
|
4203
|
-
colorFocus: "hsl(155, 44.2%, 8.4%)",
|
|
4204
|
-
colorTransparent: "hsl(155, 44.2%, 8.4%)",
|
|
4205
|
-
borderColor: "hsl(154, 50.9%, 17.6%)",
|
|
4206
|
-
borderColorHover: "hsl(154, 49.7%, 14.9%)",
|
|
4207
|
-
borderColorFocus: "hsl(151, 51.7%, 28.4%)",
|
|
4208
|
-
borderColorPress: "hsl(154, 50.9%, 17.6%)",
|
|
4209
|
-
placeholderColor: "hsl(154, 50.9%, 17.6%)"
|
|
4210
|
-
};
|
|
4038
|
+
const dark_green_Tooltip = dark_green_SliderThumb;
|
|
4039
|
+
const dark_green_ProgressIndicator = dark_green_SliderThumb;
|
|
4211
4040
|
const dark_green_Input = {
|
|
4212
4041
|
background: "hsl(155, 44.2%, 8.4%)",
|
|
4213
4042
|
backgroundHover: "hsl(155, 46.7%, 10.9%)",
|
|
@@ -4248,6 +4077,7 @@ const dark_blue_Card = {
|
|
|
4248
4077
|
const dark_blue_DrawerFrame = dark_blue_Card;
|
|
4249
4078
|
const dark_blue_Progress = dark_blue_Card;
|
|
4250
4079
|
const dark_blue_TooltipArrow = dark_blue_Card;
|
|
4080
|
+
const dark_blue_SliderTrack = dark_blue_Card;
|
|
4251
4081
|
const dark_blue_Button = {
|
|
4252
4082
|
background: "hsl(214, 65.8%, 17.9%)",
|
|
4253
4083
|
backgroundHover: "hsl(213, 71.2%, 20.2%)",
|
|
@@ -4287,43 +4117,25 @@ const dark_blue_Checkbox = {
|
|
|
4287
4117
|
const dark_blue_SliderTrackActive = dark_blue_Checkbox;
|
|
4288
4118
|
const dark_blue_Switch = dark_blue_Checkbox;
|
|
4289
4119
|
const dark_blue_TooltipContent = dark_blue_Checkbox;
|
|
4290
|
-
const
|
|
4291
|
-
background: "
|
|
4292
|
-
backgroundHover: "
|
|
4293
|
-
backgroundPress: "hsl(
|
|
4294
|
-
backgroundFocus: "hsl(
|
|
4295
|
-
backgroundStrong: "
|
|
4296
|
-
backgroundTransparent: "hsl(212, 35.0%, 9.2%)",
|
|
4297
|
-
color: "#fff",
|
|
4298
|
-
colorHover: "hsl(206, 98.0%, 95.8%)",
|
|
4299
|
-
colorPress: "#fff",
|
|
4300
|
-
colorFocus: "hsl(206, 98.0%, 95.8%)",
|
|
4301
|
-
colorTransparent: "#fff",
|
|
4302
|
-
borderColor: "hsl(214, 65.8%, 17.9%)",
|
|
4303
|
-
borderColorHover: "hsl(213, 71.2%, 20.2%)",
|
|
4304
|
-
borderColorFocus: "hsl(214, 59.4%, 15.3%)",
|
|
4305
|
-
borderColorPress: "hsl(214, 65.8%, 17.9%)",
|
|
4306
|
-
placeholderColor: "hsl(210, 100%, 66.1%)"
|
|
4307
|
-
};
|
|
4308
|
-
const dark_blue_SliderThumb = {
|
|
4309
|
-
background: "hsl(210, 100%, 66.1%)",
|
|
4310
|
-
backgroundHover: "hsl(209, 100%, 60.6%)",
|
|
4311
|
-
backgroundPress: "hsl(206, 100%, 50.0%)",
|
|
4312
|
-
backgroundFocus: "hsl(211, 89.7%, 34.1%)",
|
|
4313
|
-
backgroundStrong: "hsl(206, 98.0%, 95.8%)",
|
|
4120
|
+
const dark_blue_SwitchThumb = {
|
|
4121
|
+
background: "#fff",
|
|
4122
|
+
backgroundHover: "#fff",
|
|
4123
|
+
backgroundPress: "hsl(206, 98.0%, 95.8%)",
|
|
4124
|
+
backgroundFocus: "hsl(210, 100%, 66.1%)",
|
|
4125
|
+
backgroundStrong: "#fff",
|
|
4314
4126
|
backgroundTransparent: "#fff",
|
|
4315
4127
|
color: "hsl(212, 35.0%, 9.2%)",
|
|
4316
4128
|
colorHover: "hsl(216, 50.0%, 11.8%)",
|
|
4317
4129
|
colorPress: "hsl(212, 35.0%, 9.2%)",
|
|
4318
4130
|
colorFocus: "hsl(216, 50.0%, 11.8%)",
|
|
4319
4131
|
colorTransparent: "hsl(212, 35.0%, 9.2%)",
|
|
4320
|
-
borderColor: "hsl(
|
|
4321
|
-
borderColorHover: "hsl(
|
|
4322
|
-
borderColorFocus: "hsl(206,
|
|
4323
|
-
borderColorPress: "hsl(
|
|
4324
|
-
placeholderColor: "hsl(
|
|
4132
|
+
borderColor: "hsl(210, 100%, 66.1%)",
|
|
4133
|
+
borderColorHover: "hsl(209, 100%, 60.6%)",
|
|
4134
|
+
borderColorFocus: "hsl(206, 98.0%, 95.8%)",
|
|
4135
|
+
borderColorPress: "hsl(210, 100%, 66.1%)",
|
|
4136
|
+
placeholderColor: "hsl(216, 50.0%, 11.8%)"
|
|
4325
4137
|
};
|
|
4326
|
-
const
|
|
4138
|
+
const dark_blue_SliderThumb = {
|
|
4327
4139
|
background: "hsl(206, 98.0%, 95.8%)",
|
|
4328
4140
|
backgroundHover: "hsl(210, 100%, 66.1%)",
|
|
4329
4141
|
backgroundPress: "hsl(209, 100%, 60.6%)",
|
|
@@ -4341,25 +4153,8 @@ const dark_blue_Tooltip = {
|
|
|
4341
4153
|
borderColorPress: "hsl(206, 100%, 50.0%)",
|
|
4342
4154
|
placeholderColor: "hsl(214, 65.8%, 17.9%)"
|
|
4343
4155
|
};
|
|
4344
|
-
const
|
|
4345
|
-
const
|
|
4346
|
-
background: "hsl(209, 100%, 60.6%)",
|
|
4347
|
-
backgroundHover: "hsl(206, 100%, 50.0%)",
|
|
4348
|
-
backgroundPress: "hsl(211, 89.7%, 34.1%)",
|
|
4349
|
-
backgroundFocus: "hsl(212, 77.4%, 23.1%)",
|
|
4350
|
-
backgroundStrong: "hsl(210, 100%, 66.1%)",
|
|
4351
|
-
backgroundTransparent: "hsl(206, 98.0%, 95.8%)",
|
|
4352
|
-
color: "hsl(212, 35.0%, 9.2%)",
|
|
4353
|
-
colorHover: "hsl(216, 50.0%, 11.8%)",
|
|
4354
|
-
colorPress: "hsl(212, 35.0%, 9.2%)",
|
|
4355
|
-
colorFocus: "hsl(216, 50.0%, 11.8%)",
|
|
4356
|
-
colorTransparent: "hsl(216, 50.0%, 11.8%)",
|
|
4357
|
-
borderColor: "hsl(212, 77.4%, 23.1%)",
|
|
4358
|
-
borderColorHover: "hsl(213, 71.2%, 20.2%)",
|
|
4359
|
-
borderColorFocus: "hsl(211, 89.7%, 34.1%)",
|
|
4360
|
-
borderColorPress: "hsl(212, 77.4%, 23.1%)",
|
|
4361
|
-
placeholderColor: "hsl(212, 77.4%, 23.1%)"
|
|
4362
|
-
};
|
|
4156
|
+
const dark_blue_Tooltip = dark_blue_SliderThumb;
|
|
4157
|
+
const dark_blue_ProgressIndicator = dark_blue_SliderThumb;
|
|
4363
4158
|
const dark_blue_Input = {
|
|
4364
4159
|
background: "hsl(216, 50.0%, 11.8%)",
|
|
4365
4160
|
backgroundHover: "hsl(214, 59.4%, 15.3%)",
|
|
@@ -4400,6 +4195,7 @@ const dark_purple_Card = {
|
|
|
4400
4195
|
const dark_purple_DrawerFrame = dark_purple_Card;
|
|
4401
4196
|
const dark_purple_Progress = dark_purple_Card;
|
|
4402
4197
|
const dark_purple_TooltipArrow = dark_purple_Card;
|
|
4198
|
+
const dark_purple_SliderTrack = dark_purple_Card;
|
|
4403
4199
|
const dark_purple_Button = {
|
|
4404
4200
|
background: "hsl(280, 41.2%, 20.0%)",
|
|
4405
4201
|
backgroundHover: "hsl(279, 43.8%, 23.3%)",
|
|
@@ -4439,43 +4235,25 @@ const dark_purple_Checkbox = {
|
|
|
4439
4235
|
const dark_purple_SliderTrackActive = dark_purple_Checkbox;
|
|
4440
4236
|
const dark_purple_Switch = dark_purple_Checkbox;
|
|
4441
4237
|
const dark_purple_TooltipContent = dark_purple_Checkbox;
|
|
4442
|
-
const
|
|
4443
|
-
background: "
|
|
4444
|
-
backgroundHover: "
|
|
4445
|
-
backgroundPress: "hsl(
|
|
4446
|
-
backgroundFocus: "hsl(
|
|
4447
|
-
backgroundStrong: "
|
|
4448
|
-
backgroundTransparent: "hsl(284, 20.0%, 9.6%)",
|
|
4449
|
-
color: "#fff",
|
|
4450
|
-
colorHover: "hsl(279, 75.0%, 95.7%)",
|
|
4451
|
-
colorPress: "#fff",
|
|
4452
|
-
colorFocus: "hsl(279, 75.0%, 95.7%)",
|
|
4453
|
-
colorTransparent: "#fff",
|
|
4454
|
-
borderColor: "hsl(280, 41.2%, 20.0%)",
|
|
4455
|
-
borderColorHover: "hsl(279, 43.8%, 23.3%)",
|
|
4456
|
-
borderColorFocus: "hsl(281, 37.5%, 16.5%)",
|
|
4457
|
-
borderColorPress: "hsl(280, 41.2%, 20.0%)",
|
|
4458
|
-
placeholderColor: "hsl(275, 80.0%, 71.0%)"
|
|
4459
|
-
};
|
|
4460
|
-
const dark_purple_SliderThumb = {
|
|
4461
|
-
background: "hsl(275, 80.0%, 71.0%)",
|
|
4462
|
-
backgroundHover: "hsl(273, 57.3%, 59.1%)",
|
|
4463
|
-
backgroundPress: "hsl(272, 51.0%, 54.0%)",
|
|
4464
|
-
backgroundFocus: "hsl(272, 52.1%, 45.9%)",
|
|
4465
|
-
backgroundStrong: "hsl(279, 75.0%, 95.7%)",
|
|
4238
|
+
const dark_purple_SwitchThumb = {
|
|
4239
|
+
background: "#fff",
|
|
4240
|
+
backgroundHover: "#fff",
|
|
4241
|
+
backgroundPress: "hsl(279, 75.0%, 95.7%)",
|
|
4242
|
+
backgroundFocus: "hsl(275, 80.0%, 71.0%)",
|
|
4243
|
+
backgroundStrong: "#fff",
|
|
4466
4244
|
backgroundTransparent: "#fff",
|
|
4467
4245
|
color: "hsl(284, 20.0%, 9.6%)",
|
|
4468
4246
|
colorHover: "hsl(283, 30.0%, 11.8%)",
|
|
4469
4247
|
colorPress: "hsl(284, 20.0%, 9.6%)",
|
|
4470
4248
|
colorFocus: "hsl(283, 30.0%, 11.8%)",
|
|
4471
4249
|
colorTransparent: "hsl(284, 20.0%, 9.6%)",
|
|
4472
|
-
borderColor: "hsl(
|
|
4473
|
-
borderColorHover: "hsl(
|
|
4474
|
-
borderColorFocus: "hsl(
|
|
4475
|
-
borderColorPress: "hsl(
|
|
4476
|
-
placeholderColor: "hsl(
|
|
4250
|
+
borderColor: "hsl(275, 80.0%, 71.0%)",
|
|
4251
|
+
borderColorHover: "hsl(273, 57.3%, 59.1%)",
|
|
4252
|
+
borderColorFocus: "hsl(279, 75.0%, 95.7%)",
|
|
4253
|
+
borderColorPress: "hsl(275, 80.0%, 71.0%)",
|
|
4254
|
+
placeholderColor: "hsl(283, 30.0%, 11.8%)"
|
|
4477
4255
|
};
|
|
4478
|
-
const
|
|
4256
|
+
const dark_purple_SliderThumb = {
|
|
4479
4257
|
background: "hsl(279, 75.0%, 95.7%)",
|
|
4480
4258
|
backgroundHover: "hsl(275, 80.0%, 71.0%)",
|
|
4481
4259
|
backgroundPress: "hsl(273, 57.3%, 59.1%)",
|
|
@@ -4493,25 +4271,8 @@ const dark_purple_Tooltip = {
|
|
|
4493
4271
|
borderColorPress: "hsl(272, 51.0%, 54.0%)",
|
|
4494
4272
|
placeholderColor: "hsl(280, 41.2%, 20.0%)"
|
|
4495
4273
|
};
|
|
4496
|
-
const
|
|
4497
|
-
const
|
|
4498
|
-
background: "hsl(273, 57.3%, 59.1%)",
|
|
4499
|
-
backgroundHover: "hsl(272, 51.0%, 54.0%)",
|
|
4500
|
-
backgroundPress: "hsl(272, 52.1%, 45.9%)",
|
|
4501
|
-
backgroundFocus: "hsl(277, 46.4%, 27.5%)",
|
|
4502
|
-
backgroundStrong: "hsl(275, 80.0%, 71.0%)",
|
|
4503
|
-
backgroundTransparent: "hsl(279, 75.0%, 95.7%)",
|
|
4504
|
-
color: "hsl(284, 20.0%, 9.6%)",
|
|
4505
|
-
colorHover: "hsl(283, 30.0%, 11.8%)",
|
|
4506
|
-
colorPress: "hsl(284, 20.0%, 9.6%)",
|
|
4507
|
-
colorFocus: "hsl(283, 30.0%, 11.8%)",
|
|
4508
|
-
colorTransparent: "hsl(283, 30.0%, 11.8%)",
|
|
4509
|
-
borderColor: "hsl(277, 46.4%, 27.5%)",
|
|
4510
|
-
borderColorHover: "hsl(279, 43.8%, 23.3%)",
|
|
4511
|
-
borderColorFocus: "hsl(272, 52.1%, 45.9%)",
|
|
4512
|
-
borderColorPress: "hsl(277, 46.4%, 27.5%)",
|
|
4513
|
-
placeholderColor: "hsl(277, 46.4%, 27.5%)"
|
|
4514
|
-
};
|
|
4274
|
+
const dark_purple_Tooltip = dark_purple_SliderThumb;
|
|
4275
|
+
const dark_purple_ProgressIndicator = dark_purple_SliderThumb;
|
|
4515
4276
|
const dark_purple_Input = {
|
|
4516
4277
|
background: "hsl(283, 30.0%, 11.8%)",
|
|
4517
4278
|
backgroundHover: "hsl(281, 37.5%, 16.5%)",
|
|
@@ -4552,6 +4313,7 @@ const dark_pink_Card = {
|
|
|
4552
4313
|
const dark_pink_DrawerFrame = dark_pink_Card;
|
|
4553
4314
|
const dark_pink_Progress = dark_pink_Card;
|
|
4554
4315
|
const dark_pink_TooltipArrow = dark_pink_Card;
|
|
4316
|
+
const dark_pink_SliderTrack = dark_pink_Card;
|
|
4555
4317
|
const dark_pink_Button = {
|
|
4556
4318
|
background: "hsl(320, 45.4%, 18.7%)",
|
|
4557
4319
|
backgroundHover: "hsl(320, 49.0%, 21.1%)",
|
|
@@ -4591,43 +4353,25 @@ const dark_pink_Checkbox = {
|
|
|
4591
4353
|
const dark_pink_SliderTrackActive = dark_pink_Checkbox;
|
|
4592
4354
|
const dark_pink_Switch = dark_pink_Checkbox;
|
|
4593
4355
|
const dark_pink_TooltipContent = dark_pink_Checkbox;
|
|
4594
|
-
const
|
|
4595
|
-
background: "
|
|
4596
|
-
backgroundHover: "
|
|
4597
|
-
backgroundPress: "hsl(
|
|
4598
|
-
backgroundFocus: "hsl(
|
|
4599
|
-
backgroundStrong: "
|
|
4600
|
-
backgroundTransparent: "hsl(318, 25.0%, 9.6%)",
|
|
4601
|
-
color: "#fff",
|
|
4602
|
-
colorHover: "hsl(322, 90.0%, 95.8%)",
|
|
4603
|
-
colorPress: "#fff",
|
|
4604
|
-
colorFocus: "hsl(322, 90.0%, 95.8%)",
|
|
4605
|
-
colorTransparent: "#fff",
|
|
4606
|
-
borderColor: "hsl(320, 45.4%, 18.7%)",
|
|
4607
|
-
borderColorHover: "hsl(320, 49.0%, 21.1%)",
|
|
4608
|
-
borderColorFocus: "hsl(319, 41.0%, 16.0%)",
|
|
4609
|
-
borderColorPress: "hsl(320, 45.4%, 18.7%)",
|
|
4610
|
-
placeholderColor: "hsl(325, 90.0%, 66.4%)"
|
|
4611
|
-
};
|
|
4612
|
-
const dark_pink_SliderThumb = {
|
|
4613
|
-
background: "hsl(325, 90.0%, 66.4%)",
|
|
4614
|
-
backgroundHover: "hsl(323, 72.8%, 59.2%)",
|
|
4615
|
-
backgroundPress: "hsl(322, 65.0%, 54.5%)",
|
|
4616
|
-
backgroundFocus: "hsl(322, 74.9%, 37.5%)",
|
|
4617
|
-
backgroundStrong: "hsl(322, 90.0%, 95.8%)",
|
|
4356
|
+
const dark_pink_SwitchThumb = {
|
|
4357
|
+
background: "#fff",
|
|
4358
|
+
backgroundHover: "#fff",
|
|
4359
|
+
backgroundPress: "hsl(322, 90.0%, 95.8%)",
|
|
4360
|
+
backgroundFocus: "hsl(325, 90.0%, 66.4%)",
|
|
4361
|
+
backgroundStrong: "#fff",
|
|
4618
4362
|
backgroundTransparent: "#fff",
|
|
4619
4363
|
color: "hsl(318, 25.0%, 9.6%)",
|
|
4620
4364
|
colorHover: "hsl(319, 32.2%, 11.6%)",
|
|
4621
4365
|
colorPress: "hsl(318, 25.0%, 9.6%)",
|
|
4622
4366
|
colorFocus: "hsl(319, 32.2%, 11.6%)",
|
|
4623
4367
|
colorTransparent: "hsl(318, 25.0%, 9.6%)",
|
|
4624
|
-
borderColor: "hsl(
|
|
4625
|
-
borderColorHover: "hsl(
|
|
4626
|
-
borderColorFocus: "hsl(322,
|
|
4627
|
-
borderColorPress: "hsl(
|
|
4628
|
-
placeholderColor: "hsl(
|
|
4368
|
+
borderColor: "hsl(325, 90.0%, 66.4%)",
|
|
4369
|
+
borderColorHover: "hsl(323, 72.8%, 59.2%)",
|
|
4370
|
+
borderColorFocus: "hsl(322, 90.0%, 95.8%)",
|
|
4371
|
+
borderColorPress: "hsl(325, 90.0%, 66.4%)",
|
|
4372
|
+
placeholderColor: "hsl(319, 32.2%, 11.6%)"
|
|
4629
4373
|
};
|
|
4630
|
-
const
|
|
4374
|
+
const dark_pink_SliderThumb = {
|
|
4631
4375
|
background: "hsl(322, 90.0%, 95.8%)",
|
|
4632
4376
|
backgroundHover: "hsl(325, 90.0%, 66.4%)",
|
|
4633
4377
|
backgroundPress: "hsl(323, 72.8%, 59.2%)",
|
|
@@ -4645,25 +4389,8 @@ const dark_pink_Tooltip = {
|
|
|
4645
4389
|
borderColorPress: "hsl(322, 65.0%, 54.5%)",
|
|
4646
4390
|
placeholderColor: "hsl(320, 45.4%, 18.7%)"
|
|
4647
4391
|
};
|
|
4648
|
-
const
|
|
4649
|
-
const
|
|
4650
|
-
background: "hsl(323, 72.8%, 59.2%)",
|
|
4651
|
-
backgroundHover: "hsl(322, 65.0%, 54.5%)",
|
|
4652
|
-
backgroundPress: "hsl(322, 74.9%, 37.5%)",
|
|
4653
|
-
backgroundFocus: "hsl(321, 53.6%, 24.4%)",
|
|
4654
|
-
backgroundStrong: "hsl(325, 90.0%, 66.4%)",
|
|
4655
|
-
backgroundTransparent: "hsl(322, 90.0%, 95.8%)",
|
|
4656
|
-
color: "hsl(318, 25.0%, 9.6%)",
|
|
4657
|
-
colorHover: "hsl(319, 32.2%, 11.6%)",
|
|
4658
|
-
colorPress: "hsl(318, 25.0%, 9.6%)",
|
|
4659
|
-
colorFocus: "hsl(319, 32.2%, 11.6%)",
|
|
4660
|
-
colorTransparent: "hsl(319, 32.2%, 11.6%)",
|
|
4661
|
-
borderColor: "hsl(321, 53.6%, 24.4%)",
|
|
4662
|
-
borderColorHover: "hsl(320, 49.0%, 21.1%)",
|
|
4663
|
-
borderColorFocus: "hsl(322, 74.9%, 37.5%)",
|
|
4664
|
-
borderColorPress: "hsl(321, 53.6%, 24.4%)",
|
|
4665
|
-
placeholderColor: "hsl(321, 53.6%, 24.4%)"
|
|
4666
|
-
};
|
|
4392
|
+
const dark_pink_Tooltip = dark_pink_SliderThumb;
|
|
4393
|
+
const dark_pink_ProgressIndicator = dark_pink_SliderThumb;
|
|
4667
4394
|
const dark_pink_Input = {
|
|
4668
4395
|
background: "hsl(319, 32.2%, 11.6%)",
|
|
4669
4396
|
backgroundHover: "hsl(319, 41.0%, 16.0%)",
|
|
@@ -4704,6 +4431,7 @@ const dark_red_Card = {
|
|
|
4704
4431
|
const dark_red_DrawerFrame = dark_red_Card;
|
|
4705
4432
|
const dark_red_Progress = dark_red_Card;
|
|
4706
4433
|
const dark_red_TooltipArrow = dark_red_Card;
|
|
4434
|
+
const dark_red_SliderTrack = dark_red_Card;
|
|
4707
4435
|
const dark_red_Button = {
|
|
4708
4436
|
background: "hsl(356, 47.6%, 19.2%)",
|
|
4709
4437
|
backgroundHover: "hsl(356, 51.1%, 21.9%)",
|
|
@@ -4743,25 +4471,7 @@ const dark_red_Checkbox = {
|
|
|
4743
4471
|
const dark_red_SliderTrackActive = dark_red_Checkbox;
|
|
4744
4472
|
const dark_red_Switch = dark_red_Checkbox;
|
|
4745
4473
|
const dark_red_TooltipContent = dark_red_Checkbox;
|
|
4746
|
-
const
|
|
4747
|
-
background: "hsl(353, 23.0%, 9.8%)",
|
|
4748
|
-
backgroundHover: "hsl(357, 34.4%, 12.0%)",
|
|
4749
|
-
backgroundPress: "hsl(356, 43.4%, 16.4%)",
|
|
4750
|
-
backgroundFocus: "hsl(356, 47.6%, 19.2%)",
|
|
4751
|
-
backgroundStrong: "hsl(353, 23.0%, 9.8%)",
|
|
4752
|
-
backgroundTransparent: "hsl(353, 23.0%, 9.8%)",
|
|
4753
|
-
color: "#fff",
|
|
4754
|
-
colorHover: "hsl(351, 89.0%, 96.0%)",
|
|
4755
|
-
colorPress: "#fff",
|
|
4756
|
-
colorFocus: "hsl(351, 89.0%, 96.0%)",
|
|
4757
|
-
colorTransparent: "#fff",
|
|
4758
|
-
borderColor: "hsl(356, 47.6%, 19.2%)",
|
|
4759
|
-
borderColorHover: "hsl(356, 51.1%, 21.9%)",
|
|
4760
|
-
borderColorFocus: "hsl(356, 43.4%, 16.4%)",
|
|
4761
|
-
borderColorPress: "hsl(356, 47.6%, 19.2%)",
|
|
4762
|
-
placeholderColor: "hsl(358, 100%, 69.5%)"
|
|
4763
|
-
};
|
|
4764
|
-
const dark_red_Tooltip = {
|
|
4474
|
+
const dark_red_SliderThumb = {
|
|
4765
4475
|
background: "hsl(351, 89.0%, 96.0%)",
|
|
4766
4476
|
backgroundHover: "hsl(358, 100%, 69.5%)",
|
|
4767
4477
|
backgroundPress: "hsl(358, 85.3%, 64.0%)",
|
|
@@ -4779,7 +4489,8 @@ const dark_red_Tooltip = {
|
|
|
4779
4489
|
borderColorPress: "hsl(358, 75.0%, 59.0%)",
|
|
4780
4490
|
placeholderColor: "hsl(356, 47.6%, 19.2%)"
|
|
4781
4491
|
};
|
|
4782
|
-
const
|
|
4492
|
+
const dark_red_Tooltip = dark_red_SliderThumb;
|
|
4493
|
+
const dark_red_ProgressIndicator = dark_red_SliderThumb;
|
|
4783
4494
|
const dark_red_Input = {
|
|
4784
4495
|
background: "hsl(357, 34.4%, 12.0%)",
|
|
4785
4496
|
backgroundHover: "hsl(356, 43.4%, 16.4%)",
|