use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("luinnar"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x00ffff),
cursor: Some(Color::from_hex(0xffff99)),
selection: Some(Color::from_hex(0x003040)),
line_highlight: Some(Color::from_hex(0x3b3b3b)),
gutter: Some(Color::from_hex(0x928c75)),
statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
statusbar_fg: Some(Color::from_hex(0x222222)),
comment: Some(Color::from_hex(0xb0b010)),
keyword: Some(Color::from_hex(0xffffff)),
string: None,
function: Some(Color::from_hex(0x2080ff)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0x00ff20)),
operator: Some(Color::from_hex(0xffffff)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xccae22)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xccae22)),
green: Some(Color::from_hex(0xffa000)),
cyan: Some(Color::from_hex(0xffffff)),
blue: Some(Color::from_hex(0x2080ff)),
purple: Some(Color::from_hex(0xffffff)),
magenta: Some(Color::from_hex(0x00b000)),
};