use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Hardcore"),
author: Cow::Borrowed("Chris Caller"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0xcdcdcd),
cursor: Some(Color::from_hex(0xcdcdcd)),
selection: Some(Color::from_hex(0x353535)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x4a4a4a)),
statusbar_bg: Some(Color::from_hex(0x303030)),
statusbar_fg: Some(Color::from_hex(0x707070)),
comment: Some(Color::from_hex(0x4a4a4a)),
keyword: Some(Color::from_hex(0x9e6ffe)),
string: Some(Color::from_hex(0xa6e22e)),
function: Some(Color::from_hex(0x66d9ef)),
variable: Some(Color::from_hex(0xf92672)),
r#type: Some(Color::from_hex(0xe6db74)),
constant: Some(Color::from_hex(0xfd971f)),
operator: Some(Color::from_hex(0xcdcdcd)),
tag: Some(Color::from_hex(0xf92672)),
error: Some(Color::from_hex(0xf92672)),
warning: Some(Color::from_hex(0xe6db74)),
info: Some(Color::from_hex(0x66d9ef)),
success: Some(Color::from_hex(0xa6e22e)),
red: Some(Color::from_hex(0xf92672)),
orange: Some(Color::from_hex(0xfd971f)),
yellow: Some(Color::from_hex(0xe6db74)),
green: Some(Color::from_hex(0xa6e22e)),
cyan: Some(Color::from_hex(0x708387)),
blue: Some(Color::from_hex(0x66d9ef)),
purple: Some(Color::from_hex(0x9e6ffe)),
magenta: Some(Color::from_hex(0xe8b882)),
};