highlight spaces between bytes when selected

This commit is contained in:
alice pellerin
2026-03-16 23:26:06 -05:00
parent 7a18c6cbfe
commit ce19c3eb9c
5 changed files with 106 additions and 55 deletions
+11
View File
@@ -0,0 +1,11 @@
use ratatui::style::Color;
pub trait SelectGrey {
fn select_grey() -> Self;
}
impl SelectGrey for Color {
fn select_grey() -> Self {
Self::Indexed(242)
}
}