use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Misterioso"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2d3743),
fg: Color::from_hex(0xbebebd),
cursor: Some(Color::from_hex(0xbebebd)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x787877)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x9b9b9a)),
comment: Some(Color::from_hex(0x787877)),
keyword: Some(Color::from_hex(0x9413e5)),
string: Some(Color::from_hex(0x74af68)),
function: Some(Color::from_hex(0x338f86)),
variable: Some(Color::from_hex(0xff4242)),
r#type: Some(Color::from_hex(0x23d7d7)),
constant: Some(Color::from_hex(0xffad29)),
operator: Some(Color::from_hex(0xbebebd)),
tag: Some(Color::from_hex(0xff4242)),
error: Some(Color::from_hex(0xff4242)),
warning: Some(Color::from_hex(0x23d7d7)),
info: Some(Color::from_hex(0x338f86)),
success: Some(Color::from_hex(0x74af68)),
red: Some(Color::from_hex(0xff3242)),
orange: Some(Color::from_hex(0xffad29)),
yellow: Some(Color::from_hex(0xffb929)),
green: Some(Color::from_hex(0x74cd68)),
cyan: Some(Color::from_hex(0x23d7d7)),
blue: Some(Color::from_hex(0x00ede1)),
purple: Some(Color::from_hex(0x23d7d7)),
magenta: Some(Color::from_hex(0xff37ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x2d3743),
base01: Color::from_hex(0x000000),
base02: Color::from_hex(0x555555),
base03: Color::from_hex(0x787877),
base04: Color::from_hex(0x9b9b9a),
base05: Color::from_hex(0xbebebd),
base06: Color::from_hex(0xe1e1e0),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xff4242),
base09: Color::from_hex(0xffad29),
base0a: Color::from_hex(0x23d7d7),
base0b: Color::from_hex(0x74af68),
base0c: Color::from_hex(0x23d7d7),
base0d: Color::from_hex(0x338f86),
base0e: Color::from_hex(0x9413e5),
base0f: Color::from_hex(0x7f2121),
},
base10: Color::from_hex(0x383838),
base11: Color::from_hex(0x1c1c1c),
base12: Color::from_hex(0xff3242),
base13: Color::from_hex(0xffb929),
base14: Color::from_hex(0x74cd68),
base15: Color::from_hex(0x00ede1),
base16: Color::from_hex(0x23d7d7),
base17: Color::from_hex(0xff37ff),
};