use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lightcolors"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf0f0f0),
fg: Color::from_hex(0x000000),
cursor: None,
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x555555)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x2a3f82)),
comment: Some(Color::from_hex(0x2a3f82)),
keyword: Some(Color::from_hex(0x555555)),
string: Some(Color::from_hex(0xaa2100)),
function: Some(Color::from_hex(0x4b909e)),
variable: Some(Color::from_hex(0x4b909e)),
r#type: Some(Color::from_hex(0x4e9a06)),
constant: Some(Color::from_hex(0xaa2100)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: Some(Color::from_hex(0xaa2100)),
cyan: Some(Color::from_hex(0x4e9a06)),
blue: Some(Color::from_hex(0x4b909e)),
purple: Some(Color::from_hex(0x555555)),
magenta: Some(Color::from_hex(0x702589)),
};