use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Dimmed Monokai"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1e1e1e),
fg: Color::from_hex(0xacafac),
cursor: Some(Color::from_hex(0xacafac)),
selection: Some(Color::from_hex(0x888987)),
line_highlight: Some(Color::from_hex(0x3a3c43)),
gutter: Some(Color::from_hex(0x949593)),
statusbar_bg: Some(Color::from_hex(0x3a3c43)),
statusbar_fg: Some(Color::from_hex(0xa0a2a0)),
comment: Some(Color::from_hex(0x949593)),
keyword: Some(Color::from_hex(0x855b8d)),
string: Some(Color::from_hex(0x869a3a)),
function: Some(Color::from_hex(0x4e76a1)),
variable: Some(Color::from_hex(0xbe3e48)),
r#type: Some(Color::from_hex(0x176ce3)),
constant: Some(Color::from_hex(0xc4a535)),
operator: Some(Color::from_hex(0xacafac)),
tag: Some(Color::from_hex(0xbe3e48)),
error: Some(Color::from_hex(0xbe3e48)),
warning: Some(Color::from_hex(0x176ce3)),
info: Some(Color::from_hex(0x4e76a1)),
success: Some(Color::from_hex(0x869a3a)),
red: Some(Color::from_hex(0xfb001e)),
orange: Some(Color::from_hex(0xc4a535)),
yellow: Some(Color::from_hex(0xc37033)),
green: Some(Color::from_hex(0x0e712e)),
cyan: Some(Color::from_hex(0x568ea3)),
blue: Some(Color::from_hex(0x2d6f6c)),
purple: Some(Color::from_hex(0x176ce3)),
magenta: Some(Color::from_hex(0xfb0067)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1e1e1e),
base01: Color::from_hex(0x3a3c43),
base02: Color::from_hex(0x888987),
base03: Color::from_hex(0x949593),
base04: Color::from_hex(0xa0a2a0),
base05: Color::from_hex(0xacafac),
base06: Color::from_hex(0xb8bcb9),
base07: Color::from_hex(0xfcffb8),
base08: Color::from_hex(0xbe3e48),
base09: Color::from_hex(0xc4a535),
base0a: Color::from_hex(0x176ce3),
base0b: Color::from_hex(0x869a3a),
base0c: Color::from_hex(0x568ea3),
base0d: Color::from_hex(0x4e76a1),
base0e: Color::from_hex(0x855b8d),
base0f: Color::from_hex(0x5f1f24),
},
base10: Color::from_hex(0x5a5b5a),
base11: Color::from_hex(0x2d2d2d),
base12: Color::from_hex(0xfb001e),
base13: Color::from_hex(0xc37033),
base14: Color::from_hex(0x0e712e),
base15: Color::from_hex(0x2d6f6c),
base16: Color::from_hex(0x176ce3),
base17: Color::from_hex(0xfb0067),
};