aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tui/ui.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/tui/ui.rs b/src/tui/ui.rs
index 4b210a7..c2e8021 100644
--- a/src/tui/ui.rs
+++ b/src/tui/ui.rs
@@ -47,10 +47,7 @@ const SELECTED_ROW_STYLE: Style = Style::new()
.add_modifier(Modifier::BOLD)
.add_modifier(Modifier::REVERSED);
const SELECTED_TABLE_COL_STYLE: Style = Style::new().add_modifier(Modifier::BOLD);
-// .fg(Color::Indexed(HIGLIGHT_COLOR_INDEX));
-const SELECTEC_TABLE_CELL_STYLE: Style = Style::new()
- // .bg(Color::Indexed(250))
- .add_modifier(Modifier::REVERSED);
+const SELECTEC_TABLE_CELL_STYLE: Style = Style::new().add_modifier(Modifier::REVERSED);
const TEXT_FG_COLOR: Color = Color::Indexed(TEXT_FG_COLOR_INDEX);
const TEXT_UNSELECTED_FG_COLOR: Color = Color::Indexed(TEXT_UNSELECTED_COLOR_INDEX);
const SORTED_ENTRIES: &str = "▼";