From 975fc8f6f15c8c213cfa3b978cf0a23e42b684ac Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 13 Mar 2022 16:09:06 +0900 Subject: feat: softjelly --- fnl/nvrc/colors.fnl | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'fnl/nvrc/colors.fnl') diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 34499ec..db3234a 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 "#333333" + :light_bg "#303030" :graphite "#888888" - :fg "#e8e8d3" + :fg "#cbc0ab" :red "#cf6a4c" - :yellow "#fad07a" + :yellow "#be9f5f" :green "#99ad6a" :skyblue "#8fbfdc" - :accent "#ffb964"}) + :accent "#d8a465"}) (lambda colors.apply [colorscheme] @@ -17,8 +17,7 @@ (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! :StatusLineNC {:fg (. colors :graphite) :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