use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sweater"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf8f1e9),
fg: Color::from_hex(0x36322c),
cursor: Some(Color::from_hex(0x36322c)),
selection: Some(Color::from_hex(0x215870)),
line_highlight: Some(Color::from_hex(0xe5e5e5)),
gutter: Some(Color::from_hex(0x646258)),
statusbar_bg: Some(Color::from_hex(0x646258)),
statusbar_fg: Some(Color::from_hex(0xd4c5b9)),
comment: Some(Color::from_hex(0xdba69d)),
keyword: Some(Color::from_hex(0x6470a3)),
string: Some(Color::from_hex(0x3f5238)),
function: Some(Color::from_hex(0xf92672)),
variable: Some(Color::from_hex(0xf92672)),
r#type: Some(Color::from_hex(0x7a908d)),
constant: Some(Color::from_hex(0xba1925)),
operator: Some(Color::from_hex(0x6470a3)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xb72231)),
green: Some(Color::from_hex(0x3f5238)),
cyan: Some(Color::from_hex(0x7a908d)),
blue: Some(Color::from_hex(0xf92672)),
purple: Some(Color::from_hex(0x6470a3)),
magenta: Some(Color::from_hex(0x6470a3)),
};