From 8cd45badb7149526f0dfccc4480a689df0f14d0e Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sat, 1 Jul 2023 13:24:04 +0100 Subject: [PATCH] feat: modeline support Currently supports: - NANO-modeline - bespoke-modeline (partial) --- hazakura-theme.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hazakura-theme.el b/hazakura-theme.el index b57b84c..8ff96c7 100644 --- a/hazakura-theme.el +++ b/hazakura-theme.el @@ -67,6 +67,20 @@ ;; Modeline (mode-line (:background bg-light)) + ;; NANO-modeline + (nano-modeline-active (:box () :foreground fg :background bg-light)) + (nano-modeline-inactive (:box () :foreground highlight :background bg-light)) + (nano-modeline-status (:foreground fg :background hazakura-purple :weight 'bold)) + + ;; Bespoke modeline + (bespoke-modeline-active-status-** (:foreground fg :background hazakura-blue :weight 'bold)) + (bespoke-modeline-active-status-RW (:foreground fg :background hazakura-purple :weight 'bold)) + (bespoke-modeline-active-status-RO (:foreground fg :background hazakura-magenta :weight 'bold)) + (bespoke-modeline-inactive (:background bg-light :foreground highlight)) + (bespoke-modeline-inactive-name (:background bg-light :foreground highlight)) + (bespoke-modeline-inactive-primary (:background bg-light :foreground highlight)) + (bespoke-modeline-inactive-secondary (:background bg-light :foreground highlight)) + ;; Window (window-divider (:foreground bg :background bg)) (window-divider-first-pixel (:foreground bg :background bg))