use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("kellys"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x2a2b2f),
fg: Color::from_hex(0xe1e0e5),
cursor: Some(Color::from_hex(0xe1e0e5)),
selection: Some(Color::from_hex(0xe1e0e5)),
line_highlight: Some(Color::from_hex(0x303132)),
gutter: Some(Color::from_hex(0x67686b)),
statusbar_bg: Some(Color::from_hex(0x62acce)),
statusbar_fg: Some(Color::from_hex(0x2a2b2f)),
comment: Some(Color::from_hex(0x67686b)),
keyword: Some(Color::from_hex(0x62acce)),
string: Some(Color::from_hex(0xd1c79e)),
function: Some(Color::from_hex(0xe1e0e5)),
variable: Some(Color::from_hex(0x9ab2c8)),
r#type: Some(Color::from_hex(0xe6ac32)),
constant: Some(Color::from_hex(0xd1c79e)),
operator: Some(Color::from_hex(0x9ab2c8)),
tag: Some(Color::from_hex(0x9ab2c8)),
error: Some(Color::from_hex(0x9d0e15)),
warning: Some(Color::from_hex(0x9d0e15)),
info: None,
success: None,
red: Some(Color::from_hex(0x9d0e15)),
orange: None,
yellow: Some(Color::from_hex(0x9d0e15)),
green: Some(Color::from_hex(0xd1c79e)),
cyan: Some(Color::from_hex(0xe6ac32)),
blue: Some(Color::from_hex(0xe1e0e5)),
purple: Some(Color::from_hex(0x62acce)),
magenta: Some(Color::from_hex(0xd1d435)),
};