about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-03-26 10:44:07 +0900
committersefidel <contact@sefidel.net>2022-03-26 10:44:07 +0900
commitee295c9dc1b46ea2798ff9fe38e04e3b26258bac (patch)
tree5f22ed977283bd89fd4cce445ed998def27136be /fnl/nvrc/colors.fnl
parentbe9d60ca4ccf245168d64b922e20ffab734d0778 (diff)
downloadnvimrc-ee295c9dc1b46ea2798ff9fe38e04e3b26258bac.tar.gz
nvimrc-ee295c9dc1b46ea2798ff9fe38e04e3b26258bac.zip
feat(colors): tweak leap.nvim highlights
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl9
1 files changed, 7 insertions, 2 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index a26aa68..898ed92 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -8,7 +8,8 @@
                :yellow "#dcb66a"
                :green "#99ad6a"
                :skyblue "#8fbfdc"
-               :accent "#dfa358"})
+               :accent "#dfa358"
+               :selection "#f0a0c0"})
 
 
 (lambda colors.apply [colorscheme]
@@ -31,6 +32,10 @@
   (highlight! :DiagnosticSignError {:fg (. colors :red) :bg (. colors :light_bg)})
   (highlight! :DiagnosticSignWarn {:fg (. colors :yellow) :bg (. colors :light_bg)})
   (highlight! :DiagnosticSignInfo {:fg (. colors :green) :bg (. colors :light_bg)})
-  (highlight! :DiagnosticSignHint {:fg (. colors :graphite) :bg (. colors :light_bg)}))
+  (highlight! :DiagnosticSignHint {:fg (. colors :graphite) :bg (. colors :light_bg)})
+
+  (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}))
 
 colors