Skip to content

Commit 594e212

Browse files
committed
Darker highlighting in the list
1 parent 5c35546 commit 594e212

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/list/state.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ impl<'a> ListState<'a> {
166166
{
167167
if self.selected_row == Some(self.row_offset + n_displayed_rows) {
168168
stdout.queue(SetBackgroundColor(Color::Rgb {
169-
r: 50,
170-
g: 50,
171-
b: 50,
169+
r: 40,
170+
g: 40,
171+
b: 40,
172172
}))?;
173173
stdout.write_all("🦀".as_bytes())?;
174174
} else {

0 commit comments

Comments
 (0)