use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Crayon Pony Fish"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x140607),
fg: Color::from_hex(0x5d484e),
cursor: Some(Color::from_hex(0x5d484e)),
selection: Some(Color::from_hex(0x3c2a2e)),
line_highlight: Some(Color::from_hex(0x2a1a1c)),
gutter: Some(Color::from_hex(0x473438)),
statusbar_bg: Some(Color::from_hex(0x2a1a1c)),
statusbar_fg: Some(Color::from_hex(0x523e43)),
comment: Some(Color::from_hex(0x473438)),
keyword: Some(Color::from_hex(0x682e50)),
string: Some(Color::from_hex(0x579523)),
function: Some(Color::from_hex(0x8b87af)),
variable: Some(Color::from_hex(0x90002a)),
r#type: Some(Color::from_hex(0xcfc9ff)),
constant: Some(Color::from_hex(0xaa301b)),
operator: Some(Color::from_hex(0x5d484e)),
tag: Some(Color::from_hex(0x90002a)),
error: Some(Color::from_hex(0x90002a)),
warning: Some(Color::from_hex(0xcfc9ff)),
info: Some(Color::from_hex(0x8b87af)),
success: Some(Color::from_hex(0x579523)),
red: Some(Color::from_hex(0xc5245c)),
orange: Some(Color::from_hex(0xaa301b)),
yellow: Some(Color::from_hex(0xc7371d)),
green: Some(Color::from_hex(0x8dff56)),
cyan: Some(Color::from_hex(0xe8a766)),
blue: Some(Color::from_hex(0xffceae)),
purple: Some(Color::from_hex(0xcfc9ff)),
magenta: Some(Color::from_hex(0xfb6cb9)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x140607),
base01: Color::from_hex(0x2a1a1c),
base02: Color::from_hex(0x3c2a2e),
base03: Color::from_hex(0x473438),
base04: Color::from_hex(0x523e43),
base05: Color::from_hex(0x5d484e),
base06: Color::from_hex(0x685259),
base07: Color::from_hex(0xaf949d),
base08: Color::from_hex(0x90002a),
base09: Color::from_hex(0xaa301b),
base0a: Color::from_hex(0xcfc9ff),
base0b: Color::from_hex(0x579523),
base0c: Color::from_hex(0xe8a766),
base0d: Color::from_hex(0x8b87af),
base0e: Color::from_hex(0x682e50),
base0f: Color::from_hex(0x480015),
},
base10: Color::from_hex(0x281c1e),
base11: Color::from_hex(0x140e0f),
base12: Color::from_hex(0xc5245c),
base13: Color::from_hex(0xc7371d),
base14: Color::from_hex(0x8dff56),
base15: Color::from_hex(0xffceae),
base16: Color::from_hex(0xcfc9ff),
base17: Color::from_hex(0xfb6cb9),
};