use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("termschool"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x252c31),
fg: Color::from_hex(0xf0f0f0),
cursor: Some(Color::from_hex(0x9ea7a6)),
selection: Some(Color::from_hex(0x3f4b52)),
line_highlight: Some(Color::from_hex(0x2e373b)),
gutter: Some(Color::from_hex(0x84898c)),
statusbar_bg: Some(Color::from_hex(0x575e61)),
statusbar_fg: Some(Color::from_hex(0xf0f0f0)),
comment: Some(Color::from_hex(0x9a9a9a)),
keyword: Some(Color::from_hex(0xdda790)),
string: Some(Color::from_hex(0x8bb664)),
function: Some(Color::from_hex(0xbcdbff)),
variable: Some(Color::from_hex(0x99cf50)),
r#type: Some(Color::from_hex(0xb5d8f6)),
constant: Some(Color::from_hex(0x3c98d9)),
operator: Some(Color::from_hex(0xdda790)),
tag: Some(Color::from_hex(0xbcdbff)),
error: Some(Color::from_hex(0xaf5f5f)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xaf5f5f)),
orange: None,
yellow: Some(Color::from_hex(0xf0f0f0)),
green: Some(Color::from_hex(0x8bb664)),
cyan: Some(Color::from_hex(0xb5d8f6)),
blue: Some(Color::from_hex(0xbcdbff)),
purple: Some(Color::from_hex(0xdda790)),
magenta: Some(Color::from_hex(0xdda790)),
};