use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Unikitty"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0xff7ad3),
fg: Color::from_hex(0xb9b1b8),
cursor: Some(Color::from_hex(0xb9b1b8)),
selection: Some(Color::from_hex(0x424242)),
line_highlight: Some(Color::from_hex(0x0c0c0c)),
gutter: Some(Color::from_hex(0x696769)),
statusbar_bg: Some(Color::from_hex(0x0c0c0c)),
statusbar_fg: Some(Color::from_hex(0x918c91)),
comment: Some(Color::from_hex(0x696769)),
keyword: Some(Color::from_hex(0xff36a2)),
string: Some(Color::from_hex(0xbafc8b)),
function: Some(Color::from_hex(0x145fcd)),
variable: Some(Color::from_hex(0xa80f20)),
r#type: Some(Color::from_hex(0xeedf4b)),
constant: Some(Color::from_hex(0xeeaa4b)),
operator: Some(Color::from_hex(0xb9b1b8)),
tag: Some(Color::from_hex(0xa80f20)),
error: Some(Color::from_hex(0xa80f20)),
warning: Some(Color::from_hex(0xeedf4b)),
info: Some(Color::from_hex(0x145fcd)),
success: Some(Color::from_hex(0xbafc8b)),
red: Some(Color::from_hex(0xd81329)),
orange: Some(Color::from_hex(0xeeaa4b)),
yellow: Some(Color::from_hex(0xffee50)),
green: Some(Color::from_hex(0xd2ffaf)),
cyan: Some(Color::from_hex(0x6bd0bc)),
blue: Some(Color::from_hex(0x79ebd5)),
purple: Some(Color::from_hex(0x0074ea)),
magenta: Some(Color::from_hex(0xfdd5e5)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xff7ad3),
base01: Color::from_hex(0x0c0c0c),
base02: Color::from_hex(0x424242),
base03: Color::from_hex(0x696769),
base04: Color::from_hex(0x918c91),
base05: Color::from_hex(0xb9b1b8),
base06: Color::from_hex(0xe1d6e0),
base07: Color::from_hex(0xfff2fd),
base08: Color::from_hex(0xa80f20),
base09: Color::from_hex(0xeeaa4b),
base0a: Color::from_hex(0xeedf4b),
base0b: Color::from_hex(0xbafc8b),
base0c: Color::from_hex(0x6bd0bc),
base0d: Color::from_hex(0x145fcd),
base0e: Color::from_hex(0xff36a2),
base0f: Color::from_hex(0x540710),
},
base10: Color::from_hex(0x2c2c2c),
base11: Color::from_hex(0x161616),
base12: Color::from_hex(0xd81329),
base13: Color::from_hex(0xffee50),
base14: Color::from_hex(0xd2ffaf),
base15: Color::from_hex(0x79ebd5),
base16: Color::from_hex(0x0074ea),
base17: Color::from_hex(0xfdd5e5),
};