use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("legiblelight"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x0000cd),
cursor: Some(Color::from_hex(0x000087)),
selection: Some(Color::from_hex(0xffffff)),
line_highlight: Some(Color::from_hex(0xdcdcdc)),
gutter: Some(Color::from_hex(0x000080)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x556b2f)),
comment: Some(Color::from_hex(0x556b2f)),
keyword: Some(Color::from_hex(0x00008b)),
string: Some(Color::from_hex(0x228b22)),
function: Some(Color::from_hex(0x8b4513)),
variable: Some(Color::from_hex(0xa0522d)),
r#type: Some(Color::from_hex(0x483d8b)),
constant: Some(Color::from_hex(0x008000)),
operator: Some(Color::from_hex(0x4682b4)),
tag: Some(Color::from_hex(0x4682b4)),
error: Some(Color::from_hex(0xcd0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xcd0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x228b22)),
cyan: Some(Color::from_hex(0x483d8b)),
blue: Some(Color::from_hex(0x8b4513)),
purple: Some(Color::from_hex(0x00008b)),
magenta: Some(Color::from_hex(0x800080)),
};