summaryrefslogtreecommitdiff
path: root/modally-faces.el
diff options
context:
space:
mode:
authorBlake Romero <blake@developercraft.com>2025-10-12 16:45:28 +0100
committerBlake Romero <blake@developercraft.com>2025-10-12 16:45:28 +0100
commit5f66bffb829562d3cc7fa1afe156ad109cd5424b (patch)
treea5b1ee25c427990c3fa4f9b206adca1c527a622c /modally-faces.el
parent5394c2302dd75216e3c7ad2538e08c33b7e96d63 (diff)
Add light theme & renamed active/inactive face
Diffstat (limited to 'modally-faces.el')
-rw-r--r--modally-faces.el16
1 files changed, 8 insertions, 8 deletions
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)