diff options
-rw-r--r-- | fnl/nvrc/colors.fnl | 7 |
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})) |