use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Yesterday"),
author: Cow::Borrowed("FroZnShiva (https://github.com/FroZnShiva)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1d1f21),
fg: Color::from_hex(0xd6d6d6),
cursor: Some(Color::from_hex(0xd6d6d6)),
selection: Some(Color::from_hex(0x4d4d4c)),
line_highlight: Some(Color::from_hex(0x282a2e)),
gutter: Some(Color::from_hex(0x969896)),
statusbar_bg: Some(Color::from_hex(0x282a2e)),
statusbar_fg: Some(Color::from_hex(0x8e908c)),
comment: Some(Color::from_hex(0x969896)),
keyword: Some(Color::from_hex(0x8959a8)),
string: Some(Color::from_hex(0x718c00)),
function: Some(Color::from_hex(0x4271ae)),
variable: Some(Color::from_hex(0xc82829)),
r#type: Some(Color::from_hex(0xeab700)),
constant: Some(Color::from_hex(0xf5871f)),
operator: Some(Color::from_hex(0xd6d6d6)),
tag: Some(Color::from_hex(0xc82829)),
error: Some(Color::from_hex(0xc82829)),
warning: Some(Color::from_hex(0xeab700)),
info: Some(Color::from_hex(0x4271ae)),
success: Some(Color::from_hex(0x718c00)),
red: Some(Color::from_hex(0xc82829)),
orange: Some(Color::from_hex(0xf5871f)),
yellow: Some(Color::from_hex(0xeab700)),
green: Some(Color::from_hex(0x718c00)),
cyan: Some(Color::from_hex(0x3e999f)),
blue: Some(Color::from_hex(0x4271ae)),
purple: Some(Color::from_hex(0x8959a8)),
magenta: Some(Color::from_hex(0x7f2a1d)),
};