use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("MountainDew"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x203d29),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xff0000)),
selection: Some(Color::from_hex(0xffa500)),
line_highlight: Some(Color::from_hex(0x0f5123)),
gutter: Some(Color::from_hex(0xe12e2a)),
statusbar_bg: Some(Color::from_hex(0xe12e2a)),
statusbar_fg: Some(Color::from_hex(0xffff00)),
comment: Some(Color::from_hex(0x21d959)),
keyword: Some(Color::from_hex(0xffff60)),
string: Some(Color::from_hex(0xff0000)),
function: Some(Color::from_hex(0xffff00)),
variable: Some(Color::from_hex(0xffff60)),
r#type: Some(Color::from_hex(0xe12e2a)),
constant: Some(Color::from_hex(0xff0000)),
operator: Some(Color::from_hex(0x60ff60)),
tag: Some(Color::from_hex(0xe12e2a)),
error: Some(Color::from_hex(0xffff00)),
warning: Some(Color::from_hex(0xe12e2a)),
info: None,
success: None,
red: Some(Color::from_hex(0xffff00)),
orange: None,
yellow: Some(Color::from_hex(0xe12e2a)),
green: Some(Color::from_hex(0xff0000)),
cyan: Some(Color::from_hex(0xe12e2a)),
blue: Some(Color::from_hex(0xffff00)),
purple: Some(Color::from_hex(0xffff60)),
magenta: Some(Color::from_hex(0xd8e353)),
};