Mofiqul / dracula.nvim

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

How to style Telescope window title colours? #89

Closed hmajid2301 closed 1 year ago

hmajid2301 commented 1 year ago

Hi,

I started using this plugin and its great for syntax highlighting. However I noticed there are a few things which aren't coloured correctly. I was able to fix the main greeter page.

I'm using astronvim as a base for my neovim config.

I was wondering if it was possible to colour the titles in the telescope window that opens. I believe this was the case in default colour scheme.

What I meant by titles is Find Files Results etc etc.

image

Any help would be great thanks! Let me know if you need more details.

Link to my config: https://gitlab.com/hmajid2301/dotfiles/-/blob/main/nvim/lua/user/plugins/user.lua

Mofiqul commented 1 year ago

I am not sure what highlight group uses telescope titles. If you know you can just use

overrides = {
    -- Examples
    -- NonText = { fg = dracula.colors().white }, -- set NonText fg to white
    -- NvimTreeIndentMarker = { link = "NonText" }, -- link to NonText highlight
    -- Nothing = {} -- clear highlight of Nothing
  },

in setup function. See README

hmajid2301 commented 1 year ago

Thank you!