use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkslategray"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2f4f4f),
fg: Color::from_hex(0xf5deb3),
cursor: Some(Color::from_hex(0xda70d6)),
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0xbdb76b)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xf0e68c)),
comment: Some(Color::from_hex(0xda70d6)),
keyword: Some(Color::from_hex(0x4682b4)),
string: Some(Color::from_hex(0x7fffd4)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0xafeeee)),
r#type: Some(Color::from_hex(0x98fb98)),
constant: Some(Color::from_hex(0xcdcd00)),
operator: Some(Color::from_hex(0x4682b4)),
tag: Some(Color::from_hex(0xff6347)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0x7fffd4)),
cyan: Some(Color::from_hex(0x98fb98)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0x4682b4)),
magenta: Some(Color::from_hex(0xcdcd00)),
};