Files
hexapoda/src/select_grey.rs
T
2026-03-16 23:49:53 -05:00

12 lines
163 B
Rust

use ratatui::style::Color;
pub trait SelectGrey {
fn select_grey() -> Self;
}
impl SelectGrey for Color {
fn select_grey() -> Self {
Self::Indexed(242)
}
}