use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lizard"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x242424),
fg: Color::from_hex(0xe0e0e0),
cursor: Some(Color::from_hex(0x656565)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x857b6f)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xf6f3e8)),
comment: Some(Color::from_hex(0x99968b)),
keyword: Some(Color::from_hex(0x8ac6f2)),
string: Some(Color::from_hex(0x95e454)),
function: Some(Color::from_hex(0xcae682)),
variable: Some(Color::from_hex(0xcae682)),
r#type: Some(Color::from_hex(0xcae682)),
constant: Some(Color::from_hex(0xe5786d)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xe7f6da)),
green: Some(Color::from_hex(0x95e454)),
cyan: Some(Color::from_hex(0xcae682)),
blue: Some(Color::from_hex(0xcae682)),
purple: Some(Color::from_hex(0x8ac6f2)),
magenta: Some(Color::from_hex(0xe5786d)),
};