use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Raspopovic"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x00008b),
fg: Color::from_hex(0xffff00),
cursor: None,
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x90ee90)),
keyword: Some(Color::from_hex(0x87ceeb)),
string: Some(Color::from_hex(0xd3d3d3)),
function: Some(Color::from_hex(0xcd5c5c)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffa500)),
constant: None,
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xd3d3d3)),
cyan: Some(Color::from_hex(0xffa500)),
blue: Some(Color::from_hex(0xcd5c5c)),
purple: Some(Color::from_hex(0x87ceeb)),
magenta: Some(Color::from_hex(0xffffff)),
};