use super::ColorTheme;
impl ColorTheme {
pub const GRUVBOX: ColorTheme = ColorTheme {
name: "Gruvbox",
dark: true,
bg: "282828",
cursor: "a89984", selection: "504945", comments: "928374", functions: "b8bb26", keywords: "fb4934", literals: "ebdbb2", numerics: "d3869b", punctuation: "fe8019", strs: "8ec07c", types: "fabd2f", special: "83a598", };
pub const GRUVBOX_DARK: ColorTheme = ColorTheme::GRUVBOX;
pub const GRUVBOX_LIGHT: ColorTheme = ColorTheme {
name: "Gruvbox Light",
dark: false,
bg: "fbf1c7",
cursor: "7c6f64", selection: "b57614", comments: "7c6f64", functions: "79740e", keywords: "9d0006", literals: "282828", numerics: "8f3f71", punctuation: "af3a03", strs: "427b58", types: "b57614", special: "af3a03", };
}