summaryrefslogtreecommitdiffstats
path: root/src/interactive/widgets/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/interactive/widgets/mod.rs')
-rw-r--r--src/interactive/widgets/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interactive/widgets/mod.rs b/src/interactive/widgets/mod.rs
index 5e37423..dd1f8c3 100644
--- a/src/interactive/widgets/mod.rs
+++ b/src/interactive/widgets/mod.rs
@@ -17,11 +17,11 @@ use tui::style::Color;
pub const COLOR_MARKED: Color = Color::Yellow;
pub const COLOR_MARKED_DARK: Color = Color::Rgb(176, 126, 0);
-fn entry_color(fg: Color, is_file: bool, is_marked: bool) -> Color {
+fn entry_color(fg: Option<Color>, is_file: bool, is_marked: bool) -> Option<Color> {
match (is_file, is_marked) {
- (true, false) => Color::DarkGray,
- (true, true) => COLOR_MARKED_DARK,
- (false, true) => COLOR_MARKED,
+ (true, false) => Color::DarkGray.into(),
+ (true, true) => COLOR_MARKED_DARK.into(),
+ (false, true) => COLOR_MARKED.into(),
_ => fg,
}
}