use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Under The Sea"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x001015),
fg: Color::from_hex(0x3d5053),
cursor: Some(Color::from_hex(0x3d5053)),
selection: Some(Color::from_hex(0x374350)),
line_highlight: Some(Color::from_hex(0x022026)),
gutter: Some(Color::from_hex(0x394751)),
statusbar_bg: Some(Color::from_hex(0x022026)),
statusbar_fg: Some(Color::from_hex(0x3b4c52)),
comment: Some(Color::from_hex(0x394751)),
keyword: Some(Color::from_hex(0x00599c)),
string: Some(Color::from_hex(0x00a940)),
function: Some(Color::from_hex(0x449985)),
variable: Some(Color::from_hex(0xb12f2c)),
r#type: Some(Color::from_hex(0x61d4b9)),
constant: Some(Color::from_hex(0x58809c)),
operator: Some(Color::from_hex(0x3d5053)),
tag: Some(Color::from_hex(0xb12f2c)),
error: Some(Color::from_hex(0xb12f2c)),
warning: Some(Color::from_hex(0x61d4b9)),
info: Some(Color::from_hex(0x449985)),
success: Some(Color::from_hex(0x00a940)),
red: Some(Color::from_hex(0xff4242)),
orange: Some(Color::from_hex(0x58809c)),
yellow: Some(Color::from_hex(0x8dd3fd)),
green: Some(Color::from_hex(0x2aea5e)),
cyan: Some(Color::from_hex(0x5c7e19)),
blue: Some(Color::from_hex(0x98cf28)),
purple: Some(Color::from_hex(0x61d4b9)),
magenta: Some(Color::from_hex(0x1298ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x001015),
base01: Color::from_hex(0x022026),
base02: Color::from_hex(0x374350),
base03: Color::from_hex(0x394751),
base04: Color::from_hex(0x3b4c52),
base05: Color::from_hex(0x3d5053),
base06: Color::from_hex(0x405554),
base07: Color::from_hex(0x58fad6),
base08: Color::from_hex(0xb12f2c),
base09: Color::from_hex(0x58809c),
base0a: Color::from_hex(0x61d4b9),
base0b: Color::from_hex(0x00a940),
base0c: Color::from_hex(0x5c7e19),
base0d: Color::from_hex(0x449985),
base0e: Color::from_hex(0x00599c),
base0f: Color::from_hex(0x581716),
},
base10: Color::from_hex(0x242c35),
base11: Color::from_hex(0x12161a),
base12: Color::from_hex(0xff4242),
base13: Color::from_hex(0x8dd3fd),
base14: Color::from_hex(0x2aea5e),
base15: Color::from_hex(0x98cf28),
base16: Color::from_hex(0x61d4b9),
base17: Color::from_hex(0x1298ff),
};