use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("jitterbug"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xbcbcbc),
cursor: None,
selection: Some(Color::from_hex(0x444444)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x626262)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x5fafaf)),
keyword: Some(Color::from_hex(0x767676)),
string: None,
function: None,
variable: Some(Color::from_hex(0xd78787)),
r#type: Some(Color::from_hex(0x767676)),
constant: Some(Color::from_hex(0x87afaf)),
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(0x767676)),
blue: None,
purple: Some(Color::from_hex(0x767676)),
magenta: Some(Color::from_hex(0xaf5faf)),
};