use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("deep"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x080808),
fg: Color::from_hex(0xbcbcbc),
cursor: Some(Color::from_hex(0xbcbcbc)),
selection: Some(Color::from_hex(0x535353)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x767676)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x999999)),
comment: Some(Color::from_hex(0x767676)),
keyword: Some(Color::from_hex(0xaf51d9)),
string: Some(Color::from_hex(0x1cd815)),
function: Some(Color::from_hex(0x5665fe)),
variable: Some(Color::from_hex(0xd60005)),
r#type: Some(Color::from_hex(0x9fa8fe)),
constant: Some(Color::from_hex(0xd9bc25)),
operator: Some(Color::from_hex(0xbcbcbc)),
tag: Some(Color::from_hex(0xd60005)),
error: Some(Color::from_hex(0xd60005)),
warning: Some(Color::from_hex(0x9fa8fe)),
info: Some(Color::from_hex(0x5665fe)),
success: Some(Color::from_hex(0x1cd815)),
red: Some(Color::from_hex(0xfb0006)),
orange: Some(Color::from_hex(0xd9bc25)),
yellow: Some(Color::from_hex(0xfedc2b)),
green: Some(Color::from_hex(0x21fe17)),
cyan: Some(Color::from_hex(0x4fd2d9)),
blue: Some(Color::from_hex(0x8cf9fe)),
purple: Some(Color::from_hex(0x9fa8fe)),
magenta: Some(Color::from_hex(0xe099fe)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x080808),
base01: Color::from_hex(0x000000),
base02: Color::from_hex(0x535353),
base03: Color::from_hex(0x767676),
base04: Color::from_hex(0x999999),
base05: Color::from_hex(0xbcbcbc),
base06: Color::from_hex(0xdfdfdf),
base07: Color::from_hex(0xfffefe),
base08: Color::from_hex(0xd60005),
base09: Color::from_hex(0xd9bc25),
base0a: Color::from_hex(0x9fa8fe),
base0b: Color::from_hex(0x1cd815),
base0c: Color::from_hex(0x4fd2d9),
base0d: Color::from_hex(0x5665fe),
base0e: Color::from_hex(0xaf51d9),
base0f: Color::from_hex(0x6b0002),
},
base10: Color::from_hex(0x373737),
base11: Color::from_hex(0x1b1b1b),
base12: Color::from_hex(0xfb0006),
base13: Color::from_hex(0xfedc2b),
base14: Color::from_hex(0x21fe17),
base15: Color::from_hex(0x8cf9fe),
base16: Color::from_hex(0x9fa8fe),
base17: Color::from_hex(0xe099fe),
};