use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Treehouse"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x191919),
fg: Color::from_hex(0x695d47),
cursor: Some(Color::from_hex(0x695d47)),
selection: Some(Color::from_hex(0x423625)),
line_highlight: Some(Color::from_hex(0x321200)),
gutter: Some(Color::from_hex(0x4f4330)),
statusbar_bg: Some(Color::from_hex(0x321200)),
statusbar_fg: Some(Color::from_hex(0x5c503c)),
comment: Some(Color::from_hex(0x4f4330)),
keyword: Some(Color::from_hex(0x96363c)),
string: Some(Color::from_hex(0x44a900)),
function: Some(Color::from_hex(0x578499)),
variable: Some(Color::from_hex(0xb1270e)),
r#type: Some(Color::from_hex(0x85cfec)),
constant: Some(Color::from_hex(0xa9810b)),
operator: Some(Color::from_hex(0x695d47)),
tag: Some(Color::from_hex(0xb1270e)),
error: Some(Color::from_hex(0xb1270e)),
warning: Some(Color::from_hex(0x85cfec)),
info: Some(Color::from_hex(0x578499)),
success: Some(Color::from_hex(0x44a900)),
red: Some(Color::from_hex(0xed5c20)),
orange: Some(Color::from_hex(0xa9810b)),
yellow: Some(Color::from_hex(0xf1b731)),
green: Some(Color::from_hex(0x55f237)),
cyan: Some(Color::from_hex(0xb2591d)),
blue: Some(Color::from_hex(0xf07d14)),
purple: Some(Color::from_hex(0x85cfec)),
magenta: Some(Color::from_hex(0xe04b5a)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x191919),
base01: Color::from_hex(0x321200),
base02: Color::from_hex(0x423625),
base03: Color::from_hex(0x4f4330),
base04: Color::from_hex(0x5c503c),
base05: Color::from_hex(0x695d47),
base06: Color::from_hex(0x776b53),
base07: Color::from_hex(0xffc800),
base08: Color::from_hex(0xb1270e),
base09: Color::from_hex(0xa9810b),
base0a: Color::from_hex(0x85cfec),
base0b: Color::from_hex(0x44a900),
base0c: Color::from_hex(0xb2591d),
base0d: Color::from_hex(0x578499),
base0e: Color::from_hex(0x96363c),
base0f: Color::from_hex(0x581307),
},
base10: Color::from_hex(0x2c2418),
base11: Color::from_hex(0x16120c),
base12: Color::from_hex(0xed5c20),
base13: Color::from_hex(0xf1b731),
base14: Color::from_hex(0x55f237),
base15: Color::from_hex(0xf07d14),
base16: Color::from_hex(0x85cfec),
base17: Color::from_hex(0xe04b5a),
};