From e50c43d90b355fda2dbaa9503104d61b9ae6f497 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 12 Mar 2022 17:08:58 +0900 Subject: feat: avalanche -> jellybeans --- fnl/nvrc/colors.fnl | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index bac9140..db0e973 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -1,12 +1,13 @@ (import-macros {: setv!} :nvrc.macro.set) -(local colors {:bg "#232323" - :light_bg "#363636" - :graphite "#717171" - :red "#ff668c" - :yellow "#fac661" - :green "#a8d2a9" - :accent "#c2d6f0"}) +(local colors {:bg "#151515" + :light_bg "#333333" + :graphite "#888888" + :fg "#e8e8d3" + :red "#cf6a4c" + :yellow "#fad07a" + :green "#99ad6a" + :accent "#8fbfdc"}) (lambda colors.apply [colorscheme] @@ -15,11 +16,17 @@ (vim.cmd (.. "colorscheme " colorscheme)) ; Statusline + (highlight! :StatusLine {:fg (. colors :fg) :bg (. colors :light_bg)}) (highlight! :StatusLineNC {:fg (. colors :graphite) :bg (. colors :bg) :underline true}) (highlight! :StatusLineAccent {:fg (. colors :accent) :bg (. colors :light_bg)}) (highlight! :StatusLineAccentBold {:fg (. colors :accent) :bg (. colors :light_bg) :bold true}) ; LSP + (highlight! :DiagnosticError {:fg (. colors :red)}) + (highlight! :DiagnosticWarn {:fg (. colors :yellow)}) + (highlight! :DiagnosticInfo {:fg (. colors :green)}) + (highlight! :DiagnosticHint {:fg (. colors :graphite)}) + (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)}) -- cgit 1.4.1