use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("winterd"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x3f3f3f),
fg: Color::from_hex(0xf3f3f3),
cursor: Some(Color::from_hex(0xaaaaaa)),
selection: Some(Color::from_hex(0xbbddff)),
line_highlight: Some(Color::from_hex(0xf0f0f0)),
gutter: Some(Color::from_hex(0xc1c1c1)),
statusbar_bg: Some(Color::from_hex(0xeeeeee)),
statusbar_fg: Some(Color::from_hex(0x222222)),
comment: Some(Color::from_hex(0xcccccc)),
keyword: Some(Color::from_hex(0x509be8)),
string: Some(Color::from_hex(0x204070)),
function: Some(Color::from_hex(0xf3f3f3)),
variable: Some(Color::from_hex(0x1a1a1a)),
r#type: Some(Color::from_hex(0x509be8)),
constant: Some(Color::from_hex(0x204070)),
operator: Some(Color::from_hex(0x1a1a1a)),
tag: Some(Color::from_hex(0xbbddff)),
error: Some(Color::from_hex(0x333333)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x333333)),
orange: None,
yellow: Some(Color::from_hex(0xbbddff)),
green: Some(Color::from_hex(0x204070)),
cyan: Some(Color::from_hex(0x509be8)),
blue: Some(Color::from_hex(0xf3f3f3)),
purple: Some(Color::from_hex(0x509be8)),
magenta: Some(Color::from_hex(0xbbddff)),
};