use ratatui::style::Color;
pub const BG_COLOR: Color = Color::Rgb(36, 40, 59);
pub const FG_COLOR: Color = Color::Rgb(192, 202, 245);
pub const ACCENT_COLOR: Color = Color::Rgb(122, 162, 247);
pub const WARNING_COLOR: Color = Color::Rgb(224, 175, 104);
pub const ERROR_COLOR: Color = Color::Rgb(247, 120, 107);
pub const SUCCESS_COLOR: Color = Color::Rgb(158, 206, 106);
pub const FOLDER_COLOR: Color = Color::Rgb(130, 170, 255);
pub const _SELECTED_COLOR: Color = Color::Rgb(255, 158, 100);
pub const BORDER_COLOR: Color = Color::Rgb(86, 95, 137);
pub const HIGHLIGHT_BG: Color = Color::Rgb(41, 46, 66);