use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Royal"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x100814),
fg: Color::from_hex(0x49425a),
cursor: Some(Color::from_hex(0x49425a)),
selection: Some(Color::from_hex(0x312d3c)),
line_highlight: Some(Color::from_hex(0x241f2a)),
gutter: Some(Color::from_hex(0x393446)),
statusbar_bg: Some(Color::from_hex(0x241f2a)),
statusbar_fg: Some(Color::from_hex(0x413b50)),
comment: Some(Color::from_hex(0x393446)),
keyword: Some(Color::from_hex(0x664d96)),
string: Some(Color::from_hex(0x23801c)),
function: Some(Color::from_hex(0x6480af)),
variable: Some(Color::from_hex(0x90274b)),
r#type: Some(Color::from_hex(0x8fb9f9)),
constant: Some(Color::from_hex(0xb49d27)),
operator: Some(Color::from_hex(0x49425a)),
tag: Some(Color::from_hex(0x90274b)),
error: Some(Color::from_hex(0x90274b)),
warning: Some(Color::from_hex(0x8fb9f9)),
info: Some(Color::from_hex(0x6480af)),
success: Some(Color::from_hex(0x23801c)),
red: Some(Color::from_hex(0xd4346c)),
orange: Some(Color::from_hex(0xb49d27)),
yellow: Some(Color::from_hex(0xfde83a)),
green: Some(Color::from_hex(0x2cd845)),
cyan: Some(Color::from_hex(0x8aaabd)),
blue: Some(Color::from_hex(0xabd3eb)),
purple: Some(Color::from_hex(0x8fb9f9)),
magenta: Some(Color::from_hex(0xa479e2)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x100814),
base01: Color::from_hex(0x241f2a),
base02: Color::from_hex(0x312d3c),
base03: Color::from_hex(0x393446),
base04: Color::from_hex(0x413b50),
base05: Color::from_hex(0x49425a),
base06: Color::from_hex(0x514965),
base07: Color::from_hex(0x9d8bbd),
base08: Color::from_hex(0x90274b),
base09: Color::from_hex(0xb49d27),
base0a: Color::from_hex(0x8fb9f9),
base0b: Color::from_hex(0x23801c),
base0c: Color::from_hex(0x8aaabd),
base0d: Color::from_hex(0x6480af),
base0e: Color::from_hex(0x664d96),
base0f: Color::from_hex(0x481325),
},
base10: Color::from_hex(0x201e28),
base11: Color::from_hex(0x100f14),
base12: Color::from_hex(0xd4346c),
base13: Color::from_hex(0xfde83a),
base14: Color::from_hex(0x2cd845),
base15: Color::from_hex(0xabd3eb),
base16: Color::from_hex(0x8fb9f9),
base17: Color::from_hex(0xa479e2),
};