use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vimbrant"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1b1d1e),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x403d3d)),
line_highlight: Some(Color::from_hex(0x293739)),
gutter: Some(Color::from_hex(0xbcbcbc)),
statusbar_bg: Some(Color::from_hex(0xdadada)),
statusbar_fg: Some(Color::from_hex(0x455354)),
comment: Some(Color::from_hex(0x465457)),
keyword: Some(Color::from_hex(0xf92672)),
string: Some(Color::from_hex(0xe6db74)),
function: Some(Color::from_hex(0xa6e22e)),
variable: Some(Color::from_hex(0xfd971f)),
r#type: Some(Color::from_hex(0x66d9ef)),
constant: Some(Color::from_hex(0xae81ff)),
operator: Some(Color::from_hex(0xf92672)),
tag: Some(Color::from_hex(0xf92672)),
error: Some(Color::from_hex(0xf92672)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xf92672)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xe6db74)),
cyan: Some(Color::from_hex(0x66d9ef)),
blue: Some(Color::from_hex(0xa6e22e)),
purple: Some(Color::from_hex(0xf92672)),
magenta: Some(Color::from_hex(0xa6e22e)),
};