use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Seafoam Pastel"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x243434),
fg: Color::from_hex(0xcacaca),
cursor: Some(Color::from_hex(0xcacaca)),
selection: Some(Color::from_hex(0x8a8a8a)),
line_highlight: Some(Color::from_hex(0x757575)),
gutter: Some(Color::from_hex(0x9f9f9f)),
statusbar_bg: Some(Color::from_hex(0x757575)),
statusbar_fg: Some(Color::from_hex(0xb5b5b5)),
comment: Some(Color::from_hex(0x9f9f9f)),
keyword: Some(Color::from_hex(0x8a7167)),
string: Some(Color::from_hex(0x718c61)),
function: Some(Color::from_hex(0x4d7b82)),
variable: Some(Color::from_hex(0x825d4d)),
r#type: Some(Color::from_hex(0x79c3cf)),
constant: Some(Color::from_hex(0xada16d)),
operator: Some(Color::from_hex(0xcacaca)),
tag: Some(Color::from_hex(0x825d4d)),
error: Some(Color::from_hex(0x825d4d)),
warning: Some(Color::from_hex(0x79c3cf)),
info: Some(Color::from_hex(0x4d7b82)),
success: Some(Color::from_hex(0x718c61)),
red: Some(Color::from_hex(0xcf9379)),
orange: Some(Color::from_hex(0xada16d)),
yellow: Some(Color::from_hex(0xfae79d)),
green: Some(Color::from_hex(0x98d9aa)),
cyan: Some(Color::from_hex(0x719393)),
blue: Some(Color::from_hex(0xade0e0)),
purple: Some(Color::from_hex(0x79c3cf)),
magenta: Some(Color::from_hex(0xd6b2a1)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x243434),
base01: Color::from_hex(0x757575),
base02: Color::from_hex(0x8a8a8a),
base03: Color::from_hex(0x9f9f9f),
base04: Color::from_hex(0xb5b5b5),
base05: Color::from_hex(0xcacaca),
base06: Color::from_hex(0xe0e0e0),
base07: Color::from_hex(0xe0e0e0),
base08: Color::from_hex(0x825d4d),
base09: Color::from_hex(0xada16d),
base0a: Color::from_hex(0x79c3cf),
base0b: Color::from_hex(0x718c61),
base0c: Color::from_hex(0x719393),
base0d: Color::from_hex(0x4d7b82),
base0e: Color::from_hex(0x8a7167),
base0f: Color::from_hex(0x412e26),
},
base10: Color::from_hex(0x5c5c5c),
base11: Color::from_hex(0x2e2e2e),
base12: Color::from_hex(0xcf9379),
base13: Color::from_hex(0xfae79d),
base14: Color::from_hex(0x98d9aa),
base15: Color::from_hex(0xade0e0),
base16: Color::from_hex(0x79c3cf),
base17: Color::from_hex(0xd6b2a1),
};