use ratatui::style::Color; pub const BG: Color = Color::Rgb(0xf7, 0xf3, 0xee); pub const FG: Color = Color::Rgb(0x60, 0x5a, 0x52); pub const DIM: Color = Color::Rgb(0x8c, 0x86, 0x7e); pub const SELECTION_BG: Color = Color::Rgb(0xdd, 0xd2, 0xbc); pub const ACCENT: Color = Color::Rgb(0x65, 0x87, 0xbf); pub const STATE_OK: Color = Color::Rgb(0x5d, 0x7a, 0x55); pub const STATE_WARN: Color = Color::Rgb(0xa7, 0x8a, 0x5e); pub const STATE_FAULT: Color = Color::Rgb(0xc4, 0x6a, 0x6a);