use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Yesterday Night"),
author: Cow::Borrowed("FroZnShiva (https://github.com/FroZnShiva)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x343d46),
fg: Color::from_hex(0xdfe1e8),
cursor: Some(Color::from_hex(0xdfe1e8)),
selection: Some(Color::from_hex(0x65737e)),
line_highlight: Some(Color::from_hex(0x4f5b66)),
gutter: Some(Color::from_hex(0xa7adba)),
statusbar_bg: Some(Color::from_hex(0x4f5b66)),
statusbar_fg: Some(Color::from_hex(0xc0c5ce)),
comment: Some(Color::from_hex(0xa7adba)),
keyword: Some(Color::from_hex(0xb294bb)),
string: Some(Color::from_hex(0xb5bd68)),
function: Some(Color::from_hex(0x81a2be)),
variable: Some(Color::from_hex(0xcc6666)),
r#type: Some(Color::from_hex(0xf0c674)),
constant: Some(Color::from_hex(0xde935f)),
operator: Some(Color::from_hex(0xdfe1e8)),
tag: Some(Color::from_hex(0xcc6666)),
error: Some(Color::from_hex(0xcc6666)),
warning: Some(Color::from_hex(0xf0c674)),
info: Some(Color::from_hex(0x81a2be)),
success: Some(Color::from_hex(0xb5bd68)),
red: Some(Color::from_hex(0xcc6666)),
orange: Some(Color::from_hex(0xde935f)),
yellow: Some(Color::from_hex(0xf0c674)),
green: Some(Color::from_hex(0xb5bd68)),
cyan: Some(Color::from_hex(0x8abeb7)),
blue: Some(Color::from_hex(0x81a2be)),
purple: Some(Color::from_hex(0xb294bb)),
magenta: Some(Color::from_hex(0xa3685a)),
};