use ratatui::style::Color;
use crate::tui::themes::styler::SixColorsTwoRowsStyler;
#[derive(Debug, Default, Clone, Eq, PartialEq)]
pub struct UnderTheSea;
impl SixColorsTwoRowsStyler for UnderTheSea {
const BACKGROUND: Color = Color::from_u32(0x00011116);
const LIGHT_BACKGROUND: Color = Color::from_u32(0x00213136);
const FOREGROUND: Color = Color::from_u32(0x00ffffff);
const DARK_FOREGROUND: Color = Color::from_u32(0x00022026);
const COLORS: [Color; 6] = [
Color::from_u32(0x00ff4242),
Color::from_u32(0x002aea5e),
Color::from_u32(0x008ed4fd),
Color::from_u32(0x0061d5ba),
Color::from_u32(0x001298ff),
Color::from_u32(0x0098d028),
];
const DARK_COLORS: [Color; 6] = [
Color::from_u32(0x00b2302d),
Color::from_u32(0x0000a941),
Color::from_u32(0x0059819c),
Color::from_u32(0x00459a86),
Color::from_u32(0x0000599d),
Color::from_u32(0x005d7e19),
];
const ROW_BACKGROUNDS: [Color; 2] = [Color::from_u32(0x0007171C), Color::from_u32(0x000D1D22)];
const HIGHLIGHT_BACKGROUND: Color = Color::from_u32(0x002ADCB6);
const HIGHLIGHT_FOREGROUND: Color = Self::FOREGROUND;
const STATUS_BAR_ERROR: Color = Color::from_u32(0x00820000);
}