use ratatui::style::Color;
pub const RED: Color = Color::Indexed(124);
pub const GREEN: Color = Color::Indexed(77);
pub const BLUE: Color = Color::Indexed(27);
pub const YELLOW: Color = Color::Indexed(220);
pub const MAGENTA: Color = Color::Indexed(128);
pub const SKY_BLUE: Color = Color::Indexed(32);
pub const PINK: Color = Color::Indexed(205);
pub const GRAY_BLACK: Color = Color::Indexed(234);
pub const GRAY_DARK: Color = Color::Indexed(236);
pub const GRAY_DIM: Color = Color::Indexed(240);
pub const GRAY_MEDIUM: Color = Color::Indexed(243);
pub const GRAY_LIGHT: Color = Color::Indexed(250);
pub const GRAY_WHITE: Color = Color::Indexed(253);
pub const WHITE: Color = Color::White;
pub const BLACK: Color = Color::Black;
pub const GRAY_A: Color = Color::Indexed(246);
pub const GRAY_B: Color = Color::Indexed(248);