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