use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lapis256"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x3a3a3a),
fg: Color::from_hex(0xc6c6c6),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0xff005f)),
line_highlight: None,
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x8a8a8a)),
keyword: Some(Color::from_hex(0x5fafd7)),
string: Some(Color::from_hex(0xafafd7)),
function: Some(Color::from_hex(0x5fd7ff)),
variable: Some(Color::from_hex(0x00d7d7)),
r#type: Some(Color::from_hex(0x5fafff)),
constant: Some(Color::from_hex(0x00ffff)),
operator: Some(Color::from_hex(0x5fafd7)),
tag: Some(Color::from_hex(0xeeeeee)),
error: Some(Color::from_hex(0x000000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0xeeeeee)),
green: Some(Color::from_hex(0xafafd7)),
cyan: Some(Color::from_hex(0x5fafff)),
blue: Some(Color::from_hex(0x5fd7ff)),
purple: Some(Color::from_hex(0x5fafd7)),
magenta: Some(Color::from_hex(0x5fffd7)),
};