use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("cleanphp"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xd3e4f8),
fg: Color::from_hex(0x008000),
cursor: None,
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x008000)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xff8040)),
keyword: Some(Color::from_hex(0x008000)),
string: Some(Color::from_hex(0xbb0000)),
function: Some(Color::from_hex(0x000080)),
variable: Some(Color::from_hex(0x000080)),
r#type: Some(Color::from_hex(0x00bb00)),
constant: Some(Color::from_hex(0xbb0000)),
operator: Some(Color::from_hex(0x008000)),
tag: Some(Color::from_hex(0x008080)),
error: None,
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff8040)),
orange: None,
yellow: Some(Color::from_hex(0x008080)),
green: Some(Color::from_hex(0xbb0000)),
cyan: Some(Color::from_hex(0x00bb00)),
blue: Some(Color::from_hex(0x000080)),
purple: Some(Color::from_hex(0x008000)),
magenta: Some(Color::from_hex(0x008080)),
};