use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Espresso"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xc7c7c5),
cursor: Some(Color::from_hex(0xc7c7c5)),
selection: Some(Color::from_hex(0x535353)),
line_highlight: Some(Color::from_hex(0x343434)),
gutter: Some(Color::from_hex(0x797979)),
statusbar_bg: Some(Color::from_hex(0x343434)),
statusbar_fg: Some(Color::from_hex(0xa0a09f)),
comment: Some(Color::from_hex(0x797979)),
keyword: Some(Color::from_hex(0xd197d9)),
string: Some(Color::from_hex(0xa5c261)),
function: Some(Color::from_hex(0x6c99bb)),
variable: Some(Color::from_hex(0xd25151)),
r#type: Some(Color::from_hex(0x8ab7d9)),
constant: Some(Color::from_hex(0xffc66d)),
operator: Some(Color::from_hex(0xc7c7c5)),
tag: Some(Color::from_hex(0xd25151)),
error: Some(Color::from_hex(0xd25151)),
warning: Some(Color::from_hex(0x8ab7d9)),
info: Some(Color::from_hex(0x6c99bb)),
success: Some(Color::from_hex(0xa5c261)),
red: Some(Color::from_hex(0xf00c0c)),
orange: Some(Color::from_hex(0xffc66d)),
yellow: Some(Color::from_hex(0xe1e38b)),
green: Some(Color::from_hex(0xc2e075)),
cyan: Some(Color::from_hex(0xbed6ff)),
blue: Some(Color::from_hex(0xdcf3ff)),
purple: Some(Color::from_hex(0x8ab7d9)),
magenta: Some(Color::from_hex(0xefb5f7)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x262626),
base01: Color::from_hex(0x343434),
base02: Color::from_hex(0x535353),
base03: Color::from_hex(0x797979),
base04: Color::from_hex(0xa0a09f),
base05: Color::from_hex(0xc7c7c5),
base06: Color::from_hex(0xeeeeec),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xd25151),
base09: Color::from_hex(0xffc66d),
base0a: Color::from_hex(0x8ab7d9),
base0b: Color::from_hex(0xa5c261),
base0c: Color::from_hex(0xbed6ff),
base0d: Color::from_hex(0x6c99bb),
base0e: Color::from_hex(0xd197d9),
base0f: Color::from_hex(0x692828),
},
base10: Color::from_hex(0x373737),
base11: Color::from_hex(0x1b1b1b),
base12: Color::from_hex(0xf00c0c),
base13: Color::from_hex(0xe1e38b),
base14: Color::from_hex(0xc2e075),
base15: Color::from_hex(0xdcf3ff),
base16: Color::from_hex(0x8ab7d9),
base17: Color::from_hex(0xefb5f7),
};