use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("scheakur"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121713),
fg: Color::from_hex(0xdadad5),
cursor: Some(Color::from_hex(0xf39812)),
selection: Some(Color::from_hex(0x23343d)),
line_highlight: Some(Color::from_hex(0x23343d)),
gutter: Some(Color::from_hex(0x7c8884)),
statusbar_bg: Some(Color::from_hex(0x292c2f)),
statusbar_fg: Some(Color::from_hex(0xb2b5b2)),
comment: Some(Color::from_hex(0x707073)),
keyword: Some(Color::from_hex(0x91b5d4)),
string: Some(Color::from_hex(0xa7a053)),
function: Some(Color::from_hex(0xd789c8)),
variable: Some(Color::from_hex(0x91a8a5)),
r#type: Some(Color::from_hex(0x5f94ca)),
constant: Some(Color::from_hex(0x70a395)),
operator: Some(Color::from_hex(0x8d89c7)),
tag: Some(Color::from_hex(0xd38d6b)),
error: Some(Color::from_hex(0xff8485)),
warning: Some(Color::from_hex(0xe0b088)),
info: None,
success: None,
red: Some(Color::from_hex(0xff8485)),
orange: None,
yellow: Some(Color::from_hex(0xe0b088)),
green: Some(Color::from_hex(0xa7a053)),
cyan: Some(Color::from_hex(0x5f94ca)),
blue: Some(Color::from_hex(0xd789c8)),
purple: Some(Color::from_hex(0x91b5d4)),
magenta: Some(Color::from_hex(0x8d89c7)),
};