use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Square"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1a1a1a),
fg: Color::from_hex(0xbababa),
cursor: Some(Color::from_hex(0xbababa)),
selection: Some(Color::from_hex(0x141414)),
line_highlight: Some(Color::from_hex(0x050505)),
gutter: Some(Color::from_hex(0x4b4b4b)),
statusbar_bg: Some(Color::from_hex(0x050505)),
statusbar_fg: Some(Color::from_hex(0x838383)),
comment: Some(Color::from_hex(0x4b4b4b)),
keyword: Some(Color::from_hex(0x75507b)),
string: Some(Color::from_hex(0xb6377d)),
function: Some(Color::from_hex(0xa9cdeb)),
variable: Some(Color::from_hex(0xe9897c)),
r#type: Some(Color::from_hex(0xb6defb)),
constant: Some(Color::from_hex(0xecebbe)),
operator: Some(Color::from_hex(0xbababa)),
tag: Some(Color::from_hex(0xe9897c)),
error: Some(Color::from_hex(0xe9897c)),
warning: Some(Color::from_hex(0xb6defb)),
info: Some(Color::from_hex(0xa9cdeb)),
success: Some(Color::from_hex(0xb6377d)),
red: Some(Color::from_hex(0xf99286)),
orange: Some(Color::from_hex(0xecebbe)),
yellow: Some(Color::from_hex(0xfcfbcc)),
green: Some(Color::from_hex(0xc3f786)),
cyan: Some(Color::from_hex(0xc9caec)),
blue: Some(Color::from_hex(0xd7d9fc)),
purple: Some(Color::from_hex(0xb6defb)),
magenta: Some(Color::from_hex(0xad7fa8)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1a1a1a),
base01: Color::from_hex(0x050505),
base02: Color::from_hex(0x141414),
base03: Color::from_hex(0x4b4b4b),
base04: Color::from_hex(0x838383),
base05: Color::from_hex(0xbababa),
base06: Color::from_hex(0xf2f2f2),
base07: Color::from_hex(0xe2e2e2),
base08: Color::from_hex(0xe9897c),
base09: Color::from_hex(0xecebbe),
base0a: Color::from_hex(0xb6defb),
base0b: Color::from_hex(0xb6377d),
base0c: Color::from_hex(0xc9caec),
base0d: Color::from_hex(0xa9cdeb),
base0e: Color::from_hex(0x75507b),
base0f: Color::from_hex(0x74443e),
},
base10: Color::from_hex(0x0d0d0d),
base11: Color::from_hex(0x060606),
base12: Color::from_hex(0xf99286),
base13: Color::from_hex(0xfcfbcc),
base14: Color::from_hex(0xc3f786),
base15: Color::from_hex(0xd7d9fc),
base16: Color::from_hex(0xb6defb),
base17: Color::from_hex(0xad7fa8),
};