use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("emil"),
author: Cow::Borrowed("limelier"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xefefef),
fg: Color::from_hex(0x313145),
cursor: Some(Color::from_hex(0x313145)),
selection: Some(Color::from_hex(0x9e9eaf)),
line_highlight: Some(Color::from_hex(0xbebed2)),
gutter: Some(Color::from_hex(0x7c7c98)),
statusbar_bg: Some(Color::from_hex(0xbebed2)),
statusbar_fg: Some(Color::from_hex(0x505063)),
comment: Some(Color::from_hex(0x7c7c98)),
keyword: Some(Color::from_hex(0x6916b6)),
string: Some(Color::from_hex(0x0073a8)),
function: Some(Color::from_hex(0x471397)),
variable: Some(Color::from_hex(0xf43979)),
r#type: Some(Color::from_hex(0xff669b)),
constant: Some(Color::from_hex(0xd22a8b)),
operator: Some(Color::from_hex(0x313145)),
tag: Some(Color::from_hex(0xf43979)),
error: Some(Color::from_hex(0xf43979)),
warning: Some(Color::from_hex(0xff669b)),
info: Some(Color::from_hex(0x471397)),
success: Some(Color::from_hex(0x0073a8)),
red: Some(Color::from_hex(0xf43979)),
orange: Some(Color::from_hex(0xd22a8b)),
yellow: Some(Color::from_hex(0xff669b)),
green: Some(Color::from_hex(0x0073a8)),
cyan: Some(Color::from_hex(0x2155d6)),
blue: Some(Color::from_hex(0x471397)),
purple: Some(Color::from_hex(0x6916b6)),
magenta: Some(Color::from_hex(0x8d17a5)),
};