about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-02-27 20:45:12 +0900
committersefidel <contact@sefidel.net>2023-02-27 20:45:12 +0900
commit87ae308562d4318f6f9e754b763ec4ee6f5aed02 (patch)
treedad9f95b1272ec66fd5fe35b0bd055b4162cb39e /fnl/nvrc/colors.fnl
parent97a4eb0b5acbd16e4d8bca0829cca95d92a44776 (diff)
downloadnvimrc-87ae308562d4318f6f9e754b763ec4ee6f5aed02.tar.gz
nvimrc-87ae308562d4318f6f9e754b763ec4ee6f5aed02.zip
feat(colors): use darker bg for completions
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl7
1 files changed, 7 insertions, 0 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index a5df7fc..70c57e3 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -2,6 +2,7 @@
 
 (local colors {:bg "#151515"
                :light_bg "#333333"
+               :light_nt "#555555"
                :graphite "#888888"
                :fg "#e8e8d3"
                :red "#cf6a4c"
@@ -26,6 +27,11 @@
   (highlight! :StatusLineAccent {:fg (. colors :accent) :bg (. colors :light_bg)})
   (highlight! :StatusLineAccentBold {:fg (. colors :accent) :bg (. colors :light_bg) :bold true})
 
+  ; Completions
+  (highlight! :Pmenu {:fg (. colors :fg) :bg (. colors :light_bg)})
+  (highlight! :PmenuSel {:fg (. colors :fg) :bg (. colors :light_nt)})
+  (highlight! :PmenuThumb {:bg (. colors :fg)})
+
   ; LSP
   (highlight! :DiagnosticError {:fg (. colors :red)})
   (highlight! :DiagnosticWarn {:fg (. colors :yellow)})
@@ -37,6 +43,7 @@
   (highlight! :DiagnosticSignInfo {:fg (. colors :green) :bg (. colors :light_bg)})
   (highlight! :DiagnosticSignHint {:fg (. colors :graphite) :bg (. colors :light_bg)})
 
+  ; Leap
   (highlight! :LeapMatch {:fg (. colors :selection) :underline true :bold true :nocombine true})
   (highlight! :LeapLabelPrimary {:fg :black :bg (. colors :selection) :bold true})
   (highlight! :LeapLabelSecondary {:fg :black :bg (. colors :accent) :bold true}))