use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("zenburn"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xdcdccc),
cursor: Some(Color::from_hex(0x8faf9f)),
selection: Some(Color::from_hex(0x2f2f2f)),
line_highlight: Some(Color::from_hex(0x434443)),
gutter: Some(Color::from_hex(0x9fafaf)),
statusbar_bg: Some(Color::from_hex(0xccdc90)),
statusbar_fg: Some(Color::from_hex(0x313633)),
comment: Some(Color::from_hex(0x7f9f7f)),
keyword: Some(Color::from_hex(0xf0dfaf)),
string: Some(Color::from_hex(0xcc9393)),
function: Some(Color::from_hex(0xefef8f)),
variable: Some(Color::from_hex(0xefdcbc)),
r#type: Some(Color::from_hex(0xdfdfbf)),
constant: Some(Color::from_hex(0xdca3a3)),
operator: Some(Color::from_hex(0xf0efd0)),
tag: Some(Color::from_hex(0xe89393)),
error: Some(Color::from_hex(0x80d4aa)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0x80d4aa)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xcc9393)),
cyan: Some(Color::from_hex(0xdfdfbf)),
blue: Some(Color::from_hex(0xefef8f)),
purple: Some(Color::from_hex(0xf0dfaf)),
magenta: Some(Color::from_hex(0xffcfaf)),
};