use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("xoria256"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xffaf00)),
selection: Some(Color::from_hex(0x875f87)),
line_highlight: Some(Color::from_hex(0x3a3a3a)),
gutter: Some(Color::from_hex(0x9e9e9e)),
statusbar_bg: Some(Color::from_hex(0x4e4e4e)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x87afdf)),
string: None,
function: None,
variable: Some(Color::from_hex(0xdfafdf)),
r#type: Some(Color::from_hex(0xafafdf)),
constant: Some(Color::from_hex(0xffffaf)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xdf8787)),
green: None,
cyan: Some(Color::from_hex(0xafafdf)),
blue: None,
purple: Some(Color::from_hex(0x87afdf)),
magenta: Some(Color::from_hex(0xafdf87)),
};