about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-05-09 17:51:54 +0900
committersefidel <contact@sefidel.net>2022-05-09 17:51:54 +0900
commit53831367e8deea7cbd471bd48b9681d2a7dd5afb (patch)
tree295447f996726d20e396b0c878cd0dce7b2f0210 /fnl/nvrc/colors.fnl
parent7c1ffc3cf325938e2b42fcaa9fd93d7e99421ba5 (diff)
downloadnvimrc-53831367e8deea7cbd471bd48b9681d2a7dd5afb.tar.gz
nvimrc-53831367e8deea7cbd471bd48b9681d2a7dd5afb.zip
feat(colors): revert softjelly
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl11
1 files changed, 6 insertions, 5 deletions
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})