use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lakers_away_jersey"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x562880),
fg: Color::from_hex(0xffc800),
cursor: Some(Color::from_hex(0xcd5c5c)),
selection: Some(Color::from_hex(0xffff00)),
line_highlight: None,
gutter: Some(Color::from_hex(0xffc800)),
statusbar_bg: Some(Color::from_hex(0x4682b4)),
statusbar_fg: Some(Color::from_hex(0xffc800)),
comment: Some(Color::from_hex(0x5c97d6)),
keyword: Some(Color::from_hex(0xffff00)),
string: Some(Color::from_hex(0xffff00)),
function: Some(Color::from_hex(0x5c97d6)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffc8)),
constant: Some(Color::from_hex(0xffff00)),
operator: Some(Color::from_hex(0x5c97d6)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffff00)),
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffff00)),
cyan: Some(Color::from_hex(0xffffc8)),
blue: Some(Color::from_hex(0x5c97d6)),
purple: Some(Color::from_hex(0xffff00)),
magenta: Some(Color::from_hex(0xffff00)),
};