fix: stop using ANSI blue (#2421)

- One less color.
- Replaced with cyan which looks better next to other cyan components.
This commit is contained in:
ae
2025-08-18 09:02:25 -07:00
committed by GitHub
parent be6a4faa45
commit da69d50c60
6 changed files with 19 additions and 16 deletions

View File

@@ -101,7 +101,7 @@ pub(crate) fn render_rows(
if Some(i) == state.selected_idx {
cell = cell.style(
Style::default()
.fg(Color::Blue)
.fg(Color::Cyan)
.add_modifier(Modifier::BOLD),
);
} else if *is_current {