summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/interactive/widgets/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interactive/widgets/mod.rs b/src/interactive/widgets/mod.rs
index dd1f8c3..2c11ff1 100644
--- a/src/interactive/widgets/mod.rs
+++ b/src/interactive/widgets/mod.rs
@@ -19,9 +19,9 @@ pub const COLOR_MARKED_DARK: Color = Color::Rgb(176, 126, 0);
fn entry_color(fg: Option<Color>, is_file: bool, is_marked: bool) -> Option<Color> {
match (is_file, is_marked) {
- (true, false) => Color::DarkGray.into(),
+ (true, false) => fg,
(true, true) => COLOR_MARKED_DARK.into(),
(false, true) => COLOR_MARKED.into(),
- _ => fg,
+ (false, false) => Color::Cyan.into(),
}
}