summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-20 23:32:38 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-20 23:32:38 +0100
commit7b939c6821585f019e28d3038819bb305eecc17d (patch)
treee72b9b07bac1dd049b39340314a2dc1cd8be5763 /lua/no-clown-fiesta
parente74876c94919bb3b42214978a958772eed7d3629 (diff)
Add Telescope colors
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r--lua/no-clown-fiesta/Telescope.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/Telescope.lua b/lua/no-clown-fiesta/Telescope.lua
new file mode 100644
index 0000000..45caca2
--- /dev/null
+++ b/lua/no-clown-fiesta/Telescope.lua
@@ -0,0 +1,8 @@
+local Telescope = {
+ TelescopeNormal = { fg = C.fg, bg = C.bg },
+ TelescopeSelection = { fg = C.light_gray, bg = C.accent },
+ TelescopeMatching = { fg = C.info_yellow, style = "bold" },
+ TelescopeBorder = { fg = C.light_gray, bg = C.bg },
+}
+
+return Telescope