use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("earendel"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2a2a2a),
fg: Color::from_hex(0xcacaca),
cursor: Some(Color::from_hex(0xe5e5e5)),
selection: Some(Color::from_hex(0x5a5a5a)),
line_highlight: Some(Color::from_hex(0x404040)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x505050)),
statusbar_fg: Some(Color::from_hex(0xe5e5e5)),
comment: Some(Color::from_hex(0x77be21)),
keyword: Some(Color::from_hex(0xa7b4ed)),
string: None,
function: None,
variable: Some(Color::from_hex(0x16c9ae)),
r#type: Some(Color::from_hex(0x95a4ea)),
constant: Some(Color::from_hex(0xdc8511)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xe5e5e5)),
warning: Some(Color::from_hex(0xea0023)),
info: None,
success: None,
red: Some(Color::from_hex(0xe5e5e5)),
orange: None,
yellow: Some(Color::from_hex(0xea0023)),
green: Some(Color::from_hex(0xdadada)),
cyan: Some(Color::from_hex(0x95a4ea)),
blue: None,
purple: Some(Color::from_hex(0xa7b4ed)),
magenta: Some(Color::from_hex(0xe09ea8)),
};