use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("xian"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x946464),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x6b959b)),
line_highlight: None,
gutter: Some(Color::from_hex(0xc0c0c0)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0xc0c0c0)),
keyword: Some(Color::from_hex(0x5ad5d5)),
string: None,
function: None,
variable: Some(Color::from_hex(0xeeaa73)),
r#type: Some(Color::from_hex(0xff74a8)),
constant: Some(Color::from_hex(0x00ff80)),
operator: None,
tag: None,
error: Some(Color::from_hex(0x000000)),
warning: Some(Color::from_hex(0x000000)),
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0x000000)),
green: Some(Color::from_hex(0x00ffff)),
cyan: Some(Color::from_hex(0xff74a8)),
blue: None,
purple: Some(Color::from_hex(0x5ad5d5)),
magenta: Some(Color::from_hex(0xffff00)),
};