nvimdev / dashboard-nvim

vim dashboard
MIT License
2.39k stars 192 forks source link

What highlight groups are responsible for the text color on the dashboard? #489

Closed MrCherub closed 4 weeks ago

MrCherub commented 1 month ago

I am trying to change this yellowish color for my "find file, find dotfiles", etc...,to something else but nothing seems to work. What can I use to change the color of the text? Here is what I currently doing to try and fix this vim.api.nvim_set_hl(0, 'Normal', { fg = '#ffffff' }) -- Set normal text to white vim.api.nvim_set_hl(0, 'String', { fg = '#ffffff' }) -- Set string text to white vim.api.nvim_set_hl(0, 'MoreMsg', { fg = '#ffffff' }) -- Set "more" messages to white vim.api.nvim_set_hl(0, 'Title', { fg = '#ffffff' }) -- Set titles to white vim.api.nvim_set_hl(0, 'Search', { fg = '#ffffff' }) -- Set search text to white image

polirritmico commented 4 weeks ago

Try with DashboardDesc. The highlight names are in the Highlight section in the README.