use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Chinoiserie Midnight"),
author: Cow::Borrowed("Di Wang (https://cs.cmu.edu/~diw3)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1d1d1d),
fg: Color::from_hex(0xc4cbcf),
cursor: Some(Color::from_hex(0xc4cbcf)),
selection: Some(Color::from_hex(0x373737)),
line_highlight: Some(Color::from_hex(0x282828)),
gutter: Some(Color::from_hex(0x918072)),
statusbar_bg: Some(Color::from_hex(0x282828)),
statusbar_fg: Some(Color::from_hex(0xbdaead)),
comment: Some(Color::from_hex(0x918072)),
keyword: Some(Color::from_hex(0xcf8997)),
string: Some(Color::from_hex(0xaeb831)),
function: Some(Color::from_hex(0x81a2a2)),
variable: Some(Color::from_hex(0xed5a56)),
r#type: Some(Color::from_hex(0xfbb957)),
constant: Some(Color::from_hex(0xfc8c23)),
operator: Some(Color::from_hex(0xc4cbcf)),
tag: Some(Color::from_hex(0xed5a56)),
error: Some(Color::from_hex(0xed5a56)),
warning: Some(Color::from_hex(0xfbb957)),
info: Some(Color::from_hex(0x81a2a2)),
success: Some(Color::from_hex(0xaeb831)),
red: Some(Color::from_hex(0xed5a56)),
orange: Some(Color::from_hex(0xfc8c23)),
yellow: Some(Color::from_hex(0xfbb957)),
green: Some(Color::from_hex(0xaeb831)),
cyan: Some(Color::from_hex(0x88b68d)),
blue: Some(Color::from_hex(0x81a2a2)),
purple: Some(Color::from_hex(0xcf8997)),
magenta: Some(Color::from_hex(0xcd6227)),
};