use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darktango"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e3436),
fg: Color::from_hex(0xd3d7cf),
cursor: Some(Color::from_hex(0xbabdb6)),
selection: Some(Color::from_hex(0xfcaf3e)),
line_highlight: Some(Color::from_hex(0x212628)),
gutter: Some(Color::from_hex(0x555753)),
statusbar_bg: Some(Color::from_hex(0x555753)),
statusbar_fg: Some(Color::from_hex(0xeeeeec)),
comment: Some(Color::from_hex(0x555753)),
keyword: Some(Color::from_hex(0x888a85)),
string: None,
function: None,
variable: Some(Color::from_hex(0xce5c00)),
r#type: Some(Color::from_hex(0xce5c00)),
constant: Some(Color::from_hex(0xbabdb6)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xeeeeec)),
green: None,
cyan: Some(Color::from_hex(0xce5c00)),
blue: None,
purple: Some(Color::from_hex(0x888a85)),
magenta: Some(Color::from_hex(0xeeeeec)),
};