use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Chinoiserie"),
author: Cow::Borrowed("Di Wang (https://cs.cmu.edu/~diw3)"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x4a4035),
cursor: Some(Color::from_hex(0x4a4035)),
selection: Some(Color::from_hex(0xd6d6d6)),
line_highlight: Some(Color::from_hex(0xe0e0e0)),
gutter: Some(Color::from_hex(0x80766e)),
statusbar_bg: Some(Color::from_hex(0xe0e0e0)),
statusbar_fg: Some(Color::from_hex(0x918072)),
comment: Some(Color::from_hex(0x80766e)),
keyword: Some(Color::from_hex(0xc08eaf)),
string: Some(Color::from_hex(0x428675)),
function: Some(Color::from_hex(0x815c94)),
variable: Some(Color::from_hex(0xc04851)),
r#type: Some(Color::from_hex(0xd6a01d)),
constant: Some(Color::from_hex(0xfb8b05)),
operator: Some(Color::from_hex(0x4a4035)),
tag: Some(Color::from_hex(0xc04851)),
error: Some(Color::from_hex(0xc04851)),
warning: Some(Color::from_hex(0xd6a01d)),
info: Some(Color::from_hex(0x815c94)),
success: Some(Color::from_hex(0x428675)),
red: Some(Color::from_hex(0xc04851)),
orange: Some(Color::from_hex(0xfb8b05)),
yellow: Some(Color::from_hex(0xd6a01d)),
green: Some(Color::from_hex(0x428675)),
cyan: Some(Color::from_hex(0x2b73af)),
blue: Some(Color::from_hex(0x815c94)),
purple: Some(Color::from_hex(0xc08eaf)),
magenta: Some(Color::from_hex(0x945833)),
};