Add missing color: gray

This commit is contained in:
Fernando Schauenburg 2023-08-13 02:43:14 +02:00
parent 53609156c9
commit f5ab679260

View file

@ -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)]