use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Molokai"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xa1a1a1),
cursor: Some(Color::from_hex(0xa1a1a1)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x121212)),
gutter: Some(Color::from_hex(0x6e6e6e)),
statusbar_bg: Some(Color::from_hex(0x121212)),
statusbar_fg: Some(Color::from_hex(0x888888)),
comment: Some(Color::from_hex(0x6e6e6e)),
keyword: Some(Color::from_hex(0x8700ff)),
string: Some(Color::from_hex(0x97e123)),
function: Some(Color::from_hex(0x0f7fcf)),
variable: Some(Color::from_hex(0xfa2573)),
r#type: Some(Color::from_hex(0x00afff)),
constant: Some(Color::from_hex(0xdfd460)),
operator: Some(Color::from_hex(0xa1a1a1)),
tag: Some(Color::from_hex(0xfa2573)),
error: Some(Color::from_hex(0xfa2573)),
warning: Some(Color::from_hex(0x00afff)),
info: Some(Color::from_hex(0x0f7fcf)),
success: Some(Color::from_hex(0x97e123)),
red: Some(Color::from_hex(0xf5669c)),
orange: Some(Color::from_hex(0xdfd460)),
yellow: Some(Color::from_hex(0xfef26c)),
green: Some(Color::from_hex(0xb0e05e)),
cyan: Some(Color::from_hex(0x42a7cf)),
blue: Some(Color::from_hex(0x50cdfe)),
purple: Some(Color::from_hex(0x00afff)),
magenta: Some(Color::from_hex(0xaf87ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x121212),
base01: Color::from_hex(0x121212),
base02: Color::from_hex(0x555555),
base03: Color::from_hex(0x6e6e6e),
base04: Color::from_hex(0x888888),
base05: Color::from_hex(0xa1a1a1),
base06: Color::from_hex(0xbbbbbb),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xfa2573),
base09: Color::from_hex(0xdfd460),
base0a: Color::from_hex(0x00afff),
base0b: Color::from_hex(0x97e123),
base0c: Color::from_hex(0x42a7cf),
base0d: Color::from_hex(0x0f7fcf),
base0e: Color::from_hex(0x8700ff),
base0f: Color::from_hex(0x7d1239),
},
base10: Color::from_hex(0x383838),
base11: Color::from_hex(0x1c1c1c),
base12: Color::from_hex(0xf5669c),
base13: Color::from_hex(0xfef26c),
base14: Color::from_hex(0xb0e05e),
base15: Color::from_hex(0x50cdfe),
base16: Color::from_hex(0x00afff),
base17: Color::from_hex(0xaf87ff),
};