use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Front End Delight"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1b1b1d),
fg: Color::from_hex(0x98ac9c),
cursor: Some(Color::from_hex(0x98ac9c)),
selection: Some(Color::from_hex(0x5eac6c)),
line_highlight: Some(Color::from_hex(0x242426)),
gutter: Some(Color::from_hex(0x71ac7c)),
statusbar_bg: Some(Color::from_hex(0x242426)),
statusbar_fg: Some(Color::from_hex(0x85ac8c)),
comment: Some(Color::from_hex(0x71ac7c)),
keyword: Some(Color::from_hex(0xf02d4e)),
string: Some(Color::from_hex(0x565746)),
function: Some(Color::from_hex(0x2c70b7)),
variable: Some(Color::from_hex(0xf8501a)),
r#type: Some(Color::from_hex(0x3393c9)),
constant: Some(Color::from_hex(0xf9761d)),
operator: Some(Color::from_hex(0x98ac9c)),
tag: Some(Color::from_hex(0xf8501a)),
error: Some(Color::from_hex(0xf8501a)),
warning: Some(Color::from_hex(0x3393c9)),
info: Some(Color::from_hex(0x2c70b7)),
success: Some(Color::from_hex(0x565746)),
red: Some(Color::from_hex(0xf64319)),
orange: Some(Color::from_hex(0xf9761d)),
yellow: Some(Color::from_hex(0xfcc224)),
green: Some(Color::from_hex(0x74eb4c)),
cyan: Some(Color::from_hex(0x3ba0a5)),
blue: Some(Color::from_hex(0x4ebce5)),
purple: Some(Color::from_hex(0x3393c9)),
magenta: Some(Color::from_hex(0xe75e4e)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1b1b1d),
base01: Color::from_hex(0x242426),
base02: Color::from_hex(0x5eac6c),
base03: Color::from_hex(0x71ac7c),
base04: Color::from_hex(0x85ac8c),
base05: Color::from_hex(0x98ac9c),
base06: Color::from_hex(0xacacac),
base07: Color::from_hex(0x8b735a),
base08: Color::from_hex(0xf8501a),
base09: Color::from_hex(0xf9761d),
base0a: Color::from_hex(0x3393c9),
base0b: Color::from_hex(0x565746),
base0c: Color::from_hex(0x3ba0a5),
base0d: Color::from_hex(0x2c70b7),
base0e: Color::from_hex(0xf02d4e),
base0f: Color::from_hex(0x7c280d),
},
base10: Color::from_hex(0x3e7248),
base11: Color::from_hex(0x1f3924),
base12: Color::from_hex(0xf64319),
base13: Color::from_hex(0xfcc224),
base14: Color::from_hex(0x74eb4c),
base15: Color::from_hex(0x4ebce5),
base16: Color::from_hex(0x3393c9),
base17: Color::from_hex(0xe75e4e),
};