use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sourcerer"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x222222),
fg: Color::from_hex(0xc2c2b0),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x6688aa)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x878787)),
statusbar_bg: Some(Color::from_hex(0x808070)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x686858)),
keyword: Some(Color::from_hex(0x90b0d1)),
string: Some(Color::from_hex(0x779b70)),
function: Some(Color::from_hex(0xfaf4c6)),
variable: Some(Color::from_hex(0x9ebac2)),
r#type: Some(Color::from_hex(0x7e8aa2)),
constant: Some(Color::from_hex(0xff9800)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff6a6a)),
warning: Some(Color::from_hex(0xee9a00)),
info: None,
success: None,
red: Some(Color::from_hex(0xff6a6a)),
orange: None,
yellow: Some(Color::from_hex(0xee9a00)),
green: Some(Color::from_hex(0x779b70)),
cyan: Some(Color::from_hex(0x7e8aa2)),
blue: Some(Color::from_hex(0xfaf4c6)),
purple: Some(Color::from_hex(0x90b0d1)),
magenta: Some(Color::from_hex(0x528b8b)),
};