From 2240f44a4a449ca7d15441a1111258f98ea65f3b Mon Sep 17 00:00:00 2001 From: Max Miliano Date: Fri, 24 Mar 2023 15:12:36 -0300 Subject: [PATCH] changes: telescope title color --- CONTRIBUTING.md | 4 ++++ README.md | 1 - dracula-soft.toml | 2 +- dracula.toml | 2 +- lua/dracula/themes/init.lua | 2 +- lua/dracula/themes/soft.lua | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..57e2db8 --- /dev/null +++ b/CONTRIBUTING.md @@ -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. diff --git a/README.md b/README.md index b641cc6..16c0500 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/dracula-soft.toml b/dracula-soft.toml index b58debf..8210221 100644 --- a/dracula-soft.toml +++ b/dracula-soft.toml @@ -289,7 +289,7 @@ SagaNormal = 'link:NormalFloat' [Telescope] - TelescopeTitle = 'link:Title' + TelescopeTitle = 'cyan - r' TelescopeNormal = 'link:NormalFloat' TelescopeSelection = 'hint' TelescopeMatching = 'info - b' diff --git a/dracula.toml b/dracula.toml index 47c71d9..559812d 100644 --- a/dracula.toml +++ b/dracula.toml @@ -289,7 +289,7 @@ SagaNormal = 'link:NormalFloat' [Telescope] - TelescopeTitle = 'link:Title' + TelescopeTitle = 'cyan - r' TelescopeNormal = 'link:NormalFloat' TelescopeSelection = 'hint' TelescopeMatching = 'info - b' diff --git a/lua/dracula/themes/init.lua b/lua/dracula/themes/init.lua index e179edf..a86312f 100644 --- a/lua/dracula/themes/init.lua +++ b/lua/dracula/themes/init.lua @@ -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, }) diff --git a/lua/dracula/themes/soft.lua b/lua/dracula/themes/soft.lua index 2b0aec7..9d0c5ad 100644 --- a/lua/dracula/themes/soft.lua +++ b/lua/dracula/themes/soft.lua @@ -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, })