use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Kingsajz"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2f4f4f),
fg: Color::from_hex(0xf5deb3),
cursor: Some(Color::from_hex(0xd3d3d3)),
selection: Some(Color::from_hex(0x008b8b)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xffffff)),
keyword: Some(Color::from_hex(0xfa8072)),
string: Some(Color::from_hex(0xffa07a)),
function: Some(Color::from_hex(0x7b68ee)),
variable: Some(Color::from_hex(0x7fffd4)),
r#type: Some(Color::from_hex(0x9acd32)),
constant: Some(Color::from_hex(0x7fffd4)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffa07a)),
cyan: Some(Color::from_hex(0x7fffd4)),
blue: Some(Color::from_hex(0x7b68ee)),
purple: Some(Color::from_hex(0xfa8072)),
magenta: Some(Color::from_hex(0x7fffd4)),
};