use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Hurtado"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xa1a1a1),
cursor: Some(Color::from_hex(0xa1a1a1)),
selection: Some(Color::from_hex(0x252525)),
line_highlight: Some(Color::from_hex(0x575757)),
gutter: Some(Color::from_hex(0x4e4e4e)),
statusbar_bg: Some(Color::from_hex(0x575757)),
statusbar_fg: Some(Color::from_hex(0x787878)),
comment: Some(Color::from_hex(0x4e4e4e)),
keyword: Some(Color::from_hex(0xfc5ef0)),
string: Some(Color::from_hex(0xa5df55)),
function: Some(Color::from_hex(0x486387)),
variable: Some(Color::from_hex(0xff1b00)),
r#type: Some(Color::from_hex(0x89bdff)),
constant: Some(Color::from_hex(0xfbe74a)),
operator: Some(Color::from_hex(0xa1a1a1)),
tag: Some(Color::from_hex(0xff1b00)),
error: Some(Color::from_hex(0xff1b00)),
warning: Some(Color::from_hex(0x89bdff)),
info: Some(Color::from_hex(0x486387)),
success: Some(Color::from_hex(0xa5df55)),
red: Some(Color::from_hex(0xd41c00)),
orange: Some(Color::from_hex(0xfbe74a)),
yellow: Some(Color::from_hex(0xfbe749)),
green: Some(Color::from_hex(0xa5df55)),
cyan: Some(Color::from_hex(0x85e9fe)),
blue: Some(Color::from_hex(0x85e9fe)),
purple: Some(Color::from_hex(0x89bdff)),
magenta: Some(Color::from_hex(0xbf00c0)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x000000),
base01: Color::from_hex(0x575757),
base02: Color::from_hex(0x252525),
base03: Color::from_hex(0x4e4e4e),
base04: Color::from_hex(0x787878),
base05: Color::from_hex(0xa1a1a1),
base06: Color::from_hex(0xcbcbcb),
base07: Color::from_hex(0xdbdbdb),
base08: Color::from_hex(0xff1b00),
base09: Color::from_hex(0xfbe74a),
base0a: Color::from_hex(0x89bdff),
base0b: Color::from_hex(0xa5df55),
base0c: Color::from_hex(0x85e9fe),
base0d: Color::from_hex(0x486387),
base0e: Color::from_hex(0xfc5ef0),
base0f: Color::from_hex(0x7f0d00),
},
base10: Color::from_hex(0x181818),
base11: Color::from_hex(0x0c0c0c),
base12: Color::from_hex(0xd41c00),
base13: Color::from_hex(0xfbe749),
base14: Color::from_hex(0xa5df55),
base15: Color::from_hex(0x85e9fe),
base16: Color::from_hex(0x89bdff),
base17: Color::from_hex(0xbf00c0),
};