use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Sea Shells"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x08131a),
fg: Color::from_hex(0xb79c7e),
cursor: Some(Color::from_hex(0xb79c7e)),
selection: Some(Color::from_hex(0x424b52)),
line_highlight: Some(Color::from_hex(0x17384c)),
gutter: Some(Color::from_hex(0x696660)),
statusbar_bg: Some(Color::from_hex(0x17384c)),
statusbar_fg: Some(Color::from_hex(0x90816f)),
comment: Some(Color::from_hex(0x696660)),
keyword: Some(Color::from_hex(0x68d3f1)),
string: Some(Color::from_hex(0x027c9b)),
function: Some(Color::from_hex(0x1e4950)),
variable: Some(Color::from_hex(0xd15023)),
r#type: Some(Color::from_hex(0x1bbcdd)),
constant: Some(Color::from_hex(0xfca02f)),
operator: Some(Color::from_hex(0xb79c7e)),
tag: Some(Color::from_hex(0xd15023)),
error: Some(Color::from_hex(0xd15023)),
warning: Some(Color::from_hex(0x1bbcdd)),
info: Some(Color::from_hex(0x1e4950)),
success: Some(Color::from_hex(0x027c9b)),
red: Some(Color::from_hex(0xd38677)),
orange: Some(Color::from_hex(0xfca02f)),
yellow: Some(Color::from_hex(0xfdd29e)),
green: Some(Color::from_hex(0x618c98)),
cyan: Some(Color::from_hex(0x50a3b5)),
blue: Some(Color::from_hex(0x86abb3)),
purple: Some(Color::from_hex(0x1bbcdd)),
magenta: Some(Color::from_hex(0xbbe3ee)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x08131a),
base01: Color::from_hex(0x17384c),
base02: Color::from_hex(0x424b52),
base03: Color::from_hex(0x696660),
base04: Color::from_hex(0x90816f),
base05: Color::from_hex(0xb79c7e),
base06: Color::from_hex(0xdeb88d),
base07: Color::from_hex(0xfee3cd),
base08: Color::from_hex(0xd15023),
base09: Color::from_hex(0xfca02f),
base0a: Color::from_hex(0x1bbcdd),
base0b: Color::from_hex(0x027c9b),
base0c: Color::from_hex(0x50a3b5),
base0d: Color::from_hex(0x1e4950),
base0e: Color::from_hex(0x68d3f1),
base0f: Color::from_hex(0x682811),
},
base10: Color::from_hex(0x2c3236),
base11: Color::from_hex(0x16191b),
base12: Color::from_hex(0xd38677),
base13: Color::from_hex(0xfdd29e),
base14: Color::from_hex(0x618c98),
base15: Color::from_hex(0x86abb3),
base16: Color::from_hex(0x1bbcdd),
base17: Color::from_hex(0xbbe3ee),
};