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