use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("winter"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xd4d0c8),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0xff0000)),
selection: Some(Color::from_hex(0x000080)),
line_highlight: None,
gutter: Some(Color::from_hex(0x707070)),
statusbar_bg: Some(Color::from_hex(0x707070)),
statusbar_fg: Some(Color::from_hex(0xe0e0e0)),
comment: Some(Color::from_hex(0x008000)),
keyword: Some(Color::from_hex(0x0000ff)),
string: Some(Color::from_hex(0x008080)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x0000ff)),
constant: Some(Color::from_hex(0xa000a0)),
operator: None,
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(0xa000a0)),
green: Some(Color::from_hex(0x008080)),
cyan: Some(Color::from_hex(0x0000ff)),
blue: None,
purple: Some(Color::from_hex(0x0000ff)),
magenta: Some(Color::from_hex(0xa000a0)),
};