use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Github Light"),
author: Cow::Borrowed("Tinted Theming (https://github.com/tinted-theming)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xeaeef2),
fg: Color::from_hex(0x424a53),
cursor: Some(Color::from_hex(0x424a53)),
selection: Some(Color::from_hex(0xafb8c1)),
line_highlight: Some(Color::from_hex(0xd0d7de)),
gutter: Some(Color::from_hex(0x8c959f)),
statusbar_bg: Some(Color::from_hex(0xd0d7de)),
statusbar_fg: Some(Color::from_hex(0x6e7781)),
comment: Some(Color::from_hex(0x8c959f)),
keyword: Some(Color::from_hex(0xa475f9)),
string: Some(Color::from_hex(0x2da44e)),
function: Some(Color::from_hex(0x218bff)),
variable: Some(Color::from_hex(0xfa4549)),
r#type: Some(Color::from_hex(0xbf8700)),
constant: Some(Color::from_hex(0xe16f24)),
operator: Some(Color::from_hex(0x424a53)),
tag: Some(Color::from_hex(0xfa4549)),
error: Some(Color::from_hex(0xfa4549)),
warning: Some(Color::from_hex(0xbf8700)),
info: Some(Color::from_hex(0x218bff)),
success: Some(Color::from_hex(0x2da44e)),
red: Some(Color::from_hex(0xff8182)),
orange: Some(Color::from_hex(0xe16f24)),
yellow: Some(Color::from_hex(0xd4a72c)),
green: Some(Color::from_hex(0x4ac26b)),
cyan: Some(Color::from_hex(0x339d9b)),
blue: Some(Color::from_hex(0x49bcb7)),
purple: Some(Color::from_hex(0x54aeff)),
magenta: Some(Color::from_hex(0xc297ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0xeaeef2),
base01: Color::from_hex(0xd0d7de),
base02: Color::from_hex(0xafb8c1),
base03: Color::from_hex(0x8c959f),
base04: Color::from_hex(0x6e7781),
base05: Color::from_hex(0x424a53),
base06: Color::from_hex(0x32383f),
base07: Color::from_hex(0x1f2328),
base08: Color::from_hex(0xfa4549),
base09: Color::from_hex(0xe16f24),
base0a: Color::from_hex(0xbf8700),
base0b: Color::from_hex(0x2da44e),
base0c: Color::from_hex(0x339d9b),
base0d: Color::from_hex(0x218bff),
base0e: Color::from_hex(0xa475f9),
base0f: Color::from_hex(0x4d2d00),
},
base10: Color::from_hex(0x1f2328),
base11: Color::from_hex(0x000000),
base12: Color::from_hex(0xff8182),
base13: Color::from_hex(0xd4a72c),
base14: Color::from_hex(0x4ac26b),
base15: Color::from_hex(0x49bcb7),
base16: Color::from_hex(0x54aeff),
base17: Color::from_hex(0xc297ff),
};