use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("yuejiu"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x080808),
fg: Color::from_hex(0xffafaf),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x121212)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x626262)),
statusbar_bg: Some(Color::from_hex(0x303030)),
statusbar_fg: Some(Color::from_hex(0xeeeeee)),
comment: Some(Color::from_hex(0x6c6c6c)),
keyword: Some(Color::from_hex(0x875f00)),
string: Some(Color::from_hex(0xffaf5f)),
function: Some(Color::from_hex(0xaf5f5f)),
variable: Some(Color::from_hex(0xaf5f5f)),
r#type: Some(Color::from_hex(0xaf5f5f)),
constant: Some(Color::from_hex(0xffafaf)),
operator: Some(Color::from_hex(0xffaf00)),
tag: Some(Color::from_hex(0xffafaf)),
error: Some(Color::from_hex(0x262626)),
warning: Some(Color::from_hex(0xaf0000)),
info: None,
success: None,
red: Some(Color::from_hex(0x262626)),
orange: None,
yellow: Some(Color::from_hex(0xaf0000)),
green: Some(Color::from_hex(0xffaf5f)),
cyan: Some(Color::from_hex(0xaf5f5f)),
blue: Some(Color::from_hex(0xaf5f5f)),
purple: Some(Color::from_hex(0x875f00)),
magenta: Some(Color::from_hex(0xaf5f00)),
};