use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("bitterjug"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0x949494),
cursor: None,
selection: Some(Color::from_hex(0x444444)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x4e4e4e)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x5f8787)),
keyword: Some(Color::from_hex(0xa8a8a8)),
string: None,
function: None,
variable: Some(Color::from_hex(0xaf8787)),
r#type: Some(Color::from_hex(0xbcbcbc)),
constant: Some(Color::from_hex(0x6c6c6c)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x262626)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x262626)),
orange: None,
yellow: Some(Color::from_hex(0x87afaf)),
green: None,
cyan: Some(Color::from_hex(0xbcbcbc)),
blue: None,
purple: Some(Color::from_hex(0xa8a8a8)),
magenta: Some(Color::from_hex(0x800080)),
};