use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Katester"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfffff0),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0xe6e6fa)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: None,
keyword: Some(Color::from_hex(0x0000ff)),
string: Some(Color::from_hex(0x800000)),
function: None,
variable: Some(Color::from_hex(0x000000)),
r#type: Some(Color::from_hex(0x000000)),
constant: Some(Color::from_hex(0x00008b)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x800000)),
cyan: Some(Color::from_hex(0x00008b)),
blue: None,
purple: Some(Color::from_hex(0x0000ff)),
magenta: Some(Color::from_hex(0x000000)),
};