add new themable color for selected + playing track

fixes #166
This commit is contained in:
Henrik Friedrichsen
2020-04-09 23:50:56 +02:00
parent b5566351b5
commit 510f1ff6ad
4 changed files with 7 additions and 1 deletions

View File

@@ -175,7 +175,7 @@ impl<I: ListItem> View for ListView<I> {
let style = if self.selected == i {
let fg = if item.is_playing(self.queue.clone()) {
*printer.theme.palette.custom("playing").unwrap()
*printer.theme.palette.custom("playing_selected").unwrap()
} else {
PaletteColor::Tertiary.resolve(&printer.theme.palette)
};