use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("256-jungle"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xdadada),
cursor: Some(Color::from_hex(0x5f00ff)),
selection: Some(Color::from_hex(0x444444)),
line_highlight: None,
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x4e4e4e)),
statusbar_fg: Some(Color::from_hex(0x00afff)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xd78700)),
string: None,
function: None,
variable: Some(Color::from_hex(0xafaf00)),
r#type: Some(Color::from_hex(0xd75f00)),
constant: Some(Color::from_hex(0x5fd700)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xd70000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xd70000)),
orange: None,
yellow: Some(Color::from_hex(0xd78700)),
green: None,
cyan: Some(Color::from_hex(0xd75f00)),
blue: None,
purple: Some(Color::from_hex(0xd78700)),
magenta: Some(Color::from_hex(0x767676)),
};