use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Pierson"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfaebd7),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0x808080)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x228b22)),
keyword: Some(Color::from_hex(0x0000ff)),
string: Some(Color::from_hex(0xb22222)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x800080)),
constant: Some(Color::from_hex(0x5f9ea0)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xb22222)),
cyan: Some(Color::from_hex(0x5f9ea0)),
blue: None,
purple: Some(Color::from_hex(0x0000ff)),
magenta: None,
};