A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Tweak favourite-icon colors

+8 -26
+8 -26
src/Applications/UI/Tracks/Scene/List.elm
··· 116 116 { default : String 117 117 , dark : String 118 118 , light : String 119 + , subtle : String 119 120 } 120 121 121 122 ··· 190 191 { default = Color.toCssString color 191 192 , dark = Color.toCssString (Color.darken 0.3 color) 192 193 , light = Color.toCssString (Color.fadeOut 0.625 color) 194 + , subtle = Color.toCssString (Color.fadeOut 0.575 color) 193 195 } 194 196 in 195 197 Html.Styled.fromUnstyled ··· 815 817 let 816 818 color = 817 819 if isNowPlaying && isFavourite then 818 - if isSelected then 819 - favColors.selection 820 - 821 - else 822 - derivedColors.dark 820 + derivedColors.dark 823 821 824 822 else if isNowPlaying then 825 - if isSelected then 826 - favColors.selectionFadedMore 827 - 828 - else 829 - favColors.blackFaded 823 + derivedColors.subtle 830 824 831 825 else if favouritesOnly || not isFavourite then 832 - if isSelected then 833 - favColors.selectionFadedMore 834 - 835 - else 836 - favColors.blackFaded 837 - 838 - else if isSelected then 839 - favColors.selection 826 + favColors.blackFaded 840 827 841 828 else 842 829 favColors.red ··· 892 879 favColors = 893 880 { blackFaded = Color.toCssString (Color.rgba 0 0 0 0.125) 894 881 , red = Color.toCssString UI.Kit.colorKit.base08 895 - , selection = Color.toCssString UI.Kit.colors.selectionAlt 896 - , selectionFaded = Color.toCssString (Color.fadeOut 0.6 UI.Kit.colors.selectionAlt) 897 - , selectionFadedMore = Color.toCssString (Color.fadeOut 0.875 UI.Kit.colors.selectionAlt) 898 - , white = Color.toCssString (Color.rgb 1 1 1) 899 - , whiteFaded = Color.toCssString (Color.rgba 1 1 1 0.4) 900 882 } 901 883 902 884 903 885 rowBackgroundColors = 904 - { white = favColors.white 886 + { white = Color.toCssString (Color.rgb 1 1 1) 905 887 , whiteNear = Color.toCssString (Color.rgb255 252 252 252) 906 888 } 907 889 ··· 909 891 rowFontColors = 910 892 { default = Color.toCssString UI.Kit.colors.text 911 893 , grey = Color.toCssString UI.Kit.colorKit.base04 912 - , selection = favColors.selection 913 - , white = favColors.white 894 + , selection = Color.toCssString UI.Kit.colors.selectionAlt 895 + , white = Color.toCssString (Color.rgb 1 1 1) 914 896 } 915 897 916 898