use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Piatto Light"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x515151),
cursor: Some(Color::from_hex(0x515151)),
selection: Some(Color::from_hex(0xe1e1e1)),
line_highlight: Some(Color::from_hex(0xf1f1f1)),
gutter: Some(Color::from_hex(0xc1c1c1)),
statusbar_bg: Some(Color::from_hex(0xf1f1f1)),
statusbar_fg: Some(Color::from_hex(0x717171)),
comment: Some(Color::from_hex(0xc1c1c1)),
keyword: Some(Color::from_hex(0xa454b2)),
string: Some(Color::from_hex(0x66781e)),
function: Some(Color::from_hex(0x3c5ea8)),
variable: Some(Color::from_hex(0xb23771)),
r#type: Some(Color::from_hex(0xcda434)),
constant: Some(Color::from_hex(0xcd6f34)),
operator: Some(Color::from_hex(0x515151)),
tag: Some(Color::from_hex(0xb23771)),
error: Some(Color::from_hex(0xb23771)),
warning: Some(Color::from_hex(0xcda434)),
info: Some(Color::from_hex(0x3c5ea8)),
success: Some(Color::from_hex(0x66781e)),
red: Some(Color::from_hex(0xdb3365)),
orange: Some(Color::from_hex(0xcd6f34)),
yellow: Some(Color::from_hex(0xcd6f34)),
green: Some(Color::from_hex(0x829429)),
cyan: Some(Color::from_hex(0x1e7878)),
blue: Some(Color::from_hex(0x175e5e)),
purple: Some(Color::from_hex(0x3c5ea8)),
magenta: Some(Color::from_hex(0xa454b2)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xffffff),
base01: Color::from_hex(0xf1f1f1),
base02: Color::from_hex(0xe1e1e1),
base03: Color::from_hex(0xc1c1c1),
base04: Color::from_hex(0x717171),
base05: Color::from_hex(0x515151),
base06: Color::from_hex(0x414141),
base07: Color::from_hex(0x212121),
base08: Color::from_hex(0xb23771),
base09: Color::from_hex(0xcd6f34),
base0a: Color::from_hex(0xcda434),
base0b: Color::from_hex(0x66781e),
base0c: Color::from_hex(0x1e7878),
base0d: Color::from_hex(0x3c5ea8),
base0e: Color::from_hex(0xa454b2),
base0f: Color::from_hex(0x591b38),
},
base10: Color::from_hex(0x2a2a2a),
base11: Color::from_hex(0x151515),
base12: Color::from_hex(0xdb3365),
base13: Color::from_hex(0xcd6f34),
base14: Color::from_hex(0x829429),
base15: Color::from_hex(0x175e5e),
base16: Color::from_hex(0x3c5ea8),
base17: Color::from_hex(0xa454b2),
};