use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Eldritch"),
author: Cow::Borrowed("https://github.com/eldritch-theme"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x212337),
fg: Color::from_hex(0xebfafa),
cursor: Some(Color::from_hex(0xebfafa)),
selection: Some(Color::from_hex(0x3b4261)),
line_highlight: Some(Color::from_hex(0x323449)),
gutter: Some(Color::from_hex(0x7081d0)),
statusbar_bg: Some(Color::from_hex(0x323449)),
statusbar_fg: Some(Color::from_hex(0xa1abe0)),
comment: Some(Color::from_hex(0x7081d0)),
keyword: Some(Color::from_hex(0xa48cf2)),
string: Some(Color::from_hex(0x37f499)),
function: Some(Color::from_hex(0x39ddfd)),
variable: Some(Color::from_hex(0xf16c75)),
r#type: Some(Color::from_hex(0xf1fc79)),
constant: Some(Color::from_hex(0xf7c67f)),
operator: Some(Color::from_hex(0xebfafa)),
tag: Some(Color::from_hex(0xf16c75)),
error: Some(Color::from_hex(0xf16c75)),
warning: Some(Color::from_hex(0xf1fc79)),
info: Some(Color::from_hex(0x39ddfd)),
success: Some(Color::from_hex(0x37f499)),
red: Some(Color::from_hex(0xf89a9d)),
orange: Some(Color::from_hex(0xf7c67f)),
yellow: Some(Color::from_hex(0xf9e9a1)),
green: Some(Color::from_hex(0x6fffc1)),
cyan: Some(Color::from_hex(0x04d1f9)),
blue: Some(Color::from_hex(0x6ce9ff)),
purple: Some(Color::from_hex(0x7ae9ff)),
magenta: Some(Color::from_hex(0xd4b3ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x212337),
base01: Color::from_hex(0x323449),
base02: Color::from_hex(0x3b4261),
base03: Color::from_hex(0x7081d0),
base04: Color::from_hex(0xa1abe0),
base05: Color::from_hex(0xebfafa),
base06: Color::from_hex(0xf0f2f4),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xf16c75),
base09: Color::from_hex(0xf7c67f),
base0a: Color::from_hex(0xf1fc79),
base0b: Color::from_hex(0x37f499),
base0c: Color::from_hex(0x04d1f9),
base0d: Color::from_hex(0x39ddfd),
base0e: Color::from_hex(0xa48cf2),
base0f: Color::from_hex(0xf265b5),
},
base10: Color::from_hex(0x171928),
base11: Color::from_hex(0x0e0f1a),
base12: Color::from_hex(0xf89a9d),
base13: Color::from_hex(0xf9e9a1),
base14: Color::from_hex(0x6fffc1),
base15: Color::from_hex(0x6ce9ff),
base16: Color::from_hex(0x7ae9ff),
base17: Color::from_hex(0xd4b3ff),
};