use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Colors"),
author: Cow::Borrowed("mrmrs (http://clrs.cc)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x111111),
fg: Color::from_hex(0xbbbbbb),
cursor: Some(Color::from_hex(0xbbbbbb)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x333333)),
gutter: Some(Color::from_hex(0x777777)),
statusbar_bg: Some(Color::from_hex(0x333333)),
statusbar_fg: Some(Color::from_hex(0x999999)),
comment: Some(Color::from_hex(0x777777)),
keyword: Some(Color::from_hex(0xb10dc9)),
string: Some(Color::from_hex(0x2ecc40)),
function: Some(Color::from_hex(0x0074d9)),
variable: Some(Color::from_hex(0xff4136)),
r#type: Some(Color::from_hex(0xffdc00)),
constant: Some(Color::from_hex(0xff851b)),
operator: Some(Color::from_hex(0xbbbbbb)),
tag: Some(Color::from_hex(0xff4136)),
error: Some(Color::from_hex(0xff4136)),
warning: Some(Color::from_hex(0xffdc00)),
info: Some(Color::from_hex(0x0074d9)),
success: Some(Color::from_hex(0x2ecc40)),
red: Some(Color::from_hex(0xff4136)),
orange: Some(Color::from_hex(0xff851b)),
yellow: Some(Color::from_hex(0xffdc00)),
green: Some(Color::from_hex(0x2ecc40)),
cyan: Some(Color::from_hex(0x7fdbff)),
blue: Some(Color::from_hex(0x0074d9)),
purple: Some(Color::from_hex(0xb10dc9)),
magenta: Some(Color::from_hex(0x85144b)),
};