use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lunaperche"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0xbfdfff)),
line_highlight: Some(Color::from_hex(0xeeeeee)),
gutter: Some(Color::from_hex(0x9e9e9e)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x005fd7)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0xaf5f00)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x008700)),
constant: Some(Color::from_hex(0xaf00af)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xd70000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xd70000)),
green: Some(Color::from_hex(0xaf5f00)),
cyan: Some(Color::from_hex(0x008700)),
blue: None,
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0x005f5f)),
};