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