use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Gray30"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x4d4d4d),
fg: Color::from_hex(0xdcdcdc),
cursor: Some(Color::from_hex(0x000000)),
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xbfbfbf)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x90ee90)),
keyword: Some(Color::from_hex(0xffb6c1)),
string: Some(Color::from_hex(0xffa07a)),
function: Some(Color::from_hex(0x1e90ff)),
variable: Some(Color::from_hex(0xffd700)),
r#type: Some(Color::from_hex(0xffff00)),
constant: Some(Color::from_hex(0x7fffd4)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffa07a)),
cyan: Some(Color::from_hex(0x7fffd4)),
blue: Some(Color::from_hex(0x1e90ff)),
purple: Some(Color::from_hex(0xffb6c1)),
magenta: Some(Color::from_hex(0xffd700)),
};