use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("mrpink"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x242424),
fg: Color::from_hex(0xe0e0e0),
cursor: Some(Color::from_hex(0x666666)),
selection: Some(Color::from_hex(0x000000)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x383838)),
statusbar_bg: Some(Color::from_hex(0x1c1c1c)),
statusbar_fg: Some(Color::from_hex(0xa0a0a0)),
comment: Some(Color::from_hex(0x99968b)),
keyword: Some(Color::from_hex(0x8ac6f2)),
string: Some(Color::from_hex(0x98ff85)),
function: Some(Color::from_hex(0xffff99)),
variable: Some(Color::from_hex(0xffff99)),
r#type: Some(Color::from_hex(0xffff99)),
constant: Some(Color::from_hex(0xffa1cf)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xe7f6da)),
green: Some(Color::from_hex(0x98ff85)),
cyan: Some(Color::from_hex(0xffff99)),
blue: Some(Color::from_hex(0xffff99)),
purple: Some(Color::from_hex(0x8ac6f2)),
magenta: Some(Color::from_hex(0xffa1cf)),
};