Mofiqul / dracula.nvim

Dracula colorscheme for neovim written in Lua
MIT License
594 stars 102 forks source link

Hard to read text when using LSP hover #109

Closed halshar closed 1 year ago

halshar commented 1 year ago

For LSP hover, it's hard to see the text as the popup-box color is exactly the same as the background color.

Here, on the left I've dracula/vim and on the right I've dracula.nvim and for the former I can see the popup-box and the text correctly. hover-issue

For bigger help messages the text becomes completely unreadable.

Mofiqul commented 1 year ago

@ryouiki-tenkai - It's needs to be fixed but for now you can use

require("dracula").setup({
  overrides: {
    NormalFloat = { fg = colors.fg, bg = colors.bg, } --- change fg and bg whatever color you like
  }
})

Check the README for more option.

halshar commented 1 year ago

thank you :)