use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("habamax"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xc7c7c7),
cursor: Some(Color::from_hex(0xdadada)),
selection: Some(Color::from_hex(0x1a3456)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0x9e9e9e)),
statusbar_fg: Some(Color::from_hex(0x1c1c1c)),
comment: Some(Color::from_hex(0x767676)),
keyword: Some(Color::from_hex(0xaf87af)),
string: Some(Color::from_hex(0x5faf5f)),
function: Some(Color::from_hex(0x87afaf)),
variable: Some(Color::from_hex(0x87afaf)),
r#type: Some(Color::from_hex(0x5f87af)),
constant: Some(Color::from_hex(0xd75f87)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xaf5f5f)),
warning: Some(Color::from_hex(0xd75f87)),
info: None,
success: None,
red: Some(Color::from_hex(0xaf5f5f)),
orange: None,
yellow: Some(Color::from_hex(0xd75f87)),
green: Some(Color::from_hex(0x5faf5f)),
cyan: Some(Color::from_hex(0x5f87af)),
blue: Some(Color::from_hex(0x87afaf)),
purple: Some(Color::from_hex(0xaf87af)),
magenta: Some(Color::from_hex(0xaf875f)),
};