use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tango"),
author: Cow::Borrowed("@Schnouki, based on the Tango Desktop Project"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e3436),
fg: Color::from_hex(0xd3d7cf),
cursor: Some(Color::from_hex(0xd3d7cf)),
selection: Some(Color::from_hex(0xfce94f)),
line_highlight: Some(Color::from_hex(0x8ae234)),
gutter: Some(Color::from_hex(0x555753)),
statusbar_bg: Some(Color::from_hex(0x8ae234)),
statusbar_fg: Some(Color::from_hex(0x729fcf)),
comment: Some(Color::from_hex(0x555753)),
keyword: Some(Color::from_hex(0x75507b)),
string: Some(Color::from_hex(0x4e9a06)),
function: Some(Color::from_hex(0x3465a4)),
variable: Some(Color::from_hex(0xcc0000)),
r#type: Some(Color::from_hex(0xc4a000)),
constant: Some(Color::from_hex(0xef2929)),
operator: Some(Color::from_hex(0xd3d7cf)),
tag: Some(Color::from_hex(0xcc0000)),
error: Some(Color::from_hex(0xcc0000)),
warning: Some(Color::from_hex(0xc4a000)),
info: Some(Color::from_hex(0x3465a4)),
success: Some(Color::from_hex(0x4e9a06)),
red: Some(Color::from_hex(0xcc0000)),
orange: Some(Color::from_hex(0xef2929)),
yellow: Some(Color::from_hex(0xc4a000)),
green: Some(Color::from_hex(0x4e9a06)),
cyan: Some(Color::from_hex(0x06989a)),
blue: Some(Color::from_hex(0x3465a4)),
purple: Some(Color::from_hex(0x75507b)),
magenta: Some(Color::from_hex(0x34e2e2)),
};