use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("manxome"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xcccccc),
cursor: None,
selection: Some(Color::from_hex(0x00aaaa)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x0000ff)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x00ff00)),
keyword: Some(Color::from_hex(0x00aaaa)),
string: None,
function: None,
variable: Some(Color::from_hex(0x0000ee)),
r#type: Some(Color::from_hex(0x00aaaa)),
constant: Some(Color::from_hex(0x00ffff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x800000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x800000)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: None,
cyan: Some(Color::from_hex(0x00aaaa)),
blue: None,
purple: Some(Color::from_hex(0x00aaaa)),
magenta: Some(Color::from_hex(0xffffff)),
};