use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("forneus"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x111111),
fg: Color::from_hex(0xeeeeee),
cursor: None,
selection: Some(Color::from_hex(0x3a3a3a)),
line_highlight: Some(Color::from_hex(0x1c1c1c)),
gutter: Some(Color::from_hex(0x8787ff)),
statusbar_bg: Some(Color::from_hex(0x080808)),
statusbar_fg: Some(Color::from_hex(0x4e4e4e)),
comment: Some(Color::from_hex(0x00ffff)),
keyword: Some(Color::from_hex(0x0087ff)),
string: Some(Color::from_hex(0xe55b3c)),
function: Some(Color::from_hex(0xaf5f5f)),
variable: Some(Color::from_hex(0xaf5f5f)),
r#type: Some(Color::from_hex(0xff8700)),
constant: Some(Color::from_hex(0x00d700)),
operator: Some(Color::from_hex(0x0087ff)),
tag: Some(Color::from_hex(0x5f5fff)),
error: Some(Color::from_hex(0x000000)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: Some(Color::from_hex(0xe55b3c)),
cyan: Some(Color::from_hex(0xff8700)),
blue: Some(Color::from_hex(0xaf5f5f)),
purple: Some(Color::from_hex(0x0087ff)),
magenta: Some(Color::from_hex(0x00d700)),
};