use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("felipec"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xc0c0c0),
cursor: Some(Color::from_hex(0xafd7ff)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x444444)),
gutter: Some(Color::from_hex(0xafaf87)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x949494)),
keyword: Some(Color::from_hex(0x87ffff)),
string: Some(Color::from_hex(0x5fff5f)),
function: Some(Color::from_hex(0x87ff87)),
variable: Some(Color::from_hex(0xff87ff)),
r#type: Some(Color::from_hex(0xffff87)),
constant: Some(Color::from_hex(0xff8787)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x000000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0xffd787)),
green: Some(Color::from_hex(0x5fff5f)),
cyan: Some(Color::from_hex(0xffff87)),
blue: Some(Color::from_hex(0x87ff87)),
purple: Some(Color::from_hex(0x87ffff)),
magenta: Some(Color::from_hex(0xd787ff)),
};