use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("ekinivim"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e3330),
fg: Color::from_hex(0xc9c9bb),
cursor: Some(Color::from_hex(0x425461)),
selection: Some(Color::from_hex(0x6c8b9f)),
line_highlight: Some(Color::from_hex(0x000709)),
gutter: Some(Color::from_hex(0xdee5e7)),
statusbar_bg: Some(Color::from_hex(0x000709)),
statusbar_fg: Some(Color::from_hex(0x6a9875)),
comment: Some(Color::from_hex(0x6a9875)),
keyword: Some(Color::from_hex(0x8ac6f2)),
string: Some(Color::from_hex(0xe1a230)),
function: Some(Color::from_hex(0xcae682)),
variable: Some(Color::from_hex(0xa8e1fe)),
r#type: Some(Color::from_hex(0xb2fd6d)),
constant: Some(Color::from_hex(0xf696db)),
operator: Some(Color::from_hex(0xf6dd62)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x4df4ff)),
green: Some(Color::from_hex(0xe1a230)),
cyan: Some(Color::from_hex(0xb2fd6d)),
blue: Some(Color::from_hex(0xcae682)),
purple: Some(Color::from_hex(0x8ac6f2)),
magenta: Some(Color::from_hex(0xb2fd6d)),
};