use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Lab Fox"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e2e2e),
fg: Color::from_hex(0xcfd0d0),
cursor: Some(Color::from_hex(0xcfd0d0)),
selection: Some(Color::from_hex(0x454545)),
line_highlight: Some(Color::from_hex(0x2e2e2e)),
gutter: Some(Color::from_hex(0x737373)),
statusbar_bg: Some(Color::from_hex(0x2e2e2e)),
statusbar_fg: Some(Color::from_hex(0xa1a2a2)),
comment: Some(Color::from_hex(0x737373)),
keyword: Some(Color::from_hex(0x380d75)),
string: Some(Color::from_hex(0x3eb383)),
function: Some(Color::from_hex(0xdb3b21)),
variable: Some(Color::from_hex(0xfc6d26)),
r#type: Some(Color::from_hex(0xdb501f)),
constant: Some(Color::from_hex(0xfca121)),
operator: Some(Color::from_hex(0xcfd0d0)),
tag: Some(Color::from_hex(0xfc6d26)),
error: Some(Color::from_hex(0xfc6d26)),
warning: Some(Color::from_hex(0xdb501f)),
info: Some(Color::from_hex(0xdb3b21)),
success: Some(Color::from_hex(0x3eb383)),
red: Some(Color::from_hex(0xff6517)),
orange: Some(Color::from_hex(0xfca121)),
yellow: Some(Color::from_hex(0xfca012)),
green: Some(Color::from_hex(0x52e9a8)),
cyan: Some(Color::from_hex(0x6e49cb)),
blue: Some(Color::from_hex(0x7d53e7)),
purple: Some(Color::from_hex(0xdb501f)),
magenta: Some(Color::from_hex(0x441090)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x2e2e2e),
base01: Color::from_hex(0x2e2e2e),
base02: Color::from_hex(0x454545),
base03: Color::from_hex(0x737373),
base04: Color::from_hex(0xa1a2a2),
base05: Color::from_hex(0xcfd0d0),
base06: Color::from_hex(0xfeffff),
base07: Color::from_hex(0xfeffff),
base08: Color::from_hex(0xfc6d26),
base09: Color::from_hex(0xfca121),
base0a: Color::from_hex(0xdb501f),
base0b: Color::from_hex(0x3eb383),
base0c: Color::from_hex(0x6e49cb),
base0d: Color::from_hex(0xdb3b21),
base0e: Color::from_hex(0x380d75),
base0f: Color::from_hex(0x7e3613),
},
base10: Color::from_hex(0x2e2e2e),
base11: Color::from_hex(0x171717),
base12: Color::from_hex(0xff6517),
base13: Color::from_hex(0xfca012),
base14: Color::from_hex(0x52e9a8),
base15: Color::from_hex(0x7d53e7),
base16: Color::from_hex(0xdb501f),
base17: Color::from_hex(0x441090),
};