use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("khaki"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xd7d7af),
fg: Color::from_hex(0x5f5f00),
cursor: Some(Color::from_hex(0x5f5f00)),
selection: Some(Color::from_hex(0xd7ff87)),
line_highlight: Some(Color::from_hex(0xd7d787)),
gutter: Some(Color::from_hex(0x5f5f00)),
statusbar_bg: Some(Color::from_hex(0x008787)),
statusbar_fg: Some(Color::from_hex(0xd7d7af)),
comment: Some(Color::from_hex(0x87875f)),
keyword: Some(Color::from_hex(0x87005f)),
string: Some(Color::from_hex(0x005f5f)),
function: None,
variable: Some(Color::from_hex(0x005f87)),
r#type: Some(Color::from_hex(0x5f005f)),
constant: Some(Color::from_hex(0xaf5f5f)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x5f5f00)),
warning: Some(Color::from_hex(0x5f5f00)),
info: None,
success: None,
red: Some(Color::from_hex(0x5f5f00)),
orange: None,
yellow: Some(Color::from_hex(0x5f5f00)),
green: Some(Color::from_hex(0x005f5f)),
cyan: Some(Color::from_hex(0x5f005f)),
blue: None,
purple: Some(Color::from_hex(0x87005f)),
magenta: Some(Color::from_hex(0x5f0000)),
};