From 19cd7d20a3a7af3124195cd427f6f0674416c549 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 14 Jan 2024 15:09:18 +0100 Subject: [PATCH] Update font settings for mode-line --- bundle/bundle--gui.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/bundle/bundle--gui.el b/bundle/bundle--gui.el index 8f3badce..c1c54ca0 100644 --- a/bundle/bundle--gui.el +++ b/bundle/bundle--gui.el @@ -86,12 +86,15 @@ mode-line-end-spaces)) (set-face-attribute 'mode-line nil + :family "MonoLisa" + :slant 'italic + :weight 'bold :background (face-attribute 'default :background) :foreground - (if (member 'doom-one custom-enabled-themes) - "#5B6268" - (face-attribute 'mode-line-inactive :foreground nil 'default)) - :box '(:line-width (1 . 8) :style flat-button) :weight 'bold) + (cond ((member 'doom-one custom-enabled-themes) "#5B6268") + ((member 'doom-nord custom-enabled-themes) "#9099AB") + (t (face-attribute 'mode-line-inactive :foreground))) + :box '(:line-width (1 . 8) :style flat-button)) (set-face-attribute 'mode-line-inactive nil :box '(:line-width (1 . 8) :style flat-button) :weight 'normal)