use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Highway"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x212224),
fg: Color::from_hex(0xc8c5c4),
cursor: Some(Color::from_hex(0xc8c5c4)),
selection: Some(Color::from_hex(0x5c4f49)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x807672)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xa49e9b)),
comment: Some(Color::from_hex(0x807672)),
keyword: Some(Color::from_hex(0x6a2674)),
string: Some(Color::from_hex(0x128033)),
function: Some(Color::from_hex(0x006ab3)),
variable: Some(Color::from_hex(0xcf0d17)),
r#type: Some(Color::from_hex(0x4fc2fd)),
constant: Some(Color::from_hex(0xffca3d)),
operator: Some(Color::from_hex(0xc8c5c4)),
tag: Some(Color::from_hex(0xcf0d17)),
error: Some(Color::from_hex(0xcf0d17)),
warning: Some(Color::from_hex(0x4fc2fd)),
info: Some(Color::from_hex(0x006ab3)),
success: Some(Color::from_hex(0x128033)),
red: Some(Color::from_hex(0xef7d17)),
orange: Some(Color::from_hex(0xffca3d)),
yellow: Some(Color::from_hex(0xfff11f)),
green: Some(Color::from_hex(0xb1d130)),
cyan: Some(Color::from_hex(0x384563)),
blue: Some(Color::from_hex(0x5c4f49)),
purple: Some(Color::from_hex(0x4fc2fd)),
magenta: Some(Color::from_hex(0xde0070)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x212224),
base01: Color::from_hex(0x000000),
base02: Color::from_hex(0x5c4f49),
base03: Color::from_hex(0x807672),
base04: Color::from_hex(0xa49e9b),
base05: Color::from_hex(0xc8c5c4),
base06: Color::from_hex(0xededed),
base07: Color::from_hex(0xfefffe),
base08: Color::from_hex(0xcf0d17),
base09: Color::from_hex(0xffca3d),
base0a: Color::from_hex(0x4fc2fd),
base0b: Color::from_hex(0x128033),
base0c: Color::from_hex(0x384563),
base0d: Color::from_hex(0x006ab3),
base0e: Color::from_hex(0x6a2674),
base0f: Color::from_hex(0x67060b),
},
base10: Color::from_hex(0x3d3430),
base11: Color::from_hex(0x1e1a18),
base12: Color::from_hex(0xef7d17),
base13: Color::from_hex(0xfff11f),
base14: Color::from_hex(0xb1d130),
base15: Color::from_hex(0x5c4f49),
base16: Color::from_hex(0x4fc2fd),
base17: Color::from_hex(0xde0070),
};