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