use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Grape"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x161423),
fg: Color::from_hex(0x8c8a92),
cursor: Some(Color::from_hex(0x8c8a92)),
selection: Some(Color::from_hex(0x58506a)),
line_highlight: Some(Color::from_hex(0x2d283e)),
gutter: Some(Color::from_hex(0x696377)),
statusbar_bg: Some(Color::from_hex(0x2d283e)),
statusbar_fg: Some(Color::from_hex(0x7b7785)),
comment: Some(Color::from_hex(0x696377)),
keyword: Some(Color::from_hex(0x8c35c8)),
string: Some(Color::from_hex(0x1fa91b)),
function: Some(Color::from_hex(0x487cf4)),
variable: Some(Color::from_hex(0xec2160)),
r#type: Some(Color::from_hex(0xa9bbeb)),
constant: Some(Color::from_hex(0x8ddc1f)),
operator: Some(Color::from_hex(0x8c8a92)),
tag: Some(Color::from_hex(0xec2160)),
error: Some(Color::from_hex(0xec2160)),
warning: Some(Color::from_hex(0xa9bbeb)),
info: Some(Color::from_hex(0x487cf4)),
success: Some(Color::from_hex(0x1fa91b)),
red: Some(Color::from_hex(0xf0719a)),
orange: Some(Color::from_hex(0x8ddc1f)),
yellow: Some(Color::from_hex(0xb2dc87)),
green: Some(Color::from_hex(0x52a95d)),
cyan: Some(Color::from_hex(0x3added)),
blue: Some(Color::from_hex(0x9ce3ea)),
purple: Some(Color::from_hex(0xa9bbeb)),
magenta: Some(Color::from_hex(0xac81c1)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x161423),
base01: Color::from_hex(0x2d283e),
base02: Color::from_hex(0x58506a),
base03: Color::from_hex(0x696377),
base04: Color::from_hex(0x7b7785),
base05: Color::from_hex(0x8c8a92),
base06: Color::from_hex(0x9e9ea0),
base07: Color::from_hex(0xa188f7),
base08: Color::from_hex(0xec2160),
base09: Color::from_hex(0x8ddc1f),
base0a: Color::from_hex(0xa9bbeb),
base0b: Color::from_hex(0x1fa91b),
base0c: Color::from_hex(0x3added),
base0d: Color::from_hex(0x487cf4),
base0e: Color::from_hex(0x8c35c8),
base0f: Color::from_hex(0x761030),
},
base10: Color::from_hex(0x3a3546),
base11: Color::from_hex(0x1d1a23),
base12: Color::from_hex(0xf0719a),
base13: Color::from_hex(0xb2dc87),
base14: Color::from_hex(0x52a95d),
base15: Color::from_hex(0x9ce3ea),
base16: Color::from_hex(0xa9bbeb),
base17: Color::from_hex(0xac81c1),
};