use ratatui::style::{Color, Modifier, Style};
pub const HEADER_STYLE: Style = Style::new().fg(Color::Yellow).add_modifier(Modifier::BOLD);
pub const SELECTED_STYLE: Style = Style::new()
.bg(Color::DarkGray)
.add_modifier(Modifier::BOLD);
pub const CLAUDE_COLOR: Color = Color::Rgb(204, 120, 50);
pub const CODEX_COLOR: Color = Color::Rgb(100, 200, 100);
pub const CHILD_STYLE: Style = Style::new().fg(Color::Gray);
pub const BORDER_STYLE: Style = Style::new().fg(Color::DarkGray);
pub const TITLE_STYLE: Style = Style::new().fg(Color::White).add_modifier(Modifier::BOLD);
pub const CLAUDE_SPARKLINE_STYLE: Style = Style::new().fg(CLAUDE_COLOR);
pub const CODEX_SPARKLINE_STYLE: Style = Style::new().fg(CODEX_COLOR);