use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Wryan"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x101010),
fg: Color::from_hex(0x768488),
cursor: Some(Color::from_hex(0x768488)),
selection: Some(Color::from_hex(0x3d3d3d)),
line_highlight: Some(Color::from_hex(0x333333)),
gutter: Some(Color::from_hex(0x505456)),
statusbar_bg: Some(Color::from_hex(0x333333)),
statusbar_fg: Some(Color::from_hex(0x636c6f)),
comment: Some(Color::from_hex(0x505456)),
keyword: Some(Color::from_hex(0x5e468c)),
string: Some(Color::from_hex(0x287373)),
function: Some(Color::from_hex(0x395573)),
variable: Some(Color::from_hex(0x8c4665)),
r#type: Some(Color::from_hex(0x477ab3)),
constant: Some(Color::from_hex(0x7c7c99)),
operator: Some(Color::from_hex(0x768488)),
tag: Some(Color::from_hex(0x8c4665)),
error: Some(Color::from_hex(0x8c4665)),
warning: Some(Color::from_hex(0x477ab3)),
info: Some(Color::from_hex(0x395573)),
success: Some(Color::from_hex(0x287373)),
red: Some(Color::from_hex(0xbf4d80)),
orange: Some(Color::from_hex(0x7c7c99)),
yellow: Some(Color::from_hex(0x9e9ecb)),
green: Some(Color::from_hex(0x53a6a6)),
cyan: Some(Color::from_hex(0x31658c)),
blue: Some(Color::from_hex(0x6096bf)),
purple: Some(Color::from_hex(0x477ab3)),
magenta: Some(Color::from_hex(0x7e62b3)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x101010),
base01: Color::from_hex(0x333333),
base02: Color::from_hex(0x3d3d3d),
base03: Color::from_hex(0x505456),
base04: Color::from_hex(0x636c6f),
base05: Color::from_hex(0x768488),
base06: Color::from_hex(0x899ca1),
base07: Color::from_hex(0xc0c0c0),
base08: Color::from_hex(0x8c4665),
base09: Color::from_hex(0x7c7c99),
base0a: Color::from_hex(0x477ab3),
base0b: Color::from_hex(0x287373),
base0c: Color::from_hex(0x31658c),
base0d: Color::from_hex(0x395573),
base0e: Color::from_hex(0x5e468c),
base0f: Color::from_hex(0x462332),
},
base10: Color::from_hex(0x282828),
base11: Color::from_hex(0x141414),
base12: Color::from_hex(0xbf4d80),
base13: Color::from_hex(0x9e9ecb),
base14: Color::from_hex(0x53a6a6),
base15: Color::from_hex(0x6096bf),
base16: Color::from_hex(0x477ab3),
base17: Color::from_hex(0x7e62b3),
};