use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Zen And Art"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x191717),
fg: Color::from_hex(0xd2dec4),
cursor: Some(Color::from_hex(0xa7a7a7)),
selection: Some(Color::from_hex(0x999966)),
line_highlight: Some(Color::from_hex(0x252323)),
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x333b40)),
keyword: Some(Color::from_hex(0xae5825)),
string: Some(Color::from_hex(0x5a7644)),
function: Some(Color::from_hex(0xc6b032)),
variable: Some(Color::from_hex(0x46657b)),
r#type: Some(Color::from_hex(0xc6b032)),
constant: Some(Color::from_hex(0x86453a)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x5a7644)),
cyan: Some(Color::from_hex(0x86453a)),
blue: Some(Color::from_hex(0xc6b032)),
purple: Some(Color::from_hex(0xae5825)),
magenta: Some(Color::from_hex(0x46657b)),
};