use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("gardener"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x332211),
fg: Color::from_hex(0xeeeeee),
cursor: Some(Color::from_hex(0xcc4455)),
selection: Some(Color::from_hex(0x557799)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xcc4455)),
statusbar_fg: Some(Color::from_hex(0xeeeeee)),
comment: Some(Color::from_hex(0x888888)),
keyword: Some(Color::from_hex(0x66ffcc)),
string: Some(Color::from_hex(0xffffcc)),
function: Some(Color::from_hex(0xffffaa)),
variable: Some(Color::from_hex(0xffddaa)),
r#type: Some(Color::from_hex(0xccffaa)),
constant: Some(Color::from_hex(0xeeeeee)),
operator: Some(Color::from_hex(0xcc9966)),
tag: Some(Color::from_hex(0xbbddff)),
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xffffcc)),
cyan: Some(Color::from_hex(0xccffaa)),
blue: Some(Color::from_hex(0xffffaa)),
purple: Some(Color::from_hex(0x66ffcc)),
magenta: Some(Color::from_hex(0xffcc99)),
};