use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tango 2"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xeeeeec),
cursor: Some(Color::from_hex(0x888888)),
selection: Some(Color::from_hex(0x555753)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x888a85)),
keyword: Some(Color::from_hex(0xfcaf3e)),
string: Some(Color::from_hex(0x73d216)),
function: Some(Color::from_hex(0x729fcf)),
variable: Some(Color::from_hex(0xfce94f)),
r#type: Some(Color::from_hex(0xc17d11)),
constant: Some(Color::from_hex(0xad7fa8)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x73d216)),
cyan: Some(Color::from_hex(0xad7fa8)),
blue: Some(Color::from_hex(0x729fcf)),
purple: Some(Color::from_hex(0xfcaf3e)),
magenta: Some(Color::from_hex(0xfce94f)),
};