mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
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.
24 lines
827 B
Lua
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
|