use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tango Adapted"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfeffff),
fg: Color::from_hex(0x4f4f4f),
cursor: Some(Color::from_hex(0x4f4f4f)),
selection: Some(Color::from_hex(0xdcdcdc)),
line_highlight: Some(Color::from_hex(0xf1f1f1)),
gutter: Some(Color::from_hex(0xcccccc)),
statusbar_bg: Some(Color::from_hex(0xf1f1f1)),
statusbar_fg: Some(Color::from_hex(0x757575)),
comment: Some(Color::from_hex(0xcccccc)),
keyword: Some(Color::from_hex(0xc17ecb)),
string: Some(Color::from_hex(0x59d500)),
function: Some(Color::from_hex(0x00a1ff)),
variable: Some(Color::from_hex(0xff0000)),
r#type: Some(Color::from_hex(0xefca00)),
constant: Some(Color::from_hex(0xef9b00)),
operator: Some(Color::from_hex(0x4f4f4f)),
tag: Some(Color::from_hex(0xff0000)),
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xefca00)),
info: Some(Color::from_hex(0x00a1ff)),
success: Some(Color::from_hex(0x59d500)),
red: Some(Color::from_hex(0xff0012)),
orange: Some(Color::from_hex(0xef9b00)),
yellow: Some(Color::from_hex(0xfff021)),
green: Some(Color::from_hex(0x93fe00)),
cyan: Some(Color::from_hex(0x00d0d6)),
blue: Some(Color::from_hex(0x00fdff)),
purple: Some(Color::from_hex(0x88c9ff)),
magenta: Some(Color::from_hex(0xe8a6e1)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xfeffff),
base01: Color::from_hex(0xf1f1f1),
base02: Color::from_hex(0xdcdcdc),
base03: Color::from_hex(0xcccccc),
base04: Color::from_hex(0x757575),
base05: Color::from_hex(0x4f4f4f),
base06: Color::from_hex(0x323232),
base07: Color::from_hex(0x000000),
base08: Color::from_hex(0xff0000),
base09: Color::from_hex(0xef9b00),
base0a: Color::from_hex(0xefca00),
base0b: Color::from_hex(0x59d500),
base0c: Color::from_hex(0x00d0d6),
base0d: Color::from_hex(0x00a1ff),
base0e: Color::from_hex(0xc17ecb),
base0f: Color::from_hex(0x7f0000),
},
base10: Color::from_hex(0x5e615c),
base11: Color::from_hex(0x2f302e),
base12: Color::from_hex(0xff0012),
base13: Color::from_hex(0xfff021),
base14: Color::from_hex(0x93fe00),
base15: Color::from_hex(0x00fdff),
base16: Color::from_hex(0x88c9ff),
base17: Color::from_hex(0xe8a6e1),
};