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
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