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.

Fade out missing tracks

+4 -1
+4 -1
src/Applications/UI/Tracks/Scene/List.elm
··· 193 193 194 194 195 195 rowStyles : Int -> Identifiers -> List Css.Style 196 - rowStyles idx { isNowPlaying } = 196 + rowStyles idx { isMissing, isNowPlaying } = 197 197 let 198 198 bgColor = 199 199 if isNowPlaying then ··· 208 208 color = 209 209 if isNowPlaying then 210 210 Css.rgb 255 255 255 211 + 212 + else if isMissing then 213 + Color.toElmCssColor UI.Kit.colorKit.base04 211 214 212 215 else 213 216 Color.toElmCssColor UI.Kit.colors.text