dashboard-nvim icon indicating copy to clipboard operation
dashboard-nvim copied to clipboard

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

Open MrCherub opened this issue 1 year ago • 0 comments

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

MrCherub avatar Oct 10 '24 23:10 MrCherub