use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("luna-term"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xe4e4e4),
cursor: None,
selection: Some(Color::from_hex(0xffff5f)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x005f5f)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xff5f87)),
string: Some(Color::from_hex(0x5fafd7)),
function: Some(Color::from_hex(0x00afaf)),
variable: Some(Color::from_hex(0x00afaf)),
r#type: Some(Color::from_hex(0xff5f5f)),
constant: Some(Color::from_hex(0xffff5f)),
operator: Some(Color::from_hex(0xff5f00)),
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(0xff87af)),
green: Some(Color::from_hex(0x5fafd7)),
cyan: Some(Color::from_hex(0xff5f5f)),
blue: Some(Color::from_hex(0x00afaf)),
purple: Some(Color::from_hex(0xff5f87)),
magenta: Some(Color::from_hex(0xafd75f)),
};