Skip to content

Commit

Permalink
use the same bg color for highlight item
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Aug 28, 2024
1 parent c48ccc3 commit 979173e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ impl App {
ColorMode::Light => Style::default().fg(Color::Black),
})
.highlight_style(if self.focused_block == FocusedBlock::NewDevices {
Style::default().bg(Color::Gray)
Style::default().bg(Color::DarkGray)
} else {
Style::default()
});
Expand Down

0 comments on commit 979173e

Please sign in to comment.