use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("valloric"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x403d3d)),
line_highlight: Some(Color::from_hex(0x1f1f1f)),
gutter: Some(Color::from_hex(0x3d3d3d)),
statusbar_bg: Some(Color::from_hex(0xdadada)),
statusbar_fg: Some(Color::from_hex(0x455354)),
comment: Some(Color::from_hex(0x13c100)),
keyword: Some(Color::from_hex(0x3664ff)),
string: Some(Color::from_hex(0xe6db74)),
function: Some(Color::from_hex(0xffa600)),
variable: Some(Color::from_hex(0xfd971f)),
r#type: Some(Color::from_hex(0xaa00ff)),
constant: Some(Color::from_hex(0xffff00)),
operator: Some(Color::from_hex(0x3664ff)),
tag: Some(Color::from_hex(0x3664ff)),
error: Some(Color::from_hex(0x3664ff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0x3664ff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xe6db74)),
cyan: Some(Color::from_hex(0xaa00ff)),
blue: Some(Color::from_hex(0xffa600)),
purple: Some(Color::from_hex(0x3664ff)),
magenta: Some(Color::from_hex(0xff0004)),
};