use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Nocturnal Winter"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x0d0d17),
fg: Color::from_hex(0xdcdcdc),
cursor: Some(Color::from_hex(0xdcdcdc)),
selection: Some(Color::from_hex(0x7f7f7f)),
line_highlight: Some(Color::from_hex(0x4c4c4c)),
gutter: Some(Color::from_hex(0x9e9e9e)),
statusbar_bg: Some(Color::from_hex(0x4c4c4c)),
statusbar_fg: Some(Color::from_hex(0xbdbdbd)),
comment: Some(Color::from_hex(0x9e9e9e)),
keyword: Some(Color::from_hex(0xfe2a6c)),
string: Some(Color::from_hex(0x08cd7d)),
function: Some(Color::from_hex(0x3081df)),
variable: Some(Color::from_hex(0xf12d52)),
r#type: Some(Color::from_hex(0x6095fe)),
constant: Some(Color::from_hex(0xf5f079)),
operator: Some(Color::from_hex(0xdcdcdc)),
tag: Some(Color::from_hex(0xf12d52)),
error: Some(Color::from_hex(0xf12d52)),
warning: Some(Color::from_hex(0x6095fe)),
info: Some(Color::from_hex(0x3081df)),
success: Some(Color::from_hex(0x08cd7d)),
red: Some(Color::from_hex(0xf16c85)),
orange: Some(Color::from_hex(0xf5f079)),
yellow: Some(Color::from_hex(0xfefb67)),
green: Some(Color::from_hex(0x0ae78d)),
cyan: Some(Color::from_hex(0x09c87a)),
blue: Some(Color::from_hex(0x0ae78d)),
purple: Some(Color::from_hex(0x6095fe)),
magenta: Some(Color::from_hex(0xff78a2)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x0d0d17),
base01: Color::from_hex(0x4c4c4c),
base02: Color::from_hex(0x7f7f7f),
base03: Color::from_hex(0x9e9e9e),
base04: Color::from_hex(0xbdbdbd),
base05: Color::from_hex(0xdcdcdc),
base06: Color::from_hex(0xfbfbfb),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xf12d52),
base09: Color::from_hex(0xf5f079),
base0a: Color::from_hex(0x6095fe),
base0b: Color::from_hex(0x08cd7d),
base0c: Color::from_hex(0x09c87a),
base0d: Color::from_hex(0x3081df),
base0e: Color::from_hex(0xfe2a6c),
base0f: Color::from_hex(0x781629),
},
base10: Color::from_hex(0x545454),
base11: Color::from_hex(0x2a2a2a),
base12: Color::from_hex(0xf16c85),
base13: Color::from_hex(0xfefb67),
base14: Color::from_hex(0x0ae78d),
base15: Color::from_hex(0x0ae78d),
base16: Color::from_hex(0x6095fe),
base17: Color::from_hex(0xff78a2),
};