use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Idea"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x202020),
fg: Color::from_hex(0x515151),
cursor: Some(Color::from_hex(0x515151)),
selection: Some(Color::from_hex(0xfffefe)),
line_highlight: Some(Color::from_hex(0xacacac)),
gutter: Some(Color::from_hex(0xc5c5c5)),
statusbar_bg: Some(Color::from_hex(0xacacac)),
statusbar_fg: Some(Color::from_hex(0x8b8b8b)),
comment: Some(Color::from_hex(0xc5c5c5)),
keyword: Some(Color::from_hex(0x9d73b0)),
string: Some(Color::from_hex(0x98b61b)),
function: Some(Color::from_hex(0x437ee6)),
variable: Some(Color::from_hex(0xfb5255)),
r#type: Some(Color::from_hex(0x6c9bed)),
constant: Some(Color::from_hex(0xccb343)),
operator: Some(Color::from_hex(0x515151)),
tag: Some(Color::from_hex(0xfb5255)),
error: Some(Color::from_hex(0xfb5255)),
warning: Some(Color::from_hex(0x6c9bed)),
info: Some(Color::from_hex(0x437ee6)),
success: Some(Color::from_hex(0x98b61b)),
red: Some(Color::from_hex(0xfc6f72)),
orange: Some(Color::from_hex(0xccb343)),
yellow: Some(Color::from_hex(0xffff0a)),
green: Some(Color::from_hex(0x98b61b)),
cyan: Some(Color::from_hex(0x248886)),
blue: Some(Color::from_hex(0x248886)),
purple: Some(Color::from_hex(0x6c9bed)),
magenta: Some(Color::from_hex(0xfc7efe)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x202020),
base01: Color::from_hex(0xacacac),
base02: Color::from_hex(0xfffefe),
base03: Color::from_hex(0xc5c5c5),
base04: Color::from_hex(0x8b8b8b),
base05: Color::from_hex(0x515151),
base06: Color::from_hex(0x171717),
base07: Color::from_hex(0x171717),
base08: Color::from_hex(0xfb5255),
base09: Color::from_hex(0xccb343),
base0a: Color::from_hex(0x6c9bed),
base0b: Color::from_hex(0x98b61b),
base0c: Color::from_hex(0x248886),
base0d: Color::from_hex(0x437ee6),
base0e: Color::from_hex(0x9d73b0),
base0f: Color::from_hex(0x7d292a),
},
base10: Color::from_hex(0xaaa9a9),
base11: Color::from_hex(0x555454),
base12: Color::from_hex(0xfc6f72),
base13: Color::from_hex(0xffff0a),
base14: Color::from_hex(0x98b61b),
base15: Color::from_hex(0x248886),
base16: Color::from_hex(0x6c9bed),
base17: Color::from_hex(0xfc7efe),
};