From 5f66bffb829562d3cc7fa1afe156ad109cd5424b Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Sun, 12 Oct 2025 16:45:28 +0100 Subject: Add light theme & renamed active/inactive face --- modally-faces.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'modally-faces.el') diff --git a/modally-faces.el b/modally-faces.el index d4eb33d..735cdcd 100644 --- a/modally-faces.el +++ b/modally-faces.el @@ -25,7 +25,7 @@ ;; FACE (defface modally-buffer - '((t :inherit 'success)) + '((t :inherit 'bold)) "A mode-line face used for the buffer name." :group 'modally) @@ -45,17 +45,17 @@ :group 'modally) (defface modally-major-mode - '((t :inherit 'mode-line-emphasis :bold nil)) + '((t :inherit 'mode-line-emphasis)) "A mode-line face used for the major-mode." :group 'modally) (defface modally-git-branch - '((t :foreground "#00bcff")) + '((t :inherit 'success)) "A mode-line face used for the Git branch name." :group 'modally) (defface modally-org-timer - '((t :inherit 'success)) + '((t :inherit 'org-todo)) "A mode-line face used for the org timer." :group 'modally) @@ -64,13 +64,13 @@ "A mode-line face used for a paused org timer." :group 'modally) -(defface modally-active - '((t :foreground "#444444")) +(defface modally-separator-active + '((t :inherit 'mode-line)) "A mode-line face used for the active window." :group 'modally) -(defface modally-inactive - '((t :foreground "#222222")) +(defface modally-separator-inactive + '((t :inherit 'vertical-border)) "A mode-line face used for the inactive window." :group 'modally) -- cgit