use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("wombat256mod"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x242424),
fg: Color::from_hex(0xe3e0d7),
cursor: Some(Color::from_hex(0xeae788)),
selection: Some(Color::from_hex(0x554d4b)),
line_highlight: Some(Color::from_hex(0x32322f)),
gutter: Some(Color::from_hex(0x857b6f)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xffffd7)),
comment: Some(Color::from_hex(0x9c998e)),
keyword: Some(Color::from_hex(0x88b8f6)),
string: Some(Color::from_hex(0x95e454)),
function: Some(Color::from_hex(0xcae982)),
variable: Some(Color::from_hex(0xcae982)),
r#type: Some(Color::from_hex(0xd4d987)),
constant: Some(Color::from_hex(0xe5786d)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff2026)),
warning: Some(Color::from_hex(0xff5f55)),
info: None,
success: None,
red: Some(Color::from_hex(0xff2026)),
orange: None,
yellow: Some(Color::from_hex(0xff5f55)),
green: Some(Color::from_hex(0x95e454)),
cyan: Some(Color::from_hex(0xd4d987)),
blue: Some(Color::from_hex(0xcae982)),
purple: Some(Color::from_hex(0x88b8f6)),
magenta: Some(Color::from_hex(0xe5786d)),
};