use ratatui::style::Color;
pub const BACKGROUND: Color = Color::Rgb(24, 23, 21); pub const FOREGROUND: Color = Color::Rgb(168, 163, 159); pub const RED: Color = Color::Rgb(152, 41, 15); pub const GREEN: Color = Color::Rgb(71, 154, 67); pub const YELLOW: Color = Color::Rgb(127, 113, 17); pub const BLUE: Color = Color::Rgb(73, 127, 125); pub const PURPLE: Color = Color::Rgb(127, 78, 47); pub const CYAN: Color = Color::Rgb(56, 127, 88);
pub const BRIGHT_PURPLE: Color = Color::Rgb(205, 124, 84);
pub const DIMMED: Color = Color::Rgb(60, 60, 60); pub const SELECTION_BG: Color = Color::Rgb(65, 56, 41); pub const HOVER_BG: Color = Color::Rgb(38, 36, 33);