about summary refs log tree commit diff
path: root/fnl/nvrc/colors.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-03-12 17:08:58 +0900
committersefidel <contact@sefidel.net>2022-03-12 17:08:58 +0900
commite50c43d90b355fda2dbaa9503104d61b9ae6f497 (patch)
tree1ce50877a2dd34138aaa633004464aab8280ef26 /fnl/nvrc/colors.fnl
parentde3a1749de544f44489e96e4f6ba96700d884fb2 (diff)
downloadnvimrc-e50c43d90b355fda2dbaa9503104d61b9ae6f497.tar.gz
nvimrc-e50c43d90b355fda2dbaa9503104d61b9ae6f497.zip
feat: avalanche -> jellybeans
Diffstat (limited to 'fnl/nvrc/colors.fnl')
-rw-r--r--fnl/nvrc/colors.fnl21
1 files changed, 14 insertions, 7 deletions
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)})