use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vilight"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0xb6b6b6),
cursor: Some(Color::from_hex(0x9ca9b7)),
selection: Some(Color::from_hex(0x9ca9b7)),
line_highlight: Some(Color::from_hex(0x6c8095)),
gutter: Some(Color::from_hex(0x424242)),
statusbar_bg: Some(Color::from_hex(0x424242)),
statusbar_fg: Some(Color::from_hex(0x9ca9b7)),
comment: Some(Color::from_hex(0x646959)),
keyword: Some(Color::from_hex(0xcda869)),
string: Some(Color::from_hex(0x8f9d6a)),
function: None,
variable: Some(Color::from_hex(0x7587a6)),
r#type: Some(Color::from_hex(0x9b859d)),
constant: Some(Color::from_hex(0x7587a6)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xcf6a4c)),
warning: Some(Color::from_hex(0xeedd82)),
info: None,
success: None,
red: Some(Color::from_hex(0xcf6a4c)),
orange: None,
yellow: Some(Color::from_hex(0xeedd82)),
green: Some(Color::from_hex(0x8f9d6a)),
cyan: Some(Color::from_hex(0x9b859d)),
blue: None,
purple: Some(Color::from_hex(0xcda869)),
magenta: Some(Color::from_hex(0x7587a6)),
};