| 1 |
use ratatui::style::Color; |
| 2 |
|
| 3 |
pub const BG: Color = Color::Rgb(0xf7, 0xf3, 0xee); |
| 4 |
pub const FG: Color = Color::Rgb(0x60, 0x5a, 0x52); |
| 5 |
pub const DIM: Color = Color::Rgb(0x8c, 0x86, 0x7e); |
| 6 |
pub const SELECTION_BG: Color = Color::Rgb(0xdd, 0xd2, 0xbc); |
| 7 |
pub const ACCENT: Color = Color::Rgb(0x65, 0x87, 0xbf); |
| 8 |
pub const STATE_OK: Color = Color::Rgb(0x5d, 0x7a, 0x55); |
| 9 |
pub const STATE_WARN: Color = Color::Rgb(0xa7, 0x8a, 0x5e); |
| 10 |
pub const STATE_FAULT: Color = Color::Rgb(0xc4, 0x6a, 0x6a); |
| 11 |
|