use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("golded"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0xa2a2a2),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x6688bb)),
line_highlight: Some(Color::from_hex(0xbbbbbb)),
gutter: Some(Color::from_hex(0x666666)),
statusbar_bg: Some(Color::from_hex(0x6688bb)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0xffbbff)),
keyword: Some(Color::from_hex(0x99ffff)),
string: Some(Color::from_hex(0xeeee33)),
function: Some(Color::from_hex(0x990099)),
variable: Some(Color::from_hex(0x6633aa)),
r#type: Some(Color::from_hex(0x996644)),
constant: Some(Color::from_hex(0x990000)),
operator: Some(Color::from_hex(0x555577)),
tag: Some(Color::from_hex(0xffffff)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xeeee33)),
cyan: Some(Color::from_hex(0x996644)),
blue: Some(Color::from_hex(0x990099)),
purple: Some(Color::from_hex(0x99ffff)),
magenta: Some(Color::from_hex(0xdddd77)),
};