use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hhorange"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x332412),
fg: Color::from_hex(0x9b8f78),
cursor: Some(Color::from_hex(0xcc9069)),
selection: Some(Color::from_hex(0x886b46)),
line_highlight: None,
gutter: Some(Color::from_hex(0x756664)),
statusbar_bg: Some(Color::from_hex(0x1c1200)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x887900)),
keyword: Some(Color::from_hex(0xaa668f)),
string: None,
function: None,
variable: Some(Color::from_hex(0xbe7569)),
r#type: Some(Color::from_hex(0xbb7b22)),
constant: Some(Color::from_hex(0x885222)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xbb9466)),
green: None,
cyan: Some(Color::from_hex(0xbb7b22)),
blue: None,
purple: Some(Color::from_hex(0xaa668f)),
magenta: Some(Color::from_hex(0x775a55)),
};