use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Ld Dark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffff00)),
selection: Some(Color::from_hex(0x2f4f4f)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x808080)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: None,
keyword: Some(Color::from_hex(0x87cefa)),
string: Some(Color::from_hex(0xdeb887)),
function: Some(Color::from_hex(0x87cefa)),
variable: Some(Color::from_hex(0x7fffd4)),
r#type: Some(Color::from_hex(0x98fb98)),
constant: Some(Color::from_hex(0xffd700)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffc0cb)),
warning: Some(Color::from_hex(0xff8c00)),
info: None,
success: None,
red: Some(Color::from_hex(0xffc0cb)),
orange: None,
yellow: Some(Color::from_hex(0xff8c00)),
green: Some(Color::from_hex(0xdeb887)),
cyan: Some(Color::from_hex(0xffd700)),
blue: Some(Color::from_hex(0x87cefa)),
purple: Some(Color::from_hex(0x87cefa)),
magenta: Some(Color::from_hex(0x7fffd4)),
};