use ratatui::style::Color;
use ratatui::widgets::BorderType;
pub const BG: Color = Color::Rgb(30, 30, 46);
pub const SURFACE: Color = Color::Rgb(36, 36, 54);
pub const TEXT: Color = Color::Rgb(164, 171, 199);
pub const TEXT_DIM: Color = Color::Rgb(148, 155, 180);
pub const SUBTLE: Color = Color::Rgb(88, 91, 112);
pub const SUBGROUP: Color = Color::Rgb(249, 226, 145);
pub const USER_DIR: Color = Color::Rgb(203, 166, 247);
pub const ACCENT: Color = Color::Rgb(116, 199, 236);
pub const BORDER_ACTIVE: Color = Color::Rgb(179, 190, 254);
pub const GREEN: Color = Color::Rgb(166, 218, 149);
pub const YELLOW: Color = Color::Rgb(229, 200, 144);
pub const RED: Color = Color::Rgb(237, 135, 150);
pub const BORDER_TYPE: BorderType = BorderType::Rounded;