use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hhspring"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x332f22),
fg: Color::from_hex(0xbbae88),
cursor: Some(Color::from_hex(0xccbf99)),
selection: Some(Color::from_hex(0x887f66)),
line_highlight: None,
gutter: Some(Color::from_hex(0x757164)),
statusbar_bg: Some(Color::from_hex(0x1c1910)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x458800)),
keyword: Some(Color::from_hex(0xaa6667)),
string: None,
function: None,
variable: Some(Color::from_hex(0xbea869)),
r#type: Some(Color::from_hex(0x9fbb22)),
constant: Some(Color::from_hex(0x818822)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xafbb66)),
green: None,
cyan: Some(Color::from_hex(0x9fbb22)),
blue: None,
purple: Some(Color::from_hex(0xaa6667)),
magenta: Some(Color::from_hex(0x776e55)),
};