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