use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("crayon"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x101112),
fg: Color::from_hex(0xfdfeff),
cursor: Some(Color::from_hex(0x383e47)),
selection: Some(Color::from_hex(0x383e47)),
line_highlight: None,
gutter: Some(Color::from_hex(0x383e47)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0x586270)),
comment: Some(Color::from_hex(0x586270)),
keyword: Some(Color::from_hex(0xb59cd8)),
string: Some(Color::from_hex(0x99ae63)),
function: None,
variable: Some(Color::from_hex(0xb27b78)),
r#type: Some(Color::from_hex(0xd8c27a)),
constant: Some(Color::from_hex(0xd8c27a)),
operator: Some(Color::from_hex(0xfdfeff)),
tag: Some(Color::from_hex(0xd8c27a)),
error: Some(Color::from_hex(0x383e47)),
warning: Some(Color::from_hex(0x101112)),
info: None,
success: None,
red: Some(Color::from_hex(0x383e47)),
orange: None,
yellow: Some(Color::from_hex(0x101112)),
green: Some(Color::from_hex(0x99ae63)),
cyan: Some(Color::from_hex(0xd8c27a)),
blue: None,
purple: Some(Color::from_hex(0xb59cd8)),
magenta: Some(Color::from_hex(0xd8c27a)),
};