From cbd70e53876a9e5ff14360e3f9ebb77ead770361 Mon Sep 17 00:00:00 2001
From: sefidel <contact@sefidel.net>
Date: Sat, 12 Mar 2022 17:18:25 +0900
Subject: feat: jellybeans bar

---
 fnl/nvrc/colors.fnl     | 4 +++-
 fnl/nvrc/statusline.fnl | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

(limited to 'fnl/nvrc')

diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index db0e973..34499ec 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -7,7 +7,8 @@
                :red "#cf6a4c"
                :yellow "#fad07a"
                :green "#99ad6a"
-               :accent "#8fbfdc"})
+               :skyblue "#8fbfdc"
+               :accent "#ffb964"})
 
 
 (lambda colors.apply [colorscheme]
@@ -18,6 +19,7 @@
   ; Statusline
   (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})
 
diff --git a/fnl/nvrc/statusline.fnl b/fnl/nvrc/statusline.fnl
index d386ded..76efd45 100644
--- a/fnl/nvrc/statusline.fnl
+++ b/fnl/nvrc/statusline.fnl
@@ -24,7 +24,7 @@
 
 (global statusline {})
 (set statusline.enable (fn []
-                         (table.concat ["%#StatusLineAccent#"
+                         (table.concat ["%#StatusLinePad#"
                                         "▊ "
                                         "%#StatusLine#"
                                         "%#StatusLineAccentBold#"
-- 
cgit 1.4.1