From 53831367e8deea7cbd471bd48b9681d2a7dd5afb Mon Sep 17 00:00:00 2001 From: sefidel Date: Mon, 9 May 2022 17:51:54 +0900 Subject: feat(colors): revert softjelly --- fnl/nvrc/colors.fnl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 898ed92..7aedfd0 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -1,14 +1,14 @@ (import-macros {: setv!} :nvrc.macro.set) (local colors {:bg "#151515" - :light_bg "#303030" + :light_bg "#333333" :graphite "#888888" - :fg "#cbc0ab" + :fg "#e8e8d3" :red "#cf6a4c" - :yellow "#dcb66a" + :yellow "#fad07a" :green "#99ad6a" :skyblue "#8fbfdc" - :accent "#dfa358" + :accent "#ffb964" :selection "#f0a0c0"}) @@ -18,7 +18,8 @@ (vim.cmd (.. "colorscheme " colorscheme)) ; Statusline - (highlight! :StatusLineNC {:fg (. colors :graphite) :underline true}) + (highlight! :StatusLine {:fg (. colors :fg) :bg (. colors :light_bg)}) + (highlight! :StatusLineNC {:fg (. colors :graphite) :bg (. colors :bg) :underline true}) (highlight! :StatusLinePad {:fg (. colors :skyblue) :bg (. colors :light_bg)}) (highlight! :StatusLineAccent {:fg (. colors :accent) :bg (. colors :light_bg)}) (highlight! :StatusLineAccentBold {:fg (. colors :accent) :bg (. colors :light_bg) :bold true}) -- cgit 1.4.1