2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 hoob3rt
|
|
|
|
-- MIT license, see LICENSE for more details.
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
local gruvbox = {}
|
2020-12-30 14:48:51 +00:00
|
|
|
|
2021-01-04 01:14:29 +00:00
|
|
|
local colors = {
|
2021-02-22 20:28:29 +00:00
|
|
|
black = "#282828",
|
|
|
|
white = '#ebdbb2',
|
|
|
|
red = '#fb4934',
|
|
|
|
green = '#b8bb26',
|
|
|
|
blue = '#83a598',
|
|
|
|
yellow = '#fe8019',
|
|
|
|
gray = '#a89984',
|
|
|
|
darkgray = '#3c3836',
|
|
|
|
lightgray = '#504945',
|
|
|
|
inactivegray = '#7c6f64',
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.normal = {
|
|
|
|
a = { bg = colors.gray, fg = colors.black, gui = 'bold', },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white, },
|
|
|
|
c = { bg = colors.darkgray, fg = colors.gray }
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.insert = {
|
|
|
|
a = { bg = colors.blue, fg = colors.black, gui = 'bold', },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white, },
|
|
|
|
c = { bg = colors.lightgray, fg = colors.white }
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.visual = {
|
|
|
|
a = { bg = colors.yellow, fg = colors.black, gui = 'bold', },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white, },
|
|
|
|
c = { bg = colors.inactivegray, fg = colors.black },
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.replace = {
|
|
|
|
a = { bg = colors.red, fg = colors.black, gui = 'bold', },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white, },
|
|
|
|
c = { bg = colors.black, fg = colors.white },
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.command = {
|
|
|
|
a = { bg = colors.green, fg = colors.black, gui = 'bold', },
|
|
|
|
b = { bg = colors.lightgray, fg = colors.white, },
|
|
|
|
c = { bg = colors.inactivegray, fg = colors.black },
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
gruvbox.inactive = {
|
|
|
|
a = { bg = colors.darkgray, fg = colors.gray, gui = 'bold', },
|
|
|
|
b = { bg = colors.darkgray, fg = colors.gray, },
|
|
|
|
c = { bg = colors.darkgray, fg = colors.gray },
|
2020-12-30 14:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 01:35:09 +00:00
|
|
|
return gruvbox
|