From 87ae308562d4318f6f9e754b763ec4ee6f5aed02 Mon Sep 17 00:00:00 2001 From: sefidel Date: Mon, 27 Feb 2023 20:45:12 +0900 Subject: feat(colors): use darker bg for completions --- fnl/nvrc/colors.fnl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'fnl/nvrc/colors.fnl') 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})) -- cgit 1.4.1