use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lilac"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x503040),
fg: Color::from_hex(0xf0f0f0),
cursor: Some(Color::from_hex(0xf0f000)),
selection: Some(Color::from_hex(0xb0d0f0)),
line_highlight: None,
gutter: Some(Color::from_hex(0xc0c0c0)),
statusbar_bg: Some(Color::from_hex(0xf0f0f0)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0xc0c0c0)),
keyword: Some(Color::from_hex(0x60d0d0)),
string: Some(Color::from_hex(0x00f080)),
function: Some(Color::from_hex(0xf0a070)),
variable: Some(Color::from_hex(0xf0a070)),
r#type: Some(Color::from_hex(0xf070a0)),
constant: Some(Color::from_hex(0x00f080)),
operator: Some(Color::from_hex(0x60d0d0)),
tag: Some(Color::from_hex(0xb0d0f0)),
error: Some(Color::from_hex(0x000000)),
warning: Some(Color::from_hex(0x000000)),
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0x000000)),
green: Some(Color::from_hex(0x00f080)),
cyan: Some(Color::from_hex(0xf070a0)),
blue: Some(Color::from_hex(0xf0a070)),
purple: Some(Color::from_hex(0x60d0d0)),
magenta: Some(Color::from_hex(0xf0f000)),
};