use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("CLRS"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x9a9b9a),
cursor: Some(Color::from_hex(0x9a9b9a)),
selection: Some(Color::from_hex(0x545753)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x6b6d6a)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x838482)),
comment: Some(Color::from_hex(0x6b6d6a)),
keyword: Some(Color::from_hex(0x9f00bc)),
string: Some(Color::from_hex(0x32895c)),
function: Some(Color::from_hex(0x125ccf)),
variable: Some(Color::from_hex(0xf72729)),
r#type: Some(Color::from_hex(0x156ffe)),
constant: Some(Color::from_hex(0xf96f1c)),
operator: Some(Color::from_hex(0x9a9b9a)),
tag: Some(Color::from_hex(0xf72729)),
error: Some(Color::from_hex(0xf72729)),
warning: Some(Color::from_hex(0x156ffe)),
info: Some(Color::from_hex(0x125ccf)),
success: Some(Color::from_hex(0x32895c)),
red: Some(Color::from_hex(0xfb0416)),
orange: Some(Color::from_hex(0xf96f1c)),
yellow: Some(Color::from_hex(0xfcd627)),
green: Some(Color::from_hex(0x2cc631)),
cyan: Some(Color::from_hex(0x32c2c0)),
blue: Some(Color::from_hex(0x39d5ce)),
purple: Some(Color::from_hex(0x156ffe)),
magenta: Some(Color::from_hex(0xe800b0)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xffffff),
base01: Color::from_hex(0x000000),
base02: Color::from_hex(0x545753),
base03: Color::from_hex(0x6b6d6a),
base04: Color::from_hex(0x838482),
base05: Color::from_hex(0x9a9b9a),
base06: Color::from_hex(0xb2b2b2),
base07: Color::from_hex(0xededec),
base08: Color::from_hex(0xf72729),
base09: Color::from_hex(0xf96f1c),
base0a: Color::from_hex(0x156ffe),
base0b: Color::from_hex(0x32895c),
base0c: Color::from_hex(0x32c2c0),
base0d: Color::from_hex(0x125ccf),
base0e: Color::from_hex(0x9f00bc),
base0f: Color::from_hex(0x7b1314),
},
base10: Color::from_hex(0x383a37),
base11: Color::from_hex(0x1c1d1b),
base12: Color::from_hex(0xfb0416),
base13: Color::from_hex(0xfcd627),
base14: Color::from_hex(0x2cc631),
base15: Color::from_hex(0x39d5ce),
base16: Color::from_hex(0x156ffe),
base17: Color::from_hex(0xe800b0),
};