use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Blue Matrix"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0f1115),
fg: Color::from_hex(0xafafaf),
cursor: Some(Color::from_hex(0xafafaf)),
selection: Some(Color::from_hex(0x676767)),
line_highlight: Some(Color::from_hex(0x101116)),
gutter: Some(Color::from_hex(0x7f7f7f)),
statusbar_bg: Some(Color::from_hex(0x101116)),
statusbar_fg: Some(Color::from_hex(0x979797)),
comment: Some(Color::from_hex(0x7f7f7f)),
keyword: Some(Color::from_hex(0xd47bfe)),
string: Some(Color::from_hex(0x00ff9b)),
function: Some(Color::from_hex(0x00b0fe)),
variable: Some(Color::from_hex(0xff567f)),
r#type: Some(Color::from_hex(0x6871ff)),
constant: Some(Color::from_hex(0xfefc57)),
operator: Some(Color::from_hex(0xafafaf)),
tag: Some(Color::from_hex(0xff567f)),
error: Some(Color::from_hex(0xff567f)),
warning: Some(Color::from_hex(0x6871ff)),
info: Some(Color::from_hex(0x00b0fe)),
success: Some(Color::from_hex(0x00ff9b)),
red: Some(Color::from_hex(0xff6d67)),
orange: Some(Color::from_hex(0xfefc57)),
yellow: Some(Color::from_hex(0xfefb67)),
green: Some(Color::from_hex(0x5ff967)),
cyan: Some(Color::from_hex(0x75c1fe)),
blue: Some(Color::from_hex(0x5ffdff)),
purple: Some(Color::from_hex(0x6871ff)),
magenta: Some(Color::from_hex(0xd582eb)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x0f1115),
base01: Color::from_hex(0x101116),
base02: Color::from_hex(0x676767),
base03: Color::from_hex(0x7f7f7f),
base04: Color::from_hex(0x979797),
base05: Color::from_hex(0xafafaf),
base06: Color::from_hex(0xc7c7c7),
base07: Color::from_hex(0xfeffff),
base08: Color::from_hex(0xff567f),
base09: Color::from_hex(0xfefc57),
base0a: Color::from_hex(0x6871ff),
base0b: Color::from_hex(0x00ff9b),
base0c: Color::from_hex(0x75c1fe),
base0d: Color::from_hex(0x00b0fe),
base0e: Color::from_hex(0xd47bfe),
base0f: Color::from_hex(0x7f2b3f),
},
base10: Color::from_hex(0x444444),
base11: Color::from_hex(0x222222),
base12: Color::from_hex(0xff6d67),
base13: Color::from_hex(0xfefb67),
base14: Color::from_hex(0x5ff967),
base15: Color::from_hex(0x5ffdff),
base16: Color::from_hex(0x6871ff),
base17: Color::from_hex(0xd582eb),
};