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.

Make the top menu slightly more prominent

+4 -1
+4 -1
src/Applications/UI/Navigation.elm
··· 53 53 brick 54 54 [ css globalStyles ] 55 55 [ T.f7 56 + , T.fw6 56 57 , T.mb5 57 58 , T.mt4 58 59 , T.tracked ··· 101 102 globalColors = 102 103 { active = Color.toElmCssColor UI.Kit.colorKit.base01 103 104 , border = Color.toElmCssColor (Color.Manipulate.fadeOut 0.875 UI.Kit.colorKit.base01) 104 - , default = Color.toElmCssColor (Color.Manipulate.fadeOut 0.275 UI.Kit.colorKit.base01) 105 + , default = Color.toElmCssColor (Color.Manipulate.fadeOut 0.45 UI.Kit.colorKit.base01) 105 106 } 106 107 107 108 ··· 114 115 globalItemStyles isActivePage = 115 116 [ Css.borderBottomColor (ifThenElse isActivePage globalColors.border <| Css.rgba 0 0 0 0) 116 117 , Css.color (ifThenElse isActivePage globalColors.active globalColors.default) 118 + 119 + -- 117 120 , UI.Kit.textFocus 118 121 ] 119 122