use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Pencil Light"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xf1f1f1),
fg: Color::from_hex(0xb3b3b3),
cursor: Some(Color::from_hex(0xb3b3b3)),
selection: Some(Color::from_hex(0x424242)),
line_highlight: Some(Color::from_hex(0x212121)),
gutter: Some(Color::from_hex(0x676767)),
statusbar_bg: Some(Color::from_hex(0x212121)),
statusbar_fg: Some(Color::from_hex(0x8d8d8d)),
comment: Some(Color::from_hex(0x676767)),
keyword: Some(Color::from_hex(0x523c79)),
string: Some(Color::from_hex(0x10a778)),
function: Some(Color::from_hex(0x008ec4)),
variable: Some(Color::from_hex(0xc30771)),
r#type: Some(Color::from_hex(0x20bbfc)),
constant: Some(Color::from_hex(0xa89c14)),
operator: Some(Color::from_hex(0xb3b3b3)),
tag: Some(Color::from_hex(0xc30771)),
error: Some(Color::from_hex(0xc30771)),
warning: Some(Color::from_hex(0x20bbfc)),
info: Some(Color::from_hex(0x008ec4)),
success: Some(Color::from_hex(0x10a778)),
red: Some(Color::from_hex(0xfb007a)),
orange: Some(Color::from_hex(0xa89c14)),
yellow: Some(Color::from_hex(0xf3e430)),
green: Some(Color::from_hex(0x5fd7af)),
cyan: Some(Color::from_hex(0x20a5ba)),
blue: Some(Color::from_hex(0x4fb8cc)),
purple: Some(Color::from_hex(0x20bbfc)),
magenta: Some(Color::from_hex(0x6855de)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xf1f1f1),
base01: Color::from_hex(0x212121),
base02: Color::from_hex(0x424242),
base03: Color::from_hex(0x676767),
base04: Color::from_hex(0x8d8d8d),
base05: Color::from_hex(0xb3b3b3),
base06: Color::from_hex(0xd9d9d9),
base07: Color::from_hex(0xf1f1f1),
base08: Color::from_hex(0xc30771),
base09: Color::from_hex(0xa89c14),
base0a: Color::from_hex(0x20bbfc),
base0b: Color::from_hex(0x10a778),
base0c: Color::from_hex(0x20a5ba),
base0d: Color::from_hex(0x008ec4),
base0e: Color::from_hex(0x523c79),
base0f: Color::from_hex(0x610338),
},
base10: Color::from_hex(0x2c2c2c),
base11: Color::from_hex(0x161616),
base12: Color::from_hex(0xfb007a),
base13: Color::from_hex(0xf3e430),
base14: Color::from_hex(0x5fd7af),
base15: Color::from_hex(0x4fb8cc),
base16: Color::from_hex(0x20bbfc),
base17: Color::from_hex(0x6855de),
};