use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("slate"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xd7d787)),
selection: Some(Color::from_hex(0x5f8700)),
line_highlight: Some(Color::from_hex(0x333333)),
gutter: Some(Color::from_hex(0x666666)),
statusbar_bg: Some(Color::from_hex(0xafaf87)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x666666)),
keyword: Some(Color::from_hex(0x5f87d7)),
string: Some(Color::from_hex(0x87d7ff)),
function: Some(Color::from_hex(0xffd7af)),
variable: Some(Color::from_hex(0xff8787)),
r#type: Some(Color::from_hex(0x5f87d7)),
constant: Some(Color::from_hex(0xffafaf)),
operator: Some(Color::from_hex(0xd7875f)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xff8787)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xff8787)),
green: Some(Color::from_hex(0x87d7ff)),
cyan: Some(Color::from_hex(0x5f87d7)),
blue: Some(Color::from_hex(0xffd7af)),
purple: Some(Color::from_hex(0x5f87d7)),
magenta: Some(Color::from_hex(0xd7875f)),
};