use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Japanesque"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1d1d1d),
fg: Color::from_hex(0xd0d2ce),
cursor: Some(Color::from_hex(0xd0d2ce)),
selection: Some(Color::from_hex(0x585a58)),
line_highlight: Some(Color::from_hex(0x343835)),
gutter: Some(Color::from_hex(0x80827f)),
statusbar_bg: Some(Color::from_hex(0x343835)),
statusbar_fg: Some(Color::from_hex(0xa8aaa7)),
comment: Some(Color::from_hex(0x80827f)),
keyword: Some(Color::from_hex(0xa57fc4)),
string: Some(Color::from_hex(0x7bb75b)),
function: Some(Color::from_hex(0x4c99d3)),
variable: Some(Color::from_hex(0xce3e60)),
r#type: Some(Color::from_hex(0x135879)),
constant: Some(Color::from_hex(0xe8b32a)),
operator: Some(Color::from_hex(0xd0d2ce)),
tag: Some(Color::from_hex(0xce3e60)),
error: Some(Color::from_hex(0xce3e60)),
warning: Some(Color::from_hex(0x135879)),
info: Some(Color::from_hex(0x4c99d3)),
success: Some(Color::from_hex(0x7bb75b)),
red: Some(Color::from_hex(0xd18ea6)),
orange: Some(Color::from_hex(0xe8b32a)),
yellow: Some(Color::from_hex(0x77592e)),
green: Some(Color::from_hex(0x767e2b)),
cyan: Some(Color::from_hex(0x389aac)),
blue: Some(Color::from_hex(0x76bbca)),
purple: Some(Color::from_hex(0x135879)),
magenta: Some(Color::from_hex(0x5f4190)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1d1d1d),
base01: Color::from_hex(0x343835),
base02: Color::from_hex(0x585a58),
base03: Color::from_hex(0x80827f),
base04: Color::from_hex(0xa8aaa7),
base05: Color::from_hex(0xd0d2ce),
base06: Color::from_hex(0xf9faf6),
base07: Color::from_hex(0xb1b5ae),
base08: Color::from_hex(0xce3e60),
base09: Color::from_hex(0xe8b32a),
base0a: Color::from_hex(0x135879),
base0b: Color::from_hex(0x7bb75b),
base0c: Color::from_hex(0x389aac),
base0d: Color::from_hex(0x4c99d3),
base0e: Color::from_hex(0xa57fc4),
base0f: Color::from_hex(0x671f30),
},
base10: Color::from_hex(0x3a3c3a),
base11: Color::from_hex(0x1d1e1d),
base12: Color::from_hex(0xd18ea6),
base13: Color::from_hex(0x77592e),
base14: Color::from_hex(0x767e2b),
base15: Color::from_hex(0x76bbca),
base16: Color::from_hex(0x135879),
base17: Color::from_hex(0x5f4190),
};