use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Wombat"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x171717),
fg: Color::from_hex(0xb2afa6),
cursor: Some(Color::from_hex(0xb2afa6)),
selection: Some(Color::from_hex(0x313131)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x5c5b58)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x87857f)),
comment: Some(Color::from_hex(0x5c5b58)),
keyword: Some(Color::from_hex(0xe86aff)),
string: Some(Color::from_hex(0xb1e869)),
function: Some(Color::from_hex(0x5da9f6)),
variable: Some(Color::from_hex(0xff605a)),
r#type: Some(Color::from_hex(0xa5c7ff)),
constant: Some(Color::from_hex(0xead89c)),
operator: Some(Color::from_hex(0xb2afa6)),
tag: Some(Color::from_hex(0xff605a)),
error: Some(Color::from_hex(0xff605a)),
warning: Some(Color::from_hex(0xa5c7ff)),
info: Some(Color::from_hex(0x5da9f6)),
success: Some(Color::from_hex(0xb1e869)),
red: Some(Color::from_hex(0xf58b7f)),
orange: Some(Color::from_hex(0xead89c)),
yellow: Some(Color::from_hex(0xeee5b2)),
green: Some(Color::from_hex(0xdcf88f)),
cyan: Some(Color::from_hex(0x82fff6)),
blue: Some(Color::from_hex(0xb6fff9)),
purple: Some(Color::from_hex(0xa5c7ff)),
magenta: Some(Color::from_hex(0xddaaff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x171717),
base01: Color::from_hex(0x000000),
base02: Color::from_hex(0x313131),
base03: Color::from_hex(0x5c5b58),
base04: Color::from_hex(0x87857f),
base05: Color::from_hex(0xb2afa6),
base06: Color::from_hex(0xded9ce),
base07: Color::from_hex(0xfefffe),
base08: Color::from_hex(0xff605a),
base09: Color::from_hex(0xead89c),
base0a: Color::from_hex(0xa5c7ff),
base0b: Color::from_hex(0xb1e869),
base0c: Color::from_hex(0x82fff6),
base0d: Color::from_hex(0x5da9f6),
base0e: Color::from_hex(0xe86aff),
base0f: Color::from_hex(0x7f302d),
},
base10: Color::from_hex(0x202020),
base11: Color::from_hex(0x101010),
base12: Color::from_hex(0xf58b7f),
base13: Color::from_hex(0xeee5b2),
base14: Color::from_hex(0xdcf88f),
base15: Color::from_hex(0xb6fff9),
base16: Color::from_hex(0xa5c7ff),
base17: Color::from_hex(0xddaaff),
};