use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("wikipedia"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0xc6c6c6)),
line_highlight: Some(Color::from_hex(0xdadada)),
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x5fafaf)),
keyword: Some(Color::from_hex(0x005f00)),
string: None,
function: Some(Color::from_hex(0x0000ff)),
variable: Some(Color::from_hex(0x000000)),
r#type: Some(Color::from_hex(0x87005f)),
constant: Some(Color::from_hex(0x800000)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x000000)),
green: None,
cyan: Some(Color::from_hex(0x87005f)),
blue: Some(Color::from_hex(0x0000ff)),
purple: Some(Color::from_hex(0x005f00)),
magenta: Some(Color::from_hex(0x875f00)),
};