use ratatui::style::Color;
#[derive(Clone, Debug)] pub struct CommonColors {
pub default_text: Color,
pub highlight_text: Color, pub header_text: Color,
pub header_background: Color,
pub highlight_background: Color, pub error_text: Color,
pub warning_text: Color,
pub info_text: Color,
pub border_color: Color,
pub title_color: Color,
}
impl Default for CommonColors {
fn default() -> Self {
Self {
default_text: Color::White,
highlight_text: Color::Yellow,
header_text: Color::White,
header_background: Color::Blue,
highlight_background: Color::DarkGray,
error_text: Color::Red,
warning_text: Color::Yellow,
info_text: Color::Cyan,
border_color: Color::Gray,
title_color: Color::White,
}
}
}