use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Jonadabian Slate"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x305050),
fg: Color::from_hex(0xccbb77),
cursor: None,
selection: Some(Color::from_hex(0x226644)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: None,
keyword: Some(Color::from_hex(0x00bbbb)),
string: Some(Color::from_hex(0x10d010)),
function: Some(Color::from_hex(0xd0d000)),
variable: Some(Color::from_hex(0xeeddaa)),
r#type: Some(Color::from_hex(0xff7788)),
constant: Some(Color::from_hex(0xcd5c5c)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x10d010)),
cyan: Some(Color::from_hex(0xcd5c5c)),
blue: Some(Color::from_hex(0xd0d000)),
purple: Some(Color::from_hex(0x00bbbb)),
magenta: Some(Color::from_hex(0xeeddaa)),
};