use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Violet Dark"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1b1d1f),
fg: Color::from_hex(0xa7a59f),
cursor: Some(Color::from_hex(0xa7a59f)),
selection: Some(Color::from_hex(0x45484b)),
line_highlight: Some(Color::from_hex(0x56595c)),
gutter: Some(Color::from_hex(0x656767)),
statusbar_bg: Some(Color::from_hex(0x56595c)),
statusbar_fg: Some(Color::from_hex(0x868683)),
comment: Some(Color::from_hex(0x656767)),
keyword: Some(Color::from_hex(0xd13a82)),
string: Some(Color::from_hex(0x85981c)),
function: Some(Color::from_hex(0x2e8bce)),
variable: Some(Color::from_hex(0xc94c22)),
r#type: Some(Color::from_hex(0x2075c7)),
constant: Some(Color::from_hex(0xb4881d)),
operator: Some(Color::from_hex(0xa7a59f)),
tag: Some(Color::from_hex(0xc94c22)),
error: Some(Color::from_hex(0xc94c22)),
warning: Some(Color::from_hex(0x2075c7)),
info: Some(Color::from_hex(0x2e8bce)),
success: Some(Color::from_hex(0x85981c)),
red: Some(Color::from_hex(0xbd3612)),
orange: Some(Color::from_hex(0xb4881d)),
yellow: Some(Color::from_hex(0xa57704)),
green: Some(Color::from_hex(0x728903)),
cyan: Some(Color::from_hex(0x32a198)),
blue: Some(Color::from_hex(0x259185)),
purple: Some(Color::from_hex(0x2075c7)),
magenta: Some(Color::from_hex(0xc61b6e)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1b1d1f),
base01: Color::from_hex(0x56595c),
base02: Color::from_hex(0x45484b),
base03: Color::from_hex(0x656767),
base04: Color::from_hex(0x868683),
base05: Color::from_hex(0xa7a59f),
base06: Color::from_hex(0xc8c5bc),
base07: Color::from_hex(0xc8c5bd),
base08: Color::from_hex(0xc94c22),
base09: Color::from_hex(0xb4881d),
base0a: Color::from_hex(0x2075c7),
base0b: Color::from_hex(0x85981c),
base0c: Color::from_hex(0x32a198),
base0d: Color::from_hex(0x2e8bce),
base0e: Color::from_hex(0xd13a82),
base0f: Color::from_hex(0x642611),
},
base10: Color::from_hex(0x2e3032),
base11: Color::from_hex(0x171819),
base12: Color::from_hex(0xbd3612),
base13: Color::from_hex(0xa57704),
base14: Color::from_hex(0x728903),
base15: Color::from_hex(0x259185),
base16: Color::from_hex(0x2075c7),
base17: Color::from_hex(0xc61b6e),
};