Add missing color: gray
This commit is contained in:
parent
53609156c9
commit
f5ab679260
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ M.colors = function()
|
||||||
}
|
}
|
||||||
|
|
||||||
local is_dark = vim.opt.background:get() == 'dark'
|
local is_dark = vim.opt.background:get() == 'dark'
|
||||||
local palette = {}
|
local palette = { gray = c.gray }
|
||||||
|
|
||||||
for i = 0, 4, 1 do
|
for i = 0, 4, 1 do
|
||||||
palette['fg' .. tostring(i)] = c[(is_dark and 'light' or 'dark') .. tostring(i)]
|
palette['fg' .. tostring(i)] = c[(is_dark and 'light' or 'dark') .. tostring(i)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue