flexoki-neovim/lua/flexoki/highlights/dashboard.lua

17 lines
356 B
Lua
Raw Permalink Normal View History

local palette = require('flexoki.palette')
local M = {}
M.groups = function()
local c = palette.palette()
--- @type table<string, vim.api.keyset.highlight>
return {
["DashboardHeader"] = { fg = c.blue, bg = 'NONE' },
["DashboardCenter"] = { fg = c.purple, bg = 'NONE' },
["DashboardFooter"] = { fg = c.cyan, bg = 'NONE' },
}
end
return M