use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("unokai"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x282923),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xdadada)),
selection: Some(Color::from_hex(0x282923)),
line_highlight: Some(Color::from_hex(0x3a392f)),
gutter: Some(Color::from_hex(0x8a8a8a)),
statusbar_bg: Some(Color::from_hex(0xbababa)),
statusbar_fg: Some(Color::from_hex(0x282923)),
comment: Some(Color::from_hex(0x74705d)),
keyword: Some(Color::from_hex(0xf92672)),
string: Some(Color::from_hex(0xe6db74)),
function: Some(Color::from_hex(0xa6e22e)),
variable: Some(Color::from_hex(0x66d9ef)),
r#type: Some(Color::from_hex(0xfd971f)),
constant: Some(Color::from_hex(0xae81ff)),
operator: Some(Color::from_hex(0xf92672)),
tag: None,
error: Some(Color::from_hex(0xf92672)),
warning: Some(Color::from_hex(0xf92672)),
info: None,
success: None,
red: Some(Color::from_hex(0xf92672)),
orange: None,
yellow: Some(Color::from_hex(0xf92672)),
green: Some(Color::from_hex(0xe6db74)),
cyan: Some(Color::from_hex(0xfd971f)),
blue: Some(Color::from_hex(0xa6e22e)),
purple: Some(Color::from_hex(0xf92672)),
magenta: Some(Color::from_hex(0xf92672)),
};