use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Catppuccin Mocha"),
author: Cow::Borrowed("https://github.com/catppuccin/catppuccin"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1e1e2e),
fg: Color::from_hex(0xcdd6f4),
cursor: Some(Color::from_hex(0xcdd6f4)),
selection: Some(Color::from_hex(0x313244)),
line_highlight: Some(Color::from_hex(0x181825)),
gutter: Some(Color::from_hex(0x45475a)),
statusbar_bg: Some(Color::from_hex(0x181825)),
statusbar_fg: Some(Color::from_hex(0x585b70)),
comment: Some(Color::from_hex(0x45475a)),
keyword: Some(Color::from_hex(0xcba6f7)),
string: Some(Color::from_hex(0xa6e3a1)),
function: Some(Color::from_hex(0x89b4fa)),
variable: Some(Color::from_hex(0xf38ba8)),
r#type: Some(Color::from_hex(0xf9e2af)),
constant: Some(Color::from_hex(0xfab387)),
operator: Some(Color::from_hex(0xcdd6f4)),
tag: Some(Color::from_hex(0xf38ba8)),
error: Some(Color::from_hex(0xf38ba8)),
warning: Some(Color::from_hex(0xf9e2af)),
info: Some(Color::from_hex(0x89b4fa)),
success: Some(Color::from_hex(0xa6e3a1)),
red: Some(Color::from_hex(0xf38ba8)),
orange: Some(Color::from_hex(0xfab387)),
yellow: Some(Color::from_hex(0xf9e2af)),
green: Some(Color::from_hex(0xa6e3a1)),
cyan: Some(Color::from_hex(0x94e2d5)),
blue: Some(Color::from_hex(0x89b4fa)),
purple: Some(Color::from_hex(0xcba6f7)),
magenta: Some(Color::from_hex(0xf2cdcd)),
};