maxmx03.solarized.nvim/lua/solarized/themes/default/dashboard.lua
Max Del Canto f0763424b3 refactor: Update Solarized Theme
The Solarized theme has been completely reworked to ensure it is a faithful and accurate port of the original work. All inconsistencies and issues have been resolved.

Added the option to enable or disable highlight groups, solarized now have docs and commands.

BREAKING CHANGE: The highlight and colors callbacks now accept only two parameters, colors and colorhelper table.
2023-06-29 10:28:46 -03:00

24 lines
827 B
Lua

return function(c)
local utils = require('solarized.utils')
local set_hl = utils.set_hl
-- general
set_hl('DashboardHeader', { fg = c.base00 })
set_hl('DashboardFooter', { fg = c.base00 })
-- Hyper
set_hl('DashboardProjectTitle', { fg = c.blue })
set_hl('DashboardProjectTitleIcon', { link = 'DashboardProjectTitle' })
set_hl('DashboardProjectIcon', { link = 'Directory' })
set_hl('DashboardMruTitle', { link = 'DashboardProjectTitle' })
set_hl('DashboardMruIcon', { link = 'DashboardMruTitle' })
set_hl('DashboardFiles', { fg = c.base0 })
set_hl('DashboardShotCutIcon', { fg = c.magenta })
-- Doom theme
set_hl('DashboardDesc', { fg = c.base0 })
set_hl('DashboardKey', { fg = c.magenta })
set_hl('DashboardIcon', { link = 'Directory' })
set_hl('DashboardShotCut', { fg = c.base00 })
end