use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("crt"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x005fd7),
cursor: Some(Color::from_hex(0x005fd7)),
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x808000)),
statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x878787)),
keyword: Some(Color::from_hex(0xd78700)),
string: None,
function: None,
variable: Some(Color::from_hex(0x00af00)),
r#type: Some(Color::from_hex(0x00cb00)),
constant: Some(Color::from_hex(0xffaf00)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: None,
cyan: Some(Color::from_hex(0x00cb00)),
blue: None,
purple: Some(Color::from_hex(0xd78700)),
magenta: Some(Color::from_hex(0xff5f00)),
};