use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("eclm_wombat"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x2b2b2b),
fg: Color::from_hex(0xe6e1de),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x1d1d1d)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x857b6f)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xf6f3e8)),
comment: Some(Color::from_hex(0x99968b)),
keyword: Some(Color::from_hex(0x69a1ff)),
string: Some(Color::from_hex(0xcae682)),
function: Some(Color::from_hex(0xff00ac)),
variable: Some(Color::from_hex(0xc9ceff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0x6e9cbe)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc41df5)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xc41df5)),
orange: None,
yellow: Some(Color::from_hex(0xe7f6da)),
green: Some(Color::from_hex(0xcae682)),
cyan: Some(Color::from_hex(0xffffff)),
blue: Some(Color::from_hex(0xff00ac)),
purple: Some(Color::from_hex(0x69a1ff)),
magenta: Some(Color::from_hex(0x8ac6f2)),
};