use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Spiderman"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1b1d1e),
fg: Color::from_hex(0xd3d3cd),
cursor: Some(Color::from_hex(0xd3d3cd)),
selection: Some(Color::from_hex(0x505354)),
line_highlight: Some(Color::from_hex(0x1b1d1e)),
gutter: Some(Color::from_hex(0x7b7d7c)),
statusbar_bg: Some(Color::from_hex(0x1b1d1e)),
statusbar_fg: Some(Color::from_hex(0xa7a8a5)),
comment: Some(Color::from_hex(0x7b7d7c)),
keyword: Some(Color::from_hex(0x2435db)),
string: Some(Color::from_hex(0xe22828)),
function: Some(Color::from_hex(0x2b3fff)),
variable: Some(Color::from_hex(0xe60712)),
r#type: Some(Color::from_hex(0x1d4fff)),
constant: Some(Color::from_hex(0xe24655)),
operator: Some(Color::from_hex(0xd3d3cd)),
tag: Some(Color::from_hex(0xe60712)),
error: Some(Color::from_hex(0xe60712)),
warning: Some(Color::from_hex(0x1d4fff)),
info: Some(Color::from_hex(0x2b3fff)),
success: Some(Color::from_hex(0xe22828)),
red: Some(Color::from_hex(0xff0325)),
orange: Some(Color::from_hex(0xe24655)),
yellow: Some(Color::from_hex(0xfe3935)),
green: Some(Color::from_hex(0xff3238)),
cyan: Some(Color::from_hex(0x3255ff)),
blue: Some(Color::from_hex(0x6083ff)),
purple: Some(Color::from_hex(0x1d4fff)),
magenta: Some(Color::from_hex(0x737bff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1b1d1e),
base01: Color::from_hex(0x1b1d1e),
base02: Color::from_hex(0x505354),
base03: Color::from_hex(0x7b7d7c),
base04: Color::from_hex(0xa7a8a5),
base05: Color::from_hex(0xd3d3cd),
base06: Color::from_hex(0xfffef6),
base07: Color::from_hex(0xfefff9),
base08: Color::from_hex(0xe60712),
base09: Color::from_hex(0xe24655),
base0a: Color::from_hex(0x1d4fff),
base0b: Color::from_hex(0xe22828),
base0c: Color::from_hex(0x3255ff),
base0d: Color::from_hex(0x2b3fff),
base0e: Color::from_hex(0x2435db),
base0f: Color::from_hex(0x730309),
},
base10: Color::from_hex(0x353738),
base11: Color::from_hex(0x1a1b1c),
base12: Color::from_hex(0xff0325),
base13: Color::from_hex(0xfe3935),
base14: Color::from_hex(0xff3238),
base15: Color::from_hex(0x6083ff),
base16: Color::from_hex(0x1d4fff),
base17: Color::from_hex(0x737bff),
};