use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("selenitic"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x333333),
fg: Color::from_hex(0xdfdfbf),
cursor: None,
selection: Some(Color::from_hex(0x486a65)),
line_highlight: Some(Color::from_hex(0x434343)),
gutter: Some(Color::from_hex(0x7a987a)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x7a987a)),
keyword: Some(Color::from_hex(0xefc986)),
string: Some(Color::from_hex(0xdfaf8f)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x8acccf)),
constant: None,
operator: None,
tag: None,
error: Some(Color::from_hex(0xefc986)),
warning: Some(Color::from_hex(0x7a987a)),
info: None,
success: None,
red: Some(Color::from_hex(0xefc986)),
orange: None,
yellow: Some(Color::from_hex(0x7a987a)),
green: Some(Color::from_hex(0xdfaf8f)),
cyan: Some(Color::from_hex(0x8acccf)),
blue: None,
purple: Some(Color::from_hex(0xefc986)),
magenta: Some(Color::from_hex(0xefc986)),
};