use super::ColorTheme;
impl ColorTheme {
pub const GITHUB_DARK: ColorTheme = ColorTheme {
name: "Github Dark",
dark: true,
bg: "0d1117", cursor: "d29922", selection: "0c2d6b", comments: "8b949e", functions: "d2a8ff", keywords: "ff7b72", literals: "c9d1d9", numerics: "79c0ff", punctuation: "c9d1d9", strs: "a5d6ff", types: "ffa657", special: "a5d6ff", };
pub const GITHUB_LIGHT: ColorTheme = ColorTheme {
name: "Github Light",
dark: false,
bg: "ffffff", cursor: "000000", selection: "0550ae", comments: "57606a", functions: "8250df", keywords: "cf222e", literals: "24292f", numerics: "0550ae", punctuation: "24292f", strs: "0a3069", types: "953800", special: "a475f9", };
}