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