use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Desert"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x333333),
fg: Color::from_hex(0xcdbb9b),
cursor: Some(Color::from_hex(0xcdbb9b)),
selection: Some(Color::from_hex(0x555555)),
line_highlight: Some(Color::from_hex(0x4d4d4d)),
gutter: Some(Color::from_hex(0x7d776c)),
statusbar_bg: Some(Color::from_hex(0x4d4d4d)),
statusbar_fg: Some(Color::from_hex(0xa59984)),
comment: Some(Color::from_hex(0x7d776c)),
keyword: Some(Color::from_hex(0xffdead)),
string: Some(Color::from_hex(0x98fb98)),
function: Some(Color::from_hex(0xcd853f)),
variable: Some(Color::from_hex(0xff2b2b)),
r#type: Some(Color::from_hex(0x87ceff)),
constant: Some(Color::from_hex(0xf0e68c)),
operator: Some(Color::from_hex(0xcdbb9b)),
tag: Some(Color::from_hex(0xff2b2b)),
error: Some(Color::from_hex(0xff2b2b)),
warning: Some(Color::from_hex(0x87ceff)),
info: Some(Color::from_hex(0xcd853f)),
success: Some(Color::from_hex(0x98fb98)),
red: Some(Color::from_hex(0xff5555)),
orange: Some(Color::from_hex(0xf0e68c)),
yellow: Some(Color::from_hex(0xffff55)),
green: Some(Color::from_hex(0x55ff55)),
cyan: Some(Color::from_hex(0xffa0a0)),
blue: Some(Color::from_hex(0xffd700)),
purple: Some(Color::from_hex(0x87ceff)),
magenta: Some(Color::from_hex(0xff55ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x333333),
base01: Color::from_hex(0x4d4d4d),
base02: Color::from_hex(0x555555),
base03: Color::from_hex(0x7d776c),
base04: Color::from_hex(0xa59984),
base05: Color::from_hex(0xcdbb9b),
base06: Color::from_hex(0xf5deb3),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xff2b2b),
base09: Color::from_hex(0xf0e68c),
base0a: Color::from_hex(0x87ceff),
base0b: Color::from_hex(0x98fb98),
base0c: Color::from_hex(0xffa0a0),
base0d: Color::from_hex(0xcd853f),
base0e: Color::from_hex(0xffdead),
base0f: Color::from_hex(0x7f1515),
},
base10: Color::from_hex(0x383838),
base11: Color::from_hex(0x1c1c1c),
base12: Color::from_hex(0xff5555),
base13: Color::from_hex(0xffff55),
base14: Color::from_hex(0x55ff55),
base15: Color::from_hex(0xffd700),
base16: Color::from_hex(0x87ceff),
base17: Color::from_hex(0xff55ff),
};