use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("neonwave"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0x8787ff),
cursor: Some(Color::from_hex(0x6c6c6c)),
selection: Some(Color::from_hex(0x3a3a3a)),
line_highlight: Some(Color::from_hex(0x262626)),
gutter: Some(Color::from_hex(0x00af87)),
statusbar_bg: Some(Color::from_hex(0x080808)),
statusbar_fg: Some(Color::from_hex(0x0087d7)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xff00ff)),
string: Some(Color::from_hex(0xd75fff)),
function: Some(Color::from_hex(0x00afd7)),
variable: Some(Color::from_hex(0xff00ff)),
r#type: Some(Color::from_hex(0x00d7ff)),
constant: Some(Color::from_hex(0x0087ff)),
operator: Some(Color::from_hex(0x00afff)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xe4e4e4)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xe4e4e4)),
green: Some(Color::from_hex(0xd75fff)),
cyan: Some(Color::from_hex(0x00d7ff)),
blue: Some(Color::from_hex(0x00afd7)),
purple: Some(Color::from_hex(0xff00ff)),
magenta: Some(Color::from_hex(0x5f5fff)),
};