use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Evenhold"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0x34adf2)),
selection: Some(Color::from_hex(0x103050)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x004a63)),
statusbar_fg: Some(Color::from_hex(0xf2f2f2)),
comment: Some(Color::from_hex(0x626262)),
keyword: Some(Color::from_hex(0x8600af)),
string: Some(Color::from_hex(0x0097bd)),
function: Some(Color::from_hex(0x32baff)),
variable: Some(Color::from_hex(0x53e3ff)),
r#type: Some(Color::from_hex(0xff983c)),
constant: Some(Color::from_hex(0xc61a1a)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xbb0000)),
warning: Some(Color::from_hex(0xffff00)),
info: None,
success: None,
red: Some(Color::from_hex(0xbb0000)),
orange: None,
yellow: Some(Color::from_hex(0xffff00)),
green: Some(Color::from_hex(0x0097bd)),
cyan: Some(Color::from_hex(0xc61a1a)),
blue: Some(Color::from_hex(0x32baff)),
purple: Some(Color::from_hex(0x8600af)),
magenta: Some(Color::from_hex(0x53e3ff)),
};