changes: telescope title color

This commit is contained in:
Max Miliano 2023-03-24 15:12:36 -03:00
parent bc81997a40
commit 2240f44a4a
6 changed files with 8 additions and 5 deletions

4
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,4 @@
#### CONTRIBUTING TO DRACULA
To contribute to Dracula.nvim colorscheme, follow these instructions for using [colorgen-nvim](https://github.com/ChristianChiarulli/colorgen-nvim).
Please be careful not to modify the init.lua and autocmd files. The only folders you need to look at are palettes and themes.

View file

@ -1,5 +1,4 @@
# Dracula for [Neovim](https://neovim.io)
Created with [colorgen-nvim](https://github.com/ChristianChiarulli/colorgen-nvim)
> A dark theme for [Neovim](https://neovim.io).

View file

@ -289,7 +289,7 @@
SagaNormal = 'link:NormalFloat'
[Telescope]
TelescopeTitle = 'link:Title'
TelescopeTitle = 'cyan - r'
TelescopeNormal = 'link:NormalFloat'
TelescopeSelection = 'hint'
TelescopeMatching = 'info - b'

View file

@ -289,7 +289,7 @@
SagaNormal = 'link:NormalFloat'
[Telescope]
TelescopeTitle = 'link:Title'
TelescopeTitle = 'cyan - r'
TelescopeNormal = 'link:NormalFloat'
TelescopeSelection = 'hint'
TelescopeMatching = 'info - b'

View file

@ -264,7 +264,7 @@ theme.set_highlights = function()
hl(0, "SagaNormal", { link = 'NormalFloat' })
-- Telescope
hl(0, "TelescopeTitle", { link = 'Title' })
hl(0, "TelescopeTitle", { fg = c.cyan, bg = 'NONE', reverse=true, })
hl(0, "TelescopeNormal", { link = 'NormalFloat' })
hl(0, "TelescopeSelection", { fg = c.hint, bg = 'NONE' })
hl(0, "TelescopeMatching", { fg = c.info, bg = 'NONE', bold=true, })

View file

@ -264,7 +264,7 @@ theme.set_highlights = function()
hl(0, "SagaNormal", { link = 'NormalFloat' })
-- Telescope
hl(0, "TelescopeTitle", { link = 'Title' })
hl(0, "TelescopeTitle", { fg = c.cyan, bg = 'NONE', reverse=true, })
hl(0, "TelescopeNormal", { link = 'NormalFloat' })
hl(0, "TelescopeSelection", { fg = c.hint, bg = 'NONE' })
hl(0, "TelescopeMatching", { fg = c.info, bg = 'NONE', bold=true, })