From ee295c9dc1b46ea2798ff9fe38e04e3b26258bac Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 26 Mar 2022 10:44:07 +0900 Subject: feat(colors): tweak leap.nvim highlights --- fnl/nvrc/colors.fnl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'fnl/nvrc/colors.fnl') 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 -- cgit 1.4.1