use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fnaqevan"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xc0c0c0),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x005900)),
line_highlight: None,
gutter: Some(Color::from_hex(0xf0b0e0)),
statusbar_bg: Some(Color::from_hex(0x1f1f1f)),
statusbar_fg: Some(Color::from_hex(0xf0f0f0)),
comment: Some(Color::from_hex(0x006699)),
keyword: Some(Color::from_hex(0xeee840)),
string: None,
function: None,
variable: Some(Color::from_hex(0xffa850)),
r#type: Some(Color::from_hex(0x40d040)),
constant: Some(Color::from_hex(0x00b8e0)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffee00)),
warning: Some(Color::from_hex(0xffff00)),
info: None,
success: None,
red: Some(Color::from_hex(0xffee00)),
orange: None,
yellow: Some(Color::from_hex(0xffff00)),
green: Some(Color::from_hex(0xd0d0d0)),
cyan: Some(Color::from_hex(0x40d040)),
blue: None,
purple: Some(Color::from_hex(0xeee840)),
magenta: None,
};