use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sol"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x080808),
cursor: None,
selection: Some(Color::from_hex(0xa8a8a8)),
line_highlight: Some(Color::from_hex(0xe4e4e4)),
gutter: Some(Color::from_hex(0xafafaf)),
statusbar_bg: Some(Color::from_hex(0xd0d0d0)),
statusbar_fg: Some(Color::from_hex(0x585858)),
comment: Some(Color::from_hex(0xbcbcbc)),
keyword: Some(Color::from_hex(0x008787)),
string: Some(Color::from_hex(0x005fff)),
function: None,
variable: Some(Color::from_hex(0xd7005f)),
r#type: Some(Color::from_hex(0x87af00)),
constant: Some(Color::from_hex(0x005f5f)),
operator: Some(Color::from_hex(0xff5f00)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0x8700ff)),
green: Some(Color::from_hex(0x005fff)),
cyan: Some(Color::from_hex(0x87af00)),
blue: None,
purple: Some(Color::from_hex(0x008787)),
magenta: Some(Color::from_hex(0xff005f)),
};