use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("github"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf8f8ff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x444454)),
selection: Some(Color::from_hex(0x3465a3)),
line_highlight: Some(Color::from_hex(0xd8d8dd)),
gutter: Some(Color::from_hex(0x959595)),
statusbar_bg: Some(Color::from_hex(0xbbbbbb)),
statusbar_fg: Some(Color::from_hex(0x404040)),
comment: Some(Color::from_hex(0x999988)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0xd81745)),
function: Some(Color::from_hex(0x990000)),
variable: Some(Color::from_hex(0x0086b3)),
r#type: Some(Color::from_hex(0x445588)),
constant: Some(Color::from_hex(0x177f80)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff1100)),
warning: Some(Color::from_hex(0xef5939)),
info: None,
success: None,
red: Some(Color::from_hex(0xff1100)),
orange: None,
yellow: Some(Color::from_hex(0xef5939)),
green: Some(Color::from_hex(0xd81745)),
cyan: Some(Color::from_hex(0x445588)),
blue: Some(Color::from_hex(0x990000)),
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0xa0a0a0)),
};