use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("autumn"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfff4e8),
fg: Color::from_hex(0x404040),
cursor: Some(Color::from_hex(0x0080f0)),
selection: Some(Color::from_hex(0xffc0a0)),
line_highlight: None,
gutter: Some(Color::from_hex(0xe0b090)),
statusbar_bg: Some(Color::from_hex(0x904838)),
statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
comment: Some(Color::from_hex(0xff5050)),
keyword: Some(Color::from_hex(0x80a030)),
string: None,
function: None,
variable: Some(Color::from_hex(0xb07800)),
r#type: Some(Color::from_hex(0xb06c58)),
constant: Some(Color::from_hex(0x00884c)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xf8f8f8)),
warning: Some(Color::from_hex(0xf8f8f8)),
info: None,
success: None,
red: Some(Color::from_hex(0xf8f8f8)),
orange: None,
yellow: Some(Color::from_hex(0xf8f8f8)),
green: Some(Color::from_hex(0xff2020)),
cyan: Some(Color::from_hex(0xb06c58)),
blue: None,
purple: Some(Color::from_hex(0x80a030)),
magenta: Some(Color::from_hex(0x0090a0)),
};