use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("phpx"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xe4e4e4),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x005f00)),
line_highlight: None,
gutter: Some(Color::from_hex(0xd7d787)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x000087)),
comment: Some(Color::from_hex(0xff8700)),
keyword: Some(Color::from_hex(0x008700)),
string: None,
function: None,
variable: Some(Color::from_hex(0x0000af)),
r#type: Some(Color::from_hex(0x00af00)),
constant: Some(Color::from_hex(0xd70000)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xe4e4e4)),
cyan: Some(Color::from_hex(0x00af00)),
blue: None,
purple: Some(Color::from_hex(0x008700)),
magenta: Some(Color::from_hex(0x00af00)),
};