use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Codeschool"),
author: Cow::Borrowed("blockloop"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x232c31),
fg: Color::from_hex(0x9ea7a6),
cursor: Some(Color::from_hex(0x9ea7a6)),
selection: Some(Color::from_hex(0x2a343a)),
line_highlight: Some(Color::from_hex(0x1c3657)),
gutter: Some(Color::from_hex(0x3f4944)),
statusbar_bg: Some(Color::from_hex(0x1c3657)),
statusbar_fg: Some(Color::from_hex(0x84898c)),
comment: Some(Color::from_hex(0x3f4944)),
keyword: Some(Color::from_hex(0xc59820)),
string: Some(Color::from_hex(0x237986)),
function: Some(Color::from_hex(0x484d79)),
variable: Some(Color::from_hex(0x2a5491)),
r#type: Some(Color::from_hex(0xa03b1e)),
constant: Some(Color::from_hex(0x43820d)),
operator: Some(Color::from_hex(0x9ea7a6)),
tag: Some(Color::from_hex(0x2a5491)),
error: Some(Color::from_hex(0x2a5491)),
warning: Some(Color::from_hex(0xa03b1e)),
info: Some(Color::from_hex(0x484d79)),
success: Some(Color::from_hex(0x237986)),
red: Some(Color::from_hex(0x2a5491)),
orange: Some(Color::from_hex(0x43820d)),
yellow: Some(Color::from_hex(0xa03b1e)),
green: Some(Color::from_hex(0x237986)),
cyan: Some(Color::from_hex(0xb02f30)),
blue: Some(Color::from_hex(0x484d79)),
purple: Some(Color::from_hex(0xc59820)),
magenta: Some(Color::from_hex(0xc98344)),
};