use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("tango"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xeeeeec),
cursor: Some(Color::from_hex(0xd3d7cf)),
selection: Some(Color::from_hex(0x4e9a06)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x4e9a06)),
statusbar_fg: Some(Color::from_hex(0xeeeeec)),
comment: Some(Color::from_hex(0x06989a)),
keyword: Some(Color::from_hex(0x4e9a06)),
string: Some(Color::from_hex(0xa40000)),
function: None,
variable: Some(Color::from_hex(0x8ae234)),
r#type: Some(Color::from_hex(0x4e9a06)),
constant: Some(Color::from_hex(0xc4a000)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xeeeeec)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xeeeeec)),
orange: None,
yellow: Some(Color::from_hex(0x75507b)),
green: Some(Color::from_hex(0xa40000)),
cyan: Some(Color::from_hex(0x4e9a06)),
blue: None,
purple: Some(Color::from_hex(0x4e9a06)),
magenta: Some(Color::from_hex(0xcc0000)),
};