From c7b34aab545af4f20daf26638536049865e75410 Mon Sep 17 00:00:00 2001 From: jao Date: Thu, 28 Oct 2021 01:45:12 +0100 Subject: and how about initial handling of colors? --- lib/themes/jao-light-theme.el | 1 + lib/themes/jao-themes.el | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/themes/jao-light-theme.el b/lib/themes/jao-light-theme.el index 828eb20..1dc1303 100644 --- a/lib/themes/jao-light-theme.el +++ b/lib/themes/jao-light-theme.el @@ -125,6 +125,7 @@ (lui-track-bar (p dimm) :height 0.2 nul nil ex) (magit-diff-context-highlight (c nil yellow) ex) (magit-diff-hunk-heading-highlight (c nil yellow) it bf) + (message-header-subject (p f00) bf) (mode-line (c "grey30" dimm-background-3) :box (:line-width -1 :color "grey90")) (mode-line-inactive (c "grey40" dimm-background-4) diff --git a/lib/themes/jao-themes.el b/lib/themes/jao-themes.el index d3f6baa..90be19f 100644 --- a/lib/themes/jao-themes.el +++ b/lib/themes/jao-themes.el @@ -1165,10 +1165,12 @@ (f-alist (assq-delete-all 'foreground-color f-alist))) (when jao-themes--fg (push (cons 'foreground-color jao-themes--fg) f-alist) - (set-frame-parameter nil 'foreground-color jao-themes--fg)) + (when (stringp jao-themes--fg) + (set-frame-parameter nil 'foreground-color jao-themes--fg))) (when jao-themes--bg (push (cons 'background-color jao-themes--bg) f-alist) - (set-frame-parameter nil 'background-color jao-themes--fg)) + (when (stringp jao-themes--bg) + (set-frame-parameter nil 'background-color jao-themes--bg))) (setq window-system-default-frame-alist (cons (cons kind f-alist) -- cgit v1.2.3