use ratatui::style::{Color, Modifier, Style};
pub const ACCENT: Color = Color::Rgb(139, 123, 240);
pub const TEAL: Color = Color::Rgb(79, 214, 201);
pub const DIM: Color = Color::Rgb(128, 128, 140);
pub const WARN: Color = Color::Rgb(230, 160, 70);
pub fn title() -> Style {
Style::new().fg(ACCENT).add_modifier(Modifier::BOLD)
}
pub fn selected() -> Style {
Style::new()
.bg(ACCENT)
.fg(Color::Black)
.add_modifier(Modifier::BOLD)
}
pub fn dim() -> Style {
Style::new().fg(DIM)
}
pub fn text() -> Style {
Style::new().fg(Color::Rgb(238, 236, 246))
}
pub fn header() -> Style {
Style::new().fg(DIM).add_modifier(Modifier::BOLD)
}
pub fn warn() -> Style {
Style::new().fg(WARN).add_modifier(Modifier::BOLD)
}
pub fn ok() -> Style {
Style::new().fg(TEAL)
}