use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("cake"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x575757),
cursor: Some(Color::from_hex(0xfd35fd)),
selection: Some(Color::from_hex(0xe34faf)),
line_highlight: Some(Color::from_hex(0xf5f5f5)),
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: Some(Color::from_hex(0xe34faf)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x00a1b3)),
keyword: Some(Color::from_hex(0xf279b3)),
string: Some(Color::from_hex(0xe87021)),
function: Some(Color::from_hex(0x0c8df0)),
variable: Some(Color::from_hex(0x0c8df0)),
r#type: Some(Color::from_hex(0xf041aa)),
constant: Some(Color::from_hex(0xbf75bf)),
operator: Some(Color::from_hex(0xeb67d1)),
tag: Some(Color::from_hex(0x707070)),
error: Some(Color::from_hex(0xdb6097)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xdb6097)),
orange: None,
yellow: Some(Color::from_hex(0x707070)),
green: Some(Color::from_hex(0xe87021)),
cyan: Some(Color::from_hex(0xf041aa)),
blue: Some(Color::from_hex(0x0c8df0)),
purple: Some(Color::from_hex(0xf279b3)),
magenta: None,
};