use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("feral"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x202020),
fg: Color::from_hex(0xe2e2e5),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x3c414c)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xd3d3d5)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xff8700)),
string: Some(Color::from_hex(0x87af5f)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0x87af5f)),
r#type: Some(Color::from_hex(0x8787af)),
constant: Some(Color::from_hex(0xff8700)),
operator: Some(Color::from_hex(0xbcbcbc)),
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0xff8700)),
green: Some(Color::from_hex(0x87af5f)),
cyan: Some(Color::from_hex(0x8787af)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xff8700)),
magenta: Some(Color::from_hex(0xfaf4c6)),
};