use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("black_on_white"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf0f0f0),
fg: Color::from_hex(0x444240),
cursor: Some(Color::from_hex(0xb8b4b0)),
selection: None,
line_highlight: Some(Color::from_hex(0xe4e2e0)),
gutter: Some(Color::from_hex(0x646260)),
statusbar_bg: Some(Color::from_hex(0x888480)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x848280)),
keyword: Some(Color::from_hex(0x607080)),
string: Some(Color::from_hex(0x804020)),
function: Some(Color::from_hex(0x203040)),
variable: Some(Color::from_hex(0x545250)),
r#type: Some(Color::from_hex(0x606060)),
constant: Some(Color::from_hex(0x000000)),
operator: Some(Color::from_hex(0x747270)),
tag: None,
error: Some(Color::from_hex(0xa02000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xa02000)),
orange: None,
yellow: Some(Color::from_hex(0x602000)),
green: Some(Color::from_hex(0x804020)),
cyan: Some(Color::from_hex(0x606060)),
blue: Some(Color::from_hex(0x203040)),
purple: Some(Color::from_hex(0x607080)),
magenta: Some(Color::from_hex(0x705060)),
};