use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hhteal"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x223322),
fg: Color::from_hex(0x88bb88),
cursor: Some(Color::from_hex(0x99cc99)),
selection: Some(Color::from_hex(0x668866)),
line_highlight: None,
gutter: Some(Color::from_hex(0x647564)),
statusbar_bg: Some(Color::from_hex(0x101c10)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x008866)),
keyword: Some(Color::from_hex(0x99aa66)),
string: None,
function: None,
variable: Some(Color::from_hex(0x69be69)),
r#type: Some(Color::from_hex(0x22bb66)),
constant: Some(Color::from_hex(0x228844)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x66bb88)),
green: None,
cyan: Some(Color::from_hex(0x22bb66)),
blue: None,
purple: Some(Color::from_hex(0x99aa66)),
magenta: Some(Color::from_hex(0x557755)),
};