use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Emacs Nw"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x808080)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0xb22222)),
keyword: Some(Color::from_hex(0x800080)),
string: Some(Color::from_hex(0xbc8f8f)),
function: Some(Color::from_hex(0x0000ff)),
variable: Some(Color::from_hex(0xb8860b)),
r#type: Some(Color::from_hex(0x228b22)),
constant: Some(Color::from_hex(0x5f9ea0)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xbc8f8f)),
cyan: Some(Color::from_hex(0x5f9ea0)),
blue: Some(Color::from_hex(0x0000ff)),
purple: Some(Color::from_hex(0x800080)),
magenta: Some(Color::from_hex(0xb8860b)),
};