use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Borland"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0000a4),
fg: Color::from_hex(0xd1d1d1),
cursor: Some(Color::from_hex(0xd1d1d1)),
selection: Some(Color::from_hex(0x7c7c7c)),
line_highlight: Some(Color::from_hex(0x4e4e4e)),
gutter: Some(Color::from_hex(0x989898)),
statusbar_bg: Some(Color::from_hex(0x4e4e4e)),
statusbar_fg: Some(Color::from_hex(0xb5b5b5)),
comment: Some(Color::from_hex(0x989898)),
keyword: Some(Color::from_hex(0xff73fd)),
string: Some(Color::from_hex(0xa7ff60)),
function: Some(Color::from_hex(0x96cafd)),
variable: Some(Color::from_hex(0xff6b60)),
r#type: Some(Color::from_hex(0xb5dcfe)),
constant: Some(Color::from_hex(0xffffb6)),
operator: Some(Color::from_hex(0xd1d1d1)),
tag: Some(Color::from_hex(0xff6b60)),
error: Some(Color::from_hex(0xff6b60)),
warning: Some(Color::from_hex(0xb5dcfe)),
info: Some(Color::from_hex(0x96cafd)),
success: Some(Color::from_hex(0xa7ff60)),
red: Some(Color::from_hex(0xffb6b0)),
orange: Some(Color::from_hex(0xffffb6)),
yellow: Some(Color::from_hex(0xffffcb)),
green: Some(Color::from_hex(0xceffab)),
cyan: Some(Color::from_hex(0xc6c4fd)),
blue: Some(Color::from_hex(0xdfdffe)),
purple: Some(Color::from_hex(0xb5dcfe)),
magenta: Some(Color::from_hex(0xff9cfe)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x0000a4),
base01: Color::from_hex(0x4e4e4e),
base02: Color::from_hex(0x7c7c7c),
base03: Color::from_hex(0x989898),
base04: Color::from_hex(0xb5b5b5),
base05: Color::from_hex(0xd1d1d1),
base06: Color::from_hex(0xeeeeee),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xff6b60),
base09: Color::from_hex(0xffffb6),
base0a: Color::from_hex(0xb5dcfe),
base0b: Color::from_hex(0xa7ff60),
base0c: Color::from_hex(0xc6c4fd),
base0d: Color::from_hex(0x96cafd),
base0e: Color::from_hex(0xff73fd),
base0f: Color::from_hex(0x7f3530),
},
base10: Color::from_hex(0x525252),
base11: Color::from_hex(0x292929),
base12: Color::from_hex(0xffb6b0),
base13: Color::from_hex(0xffffcb),
base14: Color::from_hex(0xceffab),
base15: Color::from_hex(0xdfdffe),
base16: Color::from_hex(0xb5dcfe),
base17: Color::from_hex(0xff9cfe),
};