use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("AutumnLeaf"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfffdfa),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0xaa7733)),
selection: Some(Color::from_hex(0xfff8cc)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xffeebb)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x002200)),
keyword: Some(Color::from_hex(0x003399)),
string: Some(Color::from_hex(0x003399)),
function: Some(Color::from_hex(0x0055aa)),
variable: Some(Color::from_hex(0x003399)),
r#type: Some(Color::from_hex(0x007700)),
constant: Some(Color::from_hex(0x003399)),
operator: Some(Color::from_hex(0xaa7733)),
tag: Some(Color::from_hex(0x003399)),
error: Some(Color::from_hex(0xcc0000)),
warning: Some(Color::from_hex(0xcc0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xcc0000)),
orange: None,
yellow: Some(Color::from_hex(0xcc0000)),
green: Some(Color::from_hex(0x003399)),
cyan: Some(Color::from_hex(0x007700)),
blue: Some(Color::from_hex(0x0055aa)),
purple: Some(Color::from_hex(0x003399)),
magenta: Some(Color::from_hex(0xaa7733)),
};