Merge pull request #104 from ritchielrez/master

feat: Gruvbox Material theme
v2.5
Sidhanth Rathod 3 years ago committed by GitHub
commit 08593221e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,66 @@
local M = {}
M.base_30 = {
white = "#ebdbb2",
darker_black = "#222222",
black = "#282828", -- nvim bg
black2 = "#2e2e2e",
one_bg = "#323232",
one_bg2 = "#3b3b3b",
one_bg3 = "#434343",
grey = "#505050",
grey_fg = "#5a5a5a",
grey_fg2 = "#646464",
light_grey = "#6c6c6c",
red = "#ea6962",
baby_pink = "#ce8196",
pink = "#ff75a0",
line = "#373737", -- for lines like vertsplit
green = "#89b482",
vibrant_green = "#a9b665",
nord_blue = "#6f8faf",
blue = "#6d8dad",
yellow = "#d8a657",
sun = "#eab869",
purple = "#d3869b",
dark_purple = "#d3869b",
teal = "#749689",
orange = "#e78a4e",
cyan = "#89b482",
statusline_bg = "#2c2c2c",
lightbg = "#393939",
pmenu_bg = "#89b482",
folder_bg = "#6d8dad",
}
M.base_16 = {
base0A = "#d8a657",
base04 = "#d4be98",
base07 = "#c7b89d",
base05 = "#c0b196",
base0E = "#ea6962",
base0D = "#a9b665",
base0C = "#89b482",
base0B = "#89b482",
base02 = "#323232",
base0F = "#dd8044",
base03 = "#434343",
base08 = "#7daea3",
base01 = "#2e2e2e",
base00 = "#282828",
base09 = "#e78a4e",
base06 = "#d4be98",
}
M.polish_hl = {
Include = { fg = M.base_16.base0E },
TSVariable = { fg = M.base_16.base08 },
TSProperty = { fg = M.base_16.base0C },
Repeat = { fg = M.base_16.base0E },
}
vim.opt.bg = "dark"
M = require("base46").override_theme(M, "gruvbox_material")
return M
Loading…
Cancel
Save