use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lightning"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x1c1c1c),
cursor: Some(Color::from_hex(0xbcbcbc)),
selection: Some(Color::from_hex(0x87afff)),
line_highlight: None,
gutter: Some(Color::from_hex(0x1c1c1c)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x5f87ff)),
string: Some(Color::from_hex(0x005f87)),
function: Some(Color::from_hex(0x0087ff)),
variable: Some(Color::from_hex(0x0000d7)),
r#type: Some(Color::from_hex(0x870087)),
constant: Some(Color::from_hex(0xff8700)),
operator: Some(Color::from_hex(0x5f87ff)),
tag: Some(Color::from_hex(0x00af5f)),
error: Some(Color::from_hex(0x262626)),
warning: Some(Color::from_hex(0xd70000)),
info: None,
success: None,
red: Some(Color::from_hex(0x262626)),
orange: None,
yellow: Some(Color::from_hex(0xd70000)),
green: Some(Color::from_hex(0x005f87)),
cyan: Some(Color::from_hex(0x870087)),
blue: Some(Color::from_hex(0x0087ff)),
purple: Some(Color::from_hex(0x5f87ff)),
magenta: Some(Color::from_hex(0x008787)),
};