use ratatui::style::Color;
pub const BG: Color = Color::Rgb(8, 8, 12);
pub const AMBER: Color = Color::Rgb(255, 176, 0);
pub const AMBER_DIM: Color = Color::Rgb(140, 100, 0);
pub const GREEN: Color = Color::Rgb(0, 255, 65);
pub const GREEN_DIM: Color = Color::Rgb(0, 120, 30);
pub const CYAN: Color = Color::Rgb(0, 255, 255);
pub const CYAN_DIM: Color = Color::Rgb(0, 120, 140);
pub const RED: Color = Color::Rgb(255, 0, 0);
pub const RED_DIM: Color = Color::Rgb(140, 0, 0);
pub const MAGENTA: Color = Color::Rgb(255, 0, 200);
pub const WHITE: Color = Color::Rgb(220, 220, 220);
pub const GRAY: Color = Color::Rgb(80, 80, 90);
pub const DARK_GRAY: Color = Color::Rgb(30, 30, 35);
pub const HUD_BG: Color = Color::Rgb(15, 15, 20);
pub const CARD_RED: Color = Color::Rgb(255, 50, 50);
pub const CARD_BLACK: Color = Color::Rgb(200, 200, 210);