use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("skittles_autumn"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xffd787),
cursor: Some(Color::from_hex(0x005fd7)),
selection: Some(Color::from_hex(0x875f5f)),
line_highlight: Some(Color::from_hex(0x262626)),
gutter: Some(Color::from_hex(0x6c6c6c)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0x5f8787)),
comment: Some(Color::from_hex(0x5f8787)),
keyword: Some(Color::from_hex(0x87d7ff)),
string: Some(Color::from_hex(0xff5f00)),
function: Some(Color::from_hex(0x00d787)),
variable: Some(Color::from_hex(0xffd787)),
r#type: Some(Color::from_hex(0x5fd7d7)),
constant: Some(Color::from_hex(0x8700af)),
operator: Some(Color::from_hex(0xff8700)),
tag: Some(Color::from_hex(0x87d7ff)),
error: Some(Color::from_hex(0x87d7ff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0x87d7ff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xff5f00)),
cyan: Some(Color::from_hex(0x5fd7d7)),
blue: Some(Color::from_hex(0x00d787)),
purple: Some(Color::from_hex(0x87d7ff)),
magenta: Some(Color::from_hex(0xafd75f)),
};