use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lanox"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xdadada)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x2f2f2f)),
gutter: Some(Color::from_hex(0x838586)),
statusbar_bg: Some(Color::from_hex(0xdadada)),
statusbar_fg: Some(Color::from_hex(0x444444)),
comment: Some(Color::from_hex(0x9e9e9e)),
keyword: Some(Color::from_hex(0xd7005f)),
string: Some(Color::from_hex(0xf1c40f)),
function: Some(Color::from_hex(0x2ecc71)),
variable: Some(Color::from_hex(0xff8700)),
r#type: Some(Color::from_hex(0x5fd7ff)),
constant: Some(Color::from_hex(0xaf5fff)),
operator: Some(Color::from_hex(0xd75f5f)),
tag: Some(Color::from_hex(0xd7005f)),
error: Some(Color::from_hex(0xff00af)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xff00af)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xf1c40f)),
cyan: Some(Color::from_hex(0x5fd7ff)),
blue: Some(Color::from_hex(0x2ecc71)),
purple: Some(Color::from_hex(0xd7005f)),
magenta: Some(Color::from_hex(0x87ff00)),
};