use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vydark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x282828),
fg: Color::from_hex(0xbbbbbb),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x353535)),
gutter: Some(Color::from_hex(0x444455)),
statusbar_bg: Some(Color::from_hex(0x353535)),
statusbar_fg: Some(Color::from_hex(0xbbbbbb)),
comment: Some(Color::from_hex(0x666677)),
keyword: Some(Color::from_hex(0xbbbbbb)),
string: Some(Color::from_hex(0x88cc99)),
function: Some(Color::from_hex(0xbbbbbb)),
variable: Some(Color::from_hex(0xbbbbbb)),
r#type: Some(Color::from_hex(0x99bbcc)),
constant: Some(Color::from_hex(0x88cc99)),
operator: Some(Color::from_hex(0xbbbbbb)),
tag: Some(Color::from_hex(0x99dd99)),
error: Some(Color::from_hex(0x222222)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x222222)),
orange: None,
yellow: Some(Color::from_hex(0x99dd99)),
green: Some(Color::from_hex(0x88cc99)),
cyan: Some(Color::from_hex(0x99bbcc)),
blue: Some(Color::from_hex(0xbbbbbb)),
purple: Some(Color::from_hex(0xbbbbbb)),
magenta: Some(Color::from_hex(0x88ddcc)),
};