use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Slate"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0x42d3e8),
cursor: Some(Color::from_hex(0x42d3e8)),
selection: Some(Color::from_hex(0xffffff)),
line_highlight: Some(Color::from_hex(0x212121)),
gutter: Some(Color::from_hex(0xc0f1f8)),
statusbar_bg: Some(Color::from_hex(0x212121)),
statusbar_fg: Some(Color::from_hex(0x81e2f0)),
comment: Some(Color::from_hex(0xc0f1f8)),
keyword: Some(Color::from_hex(0xa380d3)),
string: Some(Color::from_hex(0x80d778)),
function: Some(Color::from_hex(0x254a49)),
variable: Some(Color::from_hex(0xe1a7bf)),
r#type: Some(Color::from_hex(0x79afd2)),
constant: Some(Color::from_hex(0xc4c9bf)),
operator: Some(Color::from_hex(0x42d3e8)),
tag: Some(Color::from_hex(0xe1a7bf)),
error: Some(Color::from_hex(0xe1a7bf)),
warning: Some(Color::from_hex(0x79afd2)),
info: Some(Color::from_hex(0x254a49)),
success: Some(Color::from_hex(0x80d778)),
red: Some(Color::from_hex(0xffccd8)),
orange: Some(Color::from_hex(0xc4c9bf)),
yellow: Some(Color::from_hex(0xd0cbc9)),
green: Some(Color::from_hex(0xbdffa8)),
cyan: Some(Color::from_hex(0x14ab9c)),
blue: Some(Color::from_hex(0x8bdee0)),
purple: Some(Color::from_hex(0x79afd2)),
magenta: Some(Color::from_hex(0xc4a7d8)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x212121),
base01: Color::from_hex(0x212121),
base02: Color::from_hex(0xffffff),
base03: Color::from_hex(0xc0f1f8),
base04: Color::from_hex(0x81e2f0),
base05: Color::from_hex(0x42d3e8),
base06: Color::from_hex(0x02c4e0),
base07: Color::from_hex(0xe0e0e0),
base08: Color::from_hex(0xe1a7bf),
base09: Color::from_hex(0xc4c9bf),
base0a: Color::from_hex(0x79afd2),
base0b: Color::from_hex(0x80d778),
base0c: Color::from_hex(0x14ab9c),
base0d: Color::from_hex(0x254a49),
base0e: Color::from_hex(0xa380d3),
base0f: Color::from_hex(0x70535f),
},
base10: Color::from_hex(0xaaaaaa),
base11: Color::from_hex(0x555555),
base12: Color::from_hex(0xffccd8),
base13: Color::from_hex(0xd0cbc9),
base14: Color::from_hex(0xbdffa8),
base15: Color::from_hex(0x8bdee0),
base16: Color::from_hex(0x79afd2),
base17: Color::from_hex(0xc4a7d8),
};