use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("garden"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x080808),
cursor: Some(Color::from_hex(0xaf5fff)),
selection: Some(Color::from_hex(0xffffaf)),
line_highlight: Some(Color::from_hex(0xeeeeee)),
gutter: Some(Color::from_hex(0xe4e4e4)),
statusbar_bg: Some(Color::from_hex(0x808080)),
statusbar_fg: Some(Color::from_hex(0xeeeeee)),
comment: Some(Color::from_hex(0xb2b2b2)),
keyword: Some(Color::from_hex(0xd70000)),
string: Some(Color::from_hex(0x00005f)),
function: Some(Color::from_hex(0x005f00)),
variable: Some(Color::from_hex(0x5f8700)),
r#type: Some(Color::from_hex(0x5f0000)),
constant: Some(Color::from_hex(0x00005f)),
operator: Some(Color::from_hex(0xd70000)),
tag: Some(Color::from_hex(0x870000)),
error: Some(Color::from_hex(0xaf0000)),
warning: Some(Color::from_hex(0xff5f00)),
info: None,
success: None,
red: Some(Color::from_hex(0xaf0000)),
orange: None,
yellow: Some(Color::from_hex(0xff5f00)),
green: Some(Color::from_hex(0x00005f)),
cyan: Some(Color::from_hex(0x5f0000)),
blue: Some(Color::from_hex(0x005f00)),
purple: Some(Color::from_hex(0xd70000)),
magenta: Some(Color::from_hex(0x875f00)),
};