about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-03-13 16:09:06 +0900
committersefidel <contact@sefidel.net>2022-03-13 16:09:06 +0900
commit975fc8f6f15c8c213cfa3b978cf0a23e42b684ac (patch)
treef23bb15d26dacaa8a8ab991e52bece7d86a4656a /fnl/nvrc/colors.fnl
parentb902fc9f0bbeae2c52f075ea2665be52a9dae90c (diff)
downloadnvimrc-975fc8f6f15c8c213cfa3b978cf0a23e42b684ac.tar.gz
nvimrc-975fc8f6f15c8c213cfa3b978cf0a23e42b684ac.zip
feat: softjelly
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl11
1 files changed, 5 insertions, 6 deletions
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})