use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Birds Of Paradise"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2a1e1d),
fg: Color::from_hex(0xcdbe9b),
cursor: Some(Color::from_hex(0xcdbe9b)),
selection: Some(Color::from_hex(0x9a6b49)),
line_highlight: Some(Color::from_hex(0x573d25)),
gutter: Some(Color::from_hex(0xab8664)),
statusbar_bg: Some(Color::from_hex(0x573d25)),
statusbar_fg: Some(Color::from_hex(0xbca280)),
comment: Some(Color::from_hex(0xab8664)),
keyword: Some(Color::from_hex(0xab80a6)),
string: Some(Color::from_hex(0x6ba08a)),
function: Some(Color::from_hex(0x5a86ac)),
variable: Some(Color::from_hex(0xbe2d26)),
r#type: Some(Color::from_hex(0xb8d3ed)),
constant: Some(Color::from_hex(0xe99c29)),
operator: Some(Color::from_hex(0xcdbe9b)),
tag: Some(Color::from_hex(0xbe2d26)),
error: Some(Color::from_hex(0xbe2d26)),
warning: Some(Color::from_hex(0xb8d3ed)),
info: Some(Color::from_hex(0x5a86ac)),
success: Some(Color::from_hex(0x6ba08a)),
red: Some(Color::from_hex(0xe84526)),
orange: Some(Color::from_hex(0xe99c29)),
yellow: Some(Color::from_hex(0xd0d04f)),
green: Some(Color::from_hex(0x94d7ba)),
cyan: Some(Color::from_hex(0x74a5ac)),
blue: Some(Color::from_hex(0x92ced6)),
purple: Some(Color::from_hex(0xb8d3ed)),
magenta: Some(Color::from_hex(0xd09dca)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x2a1e1d),
base01: Color::from_hex(0x573d25),
base02: Color::from_hex(0x9a6b49),
base03: Color::from_hex(0xab8664),
base04: Color::from_hex(0xbca280),
base05: Color::from_hex(0xcdbe9b),
base06: Color::from_hex(0xdfdab7),
base07: Color::from_hex(0xfff9d4),
base08: Color::from_hex(0xbe2d26),
base09: Color::from_hex(0xe99c29),
base0a: Color::from_hex(0xb8d3ed),
base0b: Color::from_hex(0x6ba08a),
base0c: Color::from_hex(0x74a5ac),
base0d: Color::from_hex(0x5a86ac),
base0e: Color::from_hex(0xab80a6),
base0f: Color::from_hex(0x5f1613),
},
base10: Color::from_hex(0x664730),
base11: Color::from_hex(0x332318),
base12: Color::from_hex(0xe84526),
base13: Color::from_hex(0xd0d04f),
base14: Color::from_hex(0x94d7ba),
base15: Color::from_hex(0x92ced6),
base16: Color::from_hex(0xb8d3ed),
base17: Color::from_hex(0xd09dca),
};