summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-20 23:47:13 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-20 23:47:13 +0100
commit822e15fe660dd93a0cb6f45e8ea4d0b30687e529 (patch)
tree35348b519cdfbe3da4fc7fa039d0fd33d758fbd1 /lua
parent5a33a1c9b66b990f6dad6e251fff1cbc0b254784 (diff)
Update Selection and Border color in Telescope
Diffstat (limited to 'lua')
-rw-r--r--lua/no-clown-fiesta/Telescope.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/Telescope.lua b/lua/no-clown-fiesta/Telescope.lua
index 45caca2..10d2fb6 100644
--- a/lua/no-clown-fiesta/Telescope.lua
+++ b/lua/no-clown-fiesta/Telescope.lua
@@ -1,8 +1,8 @@
local Telescope = {
TelescopeNormal = { fg = C.fg, bg = C.bg },
- TelescopeSelection = { fg = C.light_gray, bg = C.accent },
+ TelescopeSelection = { fg = C.fg, bg = C.accent },
TelescopeMatching = { fg = C.info_yellow, style = "bold" },
- TelescopeBorder = { fg = C.light_gray, bg = C.bg },
+ TelescopeBorder = { fg = C.medium_gray, bg = C.bg },
}
return Telescope