use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("janah"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xdadada),
cursor: None,
selection: Some(Color::from_hex(0x005f87)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x878787)),
statusbar_bg: Some(Color::from_hex(0x3a3a3a)),
statusbar_fg: Some(Color::from_hex(0xe4e4e4)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xafdf87)),
string: Some(Color::from_hex(0x87afdf)),
function: None,
variable: Some(Color::from_hex(0xffaf87)),
r#type: Some(Color::from_hex(0x87dfaf)),
constant: Some(Color::from_hex(0x87dfdf)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xeeeeee)),
warning: Some(Color::from_hex(0xc0c0c0)),
info: None,
success: None,
red: Some(Color::from_hex(0xeeeeee)),
orange: None,
yellow: Some(Color::from_hex(0xc0c0c0)),
green: Some(Color::from_hex(0x87afdf)),
cyan: Some(Color::from_hex(0x87dfaf)),
blue: None,
purple: Some(Color::from_hex(0xafdf87)),
magenta: Some(Color::from_hex(0xffdfaf)),
};