use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("elflord"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x00ffff),
cursor: Some(Color::from_hex(0x00ffff)),
selection: Some(Color::from_hex(0xa9a9a9)),
line_highlight: Some(Color::from_hex(0x3a3a3a)),
gutter: Some(Color::from_hex(0xffff00)),
statusbar_bg: Some(Color::from_hex(0x00ffff)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x80a0ff)),
keyword: Some(Color::from_hex(0xaa4444)),
string: Some(Color::from_hex(0xff00ff)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0x40ffff)),
r#type: Some(Color::from_hex(0x60ff60)),
constant: Some(Color::from_hex(0xff00ff)),
operator: Some(Color::from_hex(0xff0000)),
tag: Some(Color::from_hex(0xff0000)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xff00ff)),
cyan: Some(Color::from_hex(0x60ff60)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xaa4444)),
magenta: Some(Color::from_hex(0xff80ff)),
};