use ratatui::prelude::Color;
pub const ORANGE: Color = Color::Rgb(250, 200, 152);
pub const DARKORANGE: Color = Color::Rgb(125, 100, 76);
pub const RED: Color = Color::Rgb(250, 160, 160);
pub const DARKRED: Color = Color::Rgb(83, 53, 53);
pub const YELLOW: Color = Color::Rgb(255, 250, 160);
pub const DARKYELLOW: Color = Color::Rgb(85, 82, 53);
pub const LIGHTGRAY: Color = Color::Rgb(120, 120, 120);
pub const DARKGRAY: Color = Color::Rgb(30, 30, 30);
pub const HELP_BACKGROUND: Color = Color::Rgb(0, 0, 0);