mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
changes: telescope title color
This commit is contained in:
parent
bc81997a40
commit
2240f44a4a
4
CONTRIBUTING.md
Normal file
4
CONTRIBUTING.md
Normal 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.
|
||||
|
|
@ -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).
|
||||
|
||||
|
|
|
|||
|
|
@ -289,7 +289,7 @@
|
|||
SagaNormal = 'link:NormalFloat'
|
||||
|
||||
[Telescope]
|
||||
TelescopeTitle = 'link:Title'
|
||||
TelescopeTitle = 'cyan - r'
|
||||
TelescopeNormal = 'link:NormalFloat'
|
||||
TelescopeSelection = 'hint'
|
||||
TelescopeMatching = 'info - b'
|
||||
|
|
|
|||
|
|
@ -289,7 +289,7 @@
|
|||
SagaNormal = 'link:NormalFloat'
|
||||
|
||||
[Telescope]
|
||||
TelescopeTitle = 'link:Title'
|
||||
TelescopeTitle = 'cyan - r'
|
||||
TelescopeNormal = 'link:NormalFloat'
|
||||
TelescopeSelection = 'hint'
|
||||
TelescopeMatching = 'info - b'
|
||||
|
|
|
|||
|
|
@ -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, })
|
||||
|
|
|
|||
|
|
@ -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, })
|
||||
|
|
|
|||
Loading…
Reference in a new issue