use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vertLaiton"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x005f00),
fg: Color::from_hex(0xffd700),
cursor: Some(Color::from_hex(0x008700)),
selection: Some(Color::from_hex(0x008700)),
line_highlight: Some(Color::from_hex(0x008700)),
gutter: Some(Color::from_hex(0x878700)),
statusbar_bg: Some(Color::from_hex(0x005f00)),
statusbar_fg: Some(Color::from_hex(0xffff00)),
comment: Some(Color::from_hex(0x87af00)),
keyword: Some(Color::from_hex(0x87d700)),
string: Some(Color::from_hex(0xffaf00)),
function: Some(Color::from_hex(0xffff87)),
variable: Some(Color::from_hex(0xd7ff87)),
r#type: Some(Color::from_hex(0xff8700)),
constant: Some(Color::from_hex(0xd78700)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff5f00)),
warning: Some(Color::from_hex(0x005f00)),
info: None,
success: None,
red: Some(Color::from_hex(0xff5f00)),
orange: None,
yellow: Some(Color::from_hex(0x005f00)),
green: Some(Color::from_hex(0xffaf00)),
cyan: Some(Color::from_hex(0xff8700)),
blue: Some(Color::from_hex(0xffff87)),
purple: Some(Color::from_hex(0x87d700)),
magenta: Some(Color::from_hex(0xafd700)),
};