use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("luna"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0xe5e5e5),
cursor: None,
selection: Some(Color::from_hex(0xffff4d)),
line_highlight: Some(Color::from_hex(0x2e2e2e)),
gutter: Some(Color::from_hex(0x838383)),
statusbar_bg: Some(Color::from_hex(0x002b2b)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x616161)),
keyword: Some(Color::from_hex(0xf64a8a)),
string: Some(Color::from_hex(0x60bdf4)),
function: Some(Color::from_hex(0x00bcbc)),
variable: Some(Color::from_hex(0x00bcbc)),
r#type: Some(Color::from_hex(0xff4040)),
constant: Some(Color::from_hex(0xfff159)),
operator: Some(Color::from_hex(0xff8036)),
tag: None,
error: Some(Color::from_hex(0x870000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x870000)),
orange: None,
yellow: Some(Color::from_hex(0xff8da1)),
green: Some(Color::from_hex(0x60bdf4)),
cyan: Some(Color::from_hex(0xff4040)),
blue: Some(Color::from_hex(0x00bcbc)),
purple: Some(Color::from_hex(0xf64a8a)),
magenta: Some(Color::from_hex(0xbada55)),
};