use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Jackie Brown"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2c1c15),
fg: Color::from_hex(0xa8a8a8),
cursor: Some(Color::from_hex(0xa8a8a8)),
selection: Some(Color::from_hex(0x666666)),
line_highlight: Some(Color::from_hex(0x2c1d16)),
gutter: Some(Color::from_hex(0x7c7c7c)),
statusbar_bg: Some(Color::from_hex(0x2c1d16)),
statusbar_fg: Some(Color::from_hex(0x929292)),
comment: Some(Color::from_hex(0x7c7c7c)),
keyword: Some(Color::from_hex(0xcf5ec0)),
string: Some(Color::from_hex(0x2baf2b)),
function: Some(Color::from_hex(0x246db2)),
variable: Some(Color::from_hex(0xef5734)),
r#type: Some(Color::from_hex(0x0000ff)),
constant: Some(Color::from_hex(0xbdbe00)),
operator: Some(Color::from_hex(0xa8a8a8)),
tag: Some(Color::from_hex(0xef5734)),
error: Some(Color::from_hex(0xef5734)),
warning: Some(Color::from_hex(0x0000ff)),
info: Some(Color::from_hex(0x246db2)),
success: Some(Color::from_hex(0x2baf2b)),
red: Some(Color::from_hex(0xe50000)),
orange: Some(Color::from_hex(0xbdbe00)),
yellow: Some(Color::from_hex(0xe5e500)),
green: Some(Color::from_hex(0x86a83e)),
cyan: Some(Color::from_hex(0x00acee)),
blue: Some(Color::from_hex(0x00e5e5)),
purple: Some(Color::from_hex(0x0000ff)),
magenta: Some(Color::from_hex(0xe500e5)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x2c1c15),
base01: Color::from_hex(0x2c1d16),
base02: Color::from_hex(0x666666),
base03: Color::from_hex(0x7c7c7c),
base04: Color::from_hex(0x929292),
base05: Color::from_hex(0xa8a8a8),
base06: Color::from_hex(0xbfbfbf),
base07: Color::from_hex(0xe5e5e5),
base08: Color::from_hex(0xef5734),
base09: Color::from_hex(0xbdbe00),
base0a: Color::from_hex(0x0000ff),
base0b: Color::from_hex(0x2baf2b),
base0c: Color::from_hex(0x00acee),
base0d: Color::from_hex(0x246db2),
base0e: Color::from_hex(0xcf5ec0),
base0f: Color::from_hex(0x772b1a),
},
base10: Color::from_hex(0x444444),
base11: Color::from_hex(0x222222),
base12: Color::from_hex(0xe50000),
base13: Color::from_hex(0xe5e500),
base14: Color::from_hex(0x86a83e),
base15: Color::from_hex(0x00e5e5),
base16: Color::from_hex(0x0000ff),
base17: Color::from_hex(0xe500e5),
};