use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("shobogenzo"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffaf),
cursor: Some(Color::from_hex(0xff5f00)),
selection: Some(Color::from_hex(0x5fd7d7)),
line_highlight: Some(Color::from_hex(0x6c6c6c)),
gutter: Some(Color::from_hex(0x000000)),
statusbar_bg: Some(Color::from_hex(0x875f5f)),
statusbar_fg: Some(Color::from_hex(0xffffaf)),
comment: Some(Color::from_hex(0xd7ffff)),
keyword: Some(Color::from_hex(0xffd75f)),
string: Some(Color::from_hex(0xffaf5f)),
function: Some(Color::from_hex(0xff8787)),
variable: Some(Color::from_hex(0xff8787)),
r#type: Some(Color::from_hex(0xd787af)),
constant: Some(Color::from_hex(0x5fafaf)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xffaf5f)),
cyan: Some(Color::from_hex(0xd787af)),
blue: Some(Color::from_hex(0xff8787)),
purple: Some(Color::from_hex(0xffd75f)),
magenta: Some(Color::from_hex(0x5fd7ff)),
};