use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("win9xblueback"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0000b0),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0xe0e0e0)),
line_highlight: None,
gutter: Some(Color::from_hex(0x909090)),
statusbar_bg: Some(Color::from_hex(0xd0d0d0)),
statusbar_fg: Some(Color::from_hex(0x0000b0)),
comment: Some(Color::from_hex(0x909090)),
keyword: Some(Color::from_hex(0xffffff)),
string: Some(Color::from_hex(0x0000b0)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0xffffff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xee1111)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xee1111)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0x0000b0)),
cyan: Some(Color::from_hex(0xffffff)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xffffff)),
magenta: Some(Color::from_hex(0xffffff)),
};