use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("pandora"),
author: Cow::Borrowed("Cassandra Fox"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x131213),
fg: Color::from_hex(0xf15c99),
cursor: Some(Color::from_hex(0xf15c99)),
selection: Some(Color::from_hex(0x472234)),
line_highlight: Some(Color::from_hex(0x2f1823)),
gutter: Some(Color::from_hex(0xffbee3)),
statusbar_bg: Some(Color::from_hex(0x2f1823)),
statusbar_fg: Some(Color::from_hex(0x9b2a46)),
comment: Some(Color::from_hex(0xffbee3)),
keyword: Some(Color::from_hex(0xa24030)),
string: Some(Color::from_hex(0x9ddf69)),
function: Some(Color::from_hex(0x008080)),
variable: Some(Color::from_hex(0xb00b69)),
r#type: Some(Color::from_hex(0xffcc00)),
constant: Some(Color::from_hex(0xff9153)),
operator: Some(Color::from_hex(0xf15c99)),
tag: Some(Color::from_hex(0xb00b69)),
error: Some(Color::from_hex(0xb00b69)),
warning: Some(Color::from_hex(0xffcc00)),
info: Some(Color::from_hex(0x008080)),
success: Some(Color::from_hex(0x9ddf69)),
red: Some(Color::from_hex(0xb00b69)),
orange: Some(Color::from_hex(0xff9153)),
yellow: Some(Color::from_hex(0xffcc00)),
green: Some(Color::from_hex(0x9ddf69)),
cyan: Some(Color::from_hex(0x714ca6)),
blue: Some(Color::from_hex(0x008080)),
purple: Some(Color::from_hex(0xa24030)),
magenta: Some(Color::from_hex(0xa24030)),
};