use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Space Gray Eighties"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0xc7c6c2),
cursor: Some(Color::from_hex(0xc7c6c2)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x15171c)),
gutter: Some(Color::from_hex(0x7b7a79)),
statusbar_bg: Some(Color::from_hex(0x15171c)),
statusbar_fg: Some(Color::from_hex(0xa1a09e)),
comment: Some(Color::from_hex(0x7b7a79)),
keyword: Some(Color::from_hex(0xbf83c0)),
string: Some(Color::from_hex(0x80a763)),
function: Some(Color::from_hex(0x5485c0)),
variable: Some(Color::from_hex(0xec5f67)),
r#type: Some(Color::from_hex(0x4d83d0)),
constant: Some(Color::from_hex(0xfdc253)),
operator: Some(Color::from_hex(0xc7c6c2)),
tag: Some(Color::from_hex(0xec5f67)),
error: Some(Color::from_hex(0xec5f67)),
warning: Some(Color::from_hex(0x4d83d0)),
info: Some(Color::from_hex(0x5485c0)),
success: Some(Color::from_hex(0x80a763)),
red: Some(Color::from_hex(0xff6973)),
orange: Some(Color::from_hex(0xfdc253)),
yellow: Some(Color::from_hex(0xffd156)),
green: Some(Color::from_hex(0x93d393)),
cyan: Some(Color::from_hex(0x57c2c0)),
blue: Some(Color::from_hex(0x83e8e4)),
purple: Some(Color::from_hex(0x4d83d0)),
magenta: Some(Color::from_hex(0xff55ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x212121),
base01: Color::from_hex(0x15171c),
base02: Color::from_hex(0x555555),
base03: Color::from_hex(0x7b7a79),
base04: Color::from_hex(0xa1a09e),
base05: Color::from_hex(0xc7c6c2),
base06: Color::from_hex(0xeeece7),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xec5f67),
base09: Color::from_hex(0xfdc253),
base0a: Color::from_hex(0x4d83d0),
base0b: Color::from_hex(0x80a763),
base0c: Color::from_hex(0x57c2c0),
base0d: Color::from_hex(0x5485c0),
base0e: Color::from_hex(0xbf83c0),
base0f: Color::from_hex(0x762f33),
},
base10: Color::from_hex(0x383838),
base11: Color::from_hex(0x1c1c1c),
base12: Color::from_hex(0xff6973),
base13: Color::from_hex(0xffd156),
base14: Color::from_hex(0x93d393),
base15: Color::from_hex(0x83e8e4),
base16: Color::from_hex(0x4d83d0),
base17: Color::from_hex(0xff55ff),
};