use ratatui::style::Color;
#[allow(dead_code)]
pub mod mocha {
use super::Color;
pub const ROSEWATER: Color = Color::Rgb(245, 224, 220);
pub const FLAMINGO: Color = Color::Rgb(242, 205, 205);
pub const PINK: Color = Color::Rgb(245, 194, 231);
pub const MAUVE: Color = Color::Rgb(203, 166, 247);
pub const RED: Color = Color::Rgb(243, 139, 168);
pub const MAROON: Color = Color::Rgb(235, 160, 172);
pub const PEACH: Color = Color::Rgb(250, 179, 135);
pub const YELLOW: Color = Color::Rgb(249, 226, 175);
pub const GREEN: Color = Color::Rgb(166, 227, 161);
pub const TEAL: Color = Color::Rgb(148, 226, 213);
pub const SKY: Color = Color::Rgb(137, 220, 235);
pub const SAPPHIRE: Color = Color::Rgb(116, 199, 236);
pub const BLUE: Color = Color::Rgb(137, 180, 250);
pub const LAVENDER: Color = Color::Rgb(180, 190, 254);
pub const TEXT: Color = Color::Rgb(205, 214, 244);
pub const SUBTEXT1: Color = Color::Rgb(186, 194, 222);
pub const SUBTEXT0: Color = Color::Rgb(166, 173, 200);
pub const OVERLAY2: Color = Color::Rgb(147, 153, 178);
pub const OVERLAY1: Color = Color::Rgb(127, 132, 156);
pub const OVERLAY0: Color = Color::Rgb(108, 112, 134);
pub const SURFACE2: Color = Color::Rgb(88, 91, 112);
pub const SURFACE1: Color = Color::Rgb(69, 71, 90);
pub const SURFACE0: Color = Color::Rgb(49, 50, 68);
pub const BASE: Color = Color::Rgb(30, 30, 46);
pub const MANTLE: Color = Color::Rgb(24, 24, 37);
pub const CRUST: Color = Color::Rgb(17, 17, 27);
}
#[allow(dead_code)]
#[derive(Debug, Clone, Copy)]
pub struct Theme {
pub bg: Color,
pub panel: Color,
pub panel_alt: Color,
pub border: Color,
pub border_focus: Color,
pub text: Color,
pub text_muted: Color,
pub text_disabled: Color,
pub accent: Color,
pub primary: Color,
pub info: Color,
pub success: Color,
pub warning: Color,
pub danger: Color,
pub selection_bg: Color,
}
pub const CATPPUCCIN_MOCHA: Theme = Theme {
bg: mocha::CRUST,
panel: mocha::BASE,
panel_alt: mocha::SURFACE0,
border: mocha::SURFACE1,
border_focus: mocha::LAVENDER,
text: mocha::TEXT,
text_muted: mocha::SUBTEXT0,
text_disabled: mocha::OVERLAY1,
accent: mocha::MAUVE,
primary: mocha::BLUE,
info: mocha::SKY,
success: mocha::GREEN,
warning: mocha::YELLOW,
danger: mocha::RED,
selection_bg: mocha::SURFACE0,
};