use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sadek1"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xcd5c5c)),
selection: Some(Color::from_hex(0xf8f8ff)),
line_highlight: Some(Color::from_hex(0x222222)),
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xcccccc)),
keyword: Some(Color::from_hex(0x878787)),
string: Some(Color::from_hex(0x91ff87)),
function: Some(Color::from_hex(0x38a2ff)),
variable: Some(Color::from_hex(0x88c8eb)),
r#type: Some(Color::from_hex(0x000000)),
constant: Some(Color::from_hex(0xff7fec)),
operator: Some(Color::from_hex(0xe8d505)),
tag: Some(Color::from_hex(0xdddd00)),
error: None,
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x91ff87)),
cyan: Some(Color::from_hex(0x000000)),
blue: Some(Color::from_hex(0x38a2ff)),
purple: Some(Color::from_hex(0x878787)),
magenta: Some(Color::from_hex(0x878787)),
};