use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("mars"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x961e00),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x961e00)),
line_highlight: None,
gutter: Some(Color::from_hex(0x999999)),
statusbar_bg: Some(Color::from_hex(0x961e00)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x999999)),
keyword: Some(Color::from_hex(0xffff00)),
string: Some(Color::from_hex(0xcccc99)),
function: Some(Color::from_hex(0xe6fa46)),
variable: Some(Color::from_hex(0xe6fa46)),
r#type: Some(Color::from_hex(0xe6641e)),
constant: Some(Color::from_hex(0xffff00)),
operator: Some(Color::from_hex(0xffff00)),
tag: Some(Color::from_hex(0xccccff)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xcccc99)),
cyan: Some(Color::from_hex(0xe6641e)),
blue: Some(Color::from_hex(0xe6fa46)),
purple: Some(Color::from_hex(0xffff00)),
magenta: Some(Color::from_hex(0xc8783c)),
};