From be3d74741520810012e684ed65d60b236ab83a5d Mon Sep 17 00:00:00 2001 From: JSDurand Date: Fri, 23 Dec 2022 20:15:42 +0800 Subject: modeline: replace some uses of the doom faces * modeline.el (modeline-format-buffer-status): Use other faces for the mode line. --- modeline.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modeline.el') diff --git a/modeline.el b/modeline.el index bbf75b2..eb30b93 100644 --- a/modeline.el +++ b/modeline.el @@ -269,21 +269,21 @@ MAP is the local keymap of the text." (cond ((and buffer-file-name (buffer-modified-p)) (format-mode-line "M" (cond (active-p - 'doom-modeline-buffer-modified) + 'compilation-error) (t 'mode-line-inactive))))) ;; read-only? (cond (buffer-read-only (format-mode-line "R" (cond (active-p - 'doom-modeline-urgent) + 'modus-themes-fg-cyan-intense) (t 'mode-line-inactive))))) ;; narrow? (cond ((buffer-narrowed-p) (format-mode-line "N" (cond (active-p - 'doom-modeline-warning) + 'compilation-warning) (t 'mode-line-inactive)))))))) ;;;; Buffer position -- cgit v1.2.3-18-g5258