use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Cyberdyne"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x151144),
fg: Color::from_hex(0xc0c0c0),
cursor: Some(Color::from_hex(0xc0c0c0)),
selection: Some(Color::from_hex(0x2d2d2d)),
line_highlight: Some(Color::from_hex(0x080808)),
gutter: Some(Color::from_hex(0x5e5e5e)),
statusbar_bg: Some(Color::from_hex(0x080808)),
statusbar_fg: Some(Color::from_hex(0x8f8f8f)),
comment: Some(Color::from_hex(0x5e5e5e)),
keyword: Some(Color::from_hex(0xff8ffd)),
string: Some(Color::from_hex(0x00c172)),
function: Some(Color::from_hex(0x0071cf)),
variable: Some(Color::from_hex(0xff8272)),
r#type: Some(Color::from_hex(0xc1e3fe)),
constant: Some(Color::from_hex(0xd2a700)),
operator: Some(Color::from_hex(0xc0c0c0)),
tag: Some(Color::from_hex(0xff8272)),
error: Some(Color::from_hex(0xff8272)),
warning: Some(Color::from_hex(0xc1e3fe)),
info: Some(Color::from_hex(0x0071cf)),
success: Some(Color::from_hex(0x00c172)),
red: Some(Color::from_hex(0xffc4bd)),
orange: Some(Color::from_hex(0xd2a700)),
yellow: Some(Color::from_hex(0xfefdd5)),
green: Some(Color::from_hex(0xd6fcb9)),
cyan: Some(Color::from_hex(0x6bffdc)),
blue: Some(Color::from_hex(0xe5e6fe)),
purple: Some(Color::from_hex(0xc1e3fe)),
magenta: Some(Color::from_hex(0xffb1fe)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x151144),
base01: Color::from_hex(0x080808),
base02: Color::from_hex(0x2d2d2d),
base03: Color::from_hex(0x5e5e5e),
base04: Color::from_hex(0x8f8f8f),
base05: Color::from_hex(0xc0c0c0),
base06: Color::from_hex(0xf1f1f1),
base07: Color::from_hex(0xfeffff),
base08: Color::from_hex(0xff8272),
base09: Color::from_hex(0xd2a700),
base0a: Color::from_hex(0xc1e3fe),
base0b: Color::from_hex(0x00c172),
base0c: Color::from_hex(0x6bffdc),
base0d: Color::from_hex(0x0071cf),
base0e: Color::from_hex(0xff8ffd),
base0f: Color::from_hex(0x7f4139),
},
base10: Color::from_hex(0x1e1e1e),
base11: Color::from_hex(0x0f0f0f),
base12: Color::from_hex(0xffc4bd),
base13: Color::from_hex(0xfefdd5),
base14: Color::from_hex(0xd6fcb9),
base15: Color::from_hex(0xe5e6fe),
base16: Color::from_hex(0xc1e3fe),
base17: Color::from_hex(0xffb1fe),
};