use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Pok Wob"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: None,
selection: Some(Color::from_hex(0x7b68ee)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xffd700)),
keyword: Some(Color::from_hex(0x00ffff)),
string: Some(Color::from_hex(0xf0e68c)),
function: Some(Color::from_hex(0xffd700)),
variable: Some(Color::from_hex(0xffd700)),
r#type: Some(Color::from_hex(0x00ffff)),
constant: Some(Color::from_hex(0xb0c4de)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xf0e68c)),
cyan: Some(Color::from_hex(0xb0c4de)),
blue: Some(Color::from_hex(0xffd700)),
purple: Some(Color::from_hex(0x00ffff)),
magenta: Some(Color::from_hex(0xffd700)),
};