use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Paul Millr"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xa5a5a5),
cursor: Some(Color::from_hex(0xa5a5a5)),
selection: Some(Color::from_hex(0x666666)),
line_highlight: Some(Color::from_hex(0x2a2a2a)),
gutter: Some(Color::from_hex(0x7b7b7b)),
statusbar_bg: Some(Color::from_hex(0x2a2a2a)),
statusbar_fg: Some(Color::from_hex(0x909090)),
comment: Some(Color::from_hex(0x7b7b7b)),
keyword: Some(Color::from_hex(0xb349be)),
string: Some(Color::from_hex(0x79ff0f)),
function: Some(Color::from_hex(0x386bd7)),
variable: Some(Color::from_hex(0xff0000)),
r#type: Some(Color::from_hex(0x709aed)),
constant: Some(Color::from_hex(0xe7bf00)),
operator: Some(Color::from_hex(0xa5a5a5)),
tag: Some(Color::from_hex(0xff0000)),
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0x709aed)),
info: Some(Color::from_hex(0x386bd7)),
success: Some(Color::from_hex(0x79ff0f)),
red: Some(Color::from_hex(0xff0080)),
orange: Some(Color::from_hex(0xe7bf00)),
yellow: Some(Color::from_hex(0xf3d64e)),
green: Some(Color::from_hex(0x66ff66)),
cyan: Some(Color::from_hex(0x66ccff)),
blue: Some(Color::from_hex(0x79dff2)),
purple: Some(Color::from_hex(0x709aed)),
magenta: Some(Color::from_hex(0xdb67e6)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x000000),
base01: Color::from_hex(0x2a2a2a),
base02: Color::from_hex(0x666666),
base03: Color::from_hex(0x7b7b7b),
base04: Color::from_hex(0x909090),
base05: Color::from_hex(0xa5a5a5),
base06: Color::from_hex(0xbbbbbb),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xff0000),
base09: Color::from_hex(0xe7bf00),
base0a: Color::from_hex(0x709aed),
base0b: Color::from_hex(0x79ff0f),
base0c: Color::from_hex(0x66ccff),
base0d: Color::from_hex(0x386bd7),
base0e: Color::from_hex(0xb349be),
base0f: Color::from_hex(0x7f0000),
},
base10: Color::from_hex(0x444444),
base11: Color::from_hex(0x222222),
base12: Color::from_hex(0xff0080),
base13: Color::from_hex(0xf3d64e),
base14: Color::from_hex(0x66ff66),
base15: Color::from_hex(0x79dff2),
base16: Color::from_hex(0x709aed),
base17: Color::from_hex(0xdb67e6),
};