use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("chrysoprase"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x333333)),
selection: None,
line_highlight: Some(Color::from_hex(0xcccccc)),
gutter: Some(Color::from_hex(0x444444)),
statusbar_bg: Some(Color::from_hex(0x8090a0)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x555555)),
keyword: Some(Color::from_hex(0x111111)),
string: Some(Color::from_hex(0xdd1144)),
function: Some(Color::from_hex(0x990000)),
variable: Some(Color::from_hex(0x445588)),
r#type: Some(Color::from_hex(0x445588)),
constant: Some(Color::from_hex(0xa512d5)),
operator: Some(Color::from_hex(0x222222)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xdd1144)),
green: Some(Color::from_hex(0xdd1144)),
cyan: Some(Color::from_hex(0x445588)),
blue: Some(Color::from_hex(0x990000)),
purple: Some(Color::from_hex(0x111111)),
magenta: Some(Color::from_hex(0x111111)),
};