use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Monokai"),
author: Cow::Borrowed("Wimer Hazenberg (http://www.monokai.nl)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x272822),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xf8f8f2)),
selection: Some(Color::from_hex(0x49483e)),
line_highlight: Some(Color::from_hex(0x383830)),
gutter: Some(Color::from_hex(0x75715e)),
statusbar_bg: Some(Color::from_hex(0x383830)),
statusbar_fg: Some(Color::from_hex(0xa59f85)),
comment: Some(Color::from_hex(0x75715e)),
keyword: Some(Color::from_hex(0xae81ff)),
string: Some(Color::from_hex(0xa6e22e)),
function: Some(Color::from_hex(0x66d9ef)),
variable: Some(Color::from_hex(0xf92672)),
r#type: Some(Color::from_hex(0xf4bf75)),
constant: Some(Color::from_hex(0xfd971f)),
operator: Some(Color::from_hex(0xf8f8f2)),
tag: Some(Color::from_hex(0xf92672)),
error: Some(Color::from_hex(0xf92672)),
warning: Some(Color::from_hex(0xf4bf75)),
info: Some(Color::from_hex(0x66d9ef)),
success: Some(Color::from_hex(0xa6e22e)),
red: Some(Color::from_hex(0xf92672)),
orange: Some(Color::from_hex(0xfd971f)),
yellow: Some(Color::from_hex(0xf4bf75)),
green: Some(Color::from_hex(0xa6e22e)),
cyan: Some(Color::from_hex(0xa1efe4)),
blue: Some(Color::from_hex(0x66d9ef)),
purple: Some(Color::from_hex(0xae81ff)),
magenta: Some(Color::from_hex(0xcc6633)),
};