use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("PaperColor Light"),
author: Cow::Borrowed("Nguyen Nguyen (https://github.com/NLKNguyen/papercolor-theme)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x444444),
cursor: Some(Color::from_hex(0x444444)),
selection: Some(Color::from_hex(0xd0d0d0)),
line_highlight: Some(Color::from_hex(0xe4e4e4)),
gutter: Some(Color::from_hex(0x878787)),
statusbar_bg: Some(Color::from_hex(0xe4e4e4)),
statusbar_fg: Some(Color::from_hex(0xb2b2b2)),
comment: Some(Color::from_hex(0x878787)),
keyword: Some(Color::from_hex(0x8700af)),
string: Some(Color::from_hex(0x008700)),
function: Some(Color::from_hex(0x0087af)),
variable: Some(Color::from_hex(0xaf0000)),
r#type: Some(Color::from_hex(0x5f8700)),
constant: Some(Color::from_hex(0xd70087)),
operator: Some(Color::from_hex(0x444444)),
tag: Some(Color::from_hex(0xaf0000)),
error: Some(Color::from_hex(0xaf0000)),
warning: Some(Color::from_hex(0x5f8700)),
info: Some(Color::from_hex(0x0087af)),
success: Some(Color::from_hex(0x008700)),
red: Some(Color::from_hex(0xd70000)),
orange: Some(Color::from_hex(0xd70087)),
yellow: Some(Color::from_hex(0xff00af)),
green: Some(Color::from_hex(0x87af00)),
cyan: Some(Color::from_hex(0xd75f00)),
blue: Some(Color::from_hex(0x00af00)),
purple: Some(Color::from_hex(0xff8700)),
magenta: Some(Color::from_hex(0x5fafff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xeeeeee),
base01: Color::from_hex(0xe4e4e4),
base02: Color::from_hex(0xd0d0d0),
base03: Color::from_hex(0x878787),
base04: Color::from_hex(0xb2b2b2),
base05: Color::from_hex(0x444444),
base06: Color::from_hex(0x005f87),
base07: Color::from_hex(0x0087af),
base08: Color::from_hex(0xaf0000),
base09: Color::from_hex(0xd70087),
base0a: Color::from_hex(0x5f8700),
base0b: Color::from_hex(0x008700),
base0c: Color::from_hex(0xd75f00),
base0d: Color::from_hex(0x0087af),
base0e: Color::from_hex(0x8700af),
base0f: Color::from_hex(0x005faf),
},
base10: Color::from_hex(0xf4f4f4),
base11: Color::from_hex(0xffffff),
base12: Color::from_hex(0xd70000),
base13: Color::from_hex(0xff00af),
base14: Color::from_hex(0x87af00),
base15: Color::from_hex(0x00af00),
base16: Color::from_hex(0xff8700),
base17: Color::from_hex(0x5fafff),
};