use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("eva01-LCL"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xd7d1dc),
cursor: Some(Color::from_hex(0x87ff5f)),
selection: Some(Color::from_hex(0x875faf)),
line_highlight: Some(Color::from_hex(0x262626)),
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0x121212)),
statusbar_fg: Some(Color::from_hex(0xbc79ff)),
comment: Some(Color::from_hex(0x878787)),
keyword: Some(Color::from_hex(0xc993ff)),
string: Some(Color::from_hex(0xafd7af)),
function: Some(Color::from_hex(0xafafff)),
variable: Some(Color::from_hex(0xafafff)),
r#type: Some(Color::from_hex(0xbee38a)),
constant: Some(Color::from_hex(0xbee38a)),
operator: Some(Color::from_hex(0xc993ff)),
tag: Some(Color::from_hex(0xd7af5f)),
error: Some(Color::from_hex(0xd75f87)),
warning: Some(Color::from_hex(0xd75f87)),
info: None,
success: None,
red: Some(Color::from_hex(0xd75f87)),
orange: None,
yellow: Some(Color::from_hex(0xd75f87)),
green: Some(Color::from_hex(0xafd7af)),
cyan: Some(Color::from_hex(0xbee38a)),
blue: Some(Color::from_hex(0xafafff)),
purple: Some(Color::from_hex(0xc993ff)),
magenta: Some(Color::from_hex(0xbc79ff)),
};