summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-08-30 18:26:25 -0400
committerchristianchiarulli <[email protected]>2021-08-30 18:26:25 -0400
commitb22a3ccae6a23b69559401b790d7ca16d0c8e166 (patch)
tree2a45e14cae67d2930677406f1eb3e82ebf19866f /lua
parentafa0efd5ddd0733656641eed6b714e7eee5d01cc (diff)
fix: blue -> cyan for telescope border
Diffstat (limited to 'lua')
-rw-r--r--lua/onedarker/LSP.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/onedarker/LSP.lua b/lua/onedarker/LSP.lua
index f2df59bd..d2d3a870 100644
--- a/lua/onedarker/LSP.lua
+++ b/lua/onedarker/LSP.lua
@@ -27,7 +27,7 @@ local LSP = {
QuickScopeSecondary = { fg = C.cyan_test, style = "underline" },
TelescopeSelection = { fg = C.hint_blue },
TelescopeMatching = { fg = C.info_yellow, style = "bold" },
- TelescopeBorder = { fg = C.blue, bg = Config.transparent_background and "NONE" or C.bg },
+ TelescopeBorder = { fg = C.cyan, bg = Config.transparent_background and "NONE" or C.bg },
TelescopePromptPrefix = { fg = C.purple },
NvimTreeFolderIcon = { fg = C.blue },
NvimTreeIndentMarker = { fg = C.gray },