From 5b95110a6f81635b7b5c665548cf43813da27df8 Mon Sep 17 00:00:00 2001 From: jao Date: Sun, 20 Jun 2021 04:44:49 +0100 Subject: color tweaks for dark theme --- email.org | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'email.org') diff --git a/email.org b/email.org index 9010012..78d4679 100644 --- a/email.org +++ b/email.org @@ -514,14 +514,15 @@ (use-package notmuch-tree :config - (dolist (f '(notmuch-tree-match-tree-face - notmuch-tree-no-match-tree-face)) - (set-face-attribute f nil :family "Fira Code" :foreground "grey60")) + (let ((fg (face-attribute 'jao-themes-dimm :foreground))) + (dolist (f '(notmuch-tree-match-tree-face + notmuch-tree-no-match-tree-face)) + (set-face-attribute f nil :family "Fira Code" :foreground fg))) (defun jao-notmuch--format-field (fun field &rest args) (let ((rs (apply fun field args))) (cond ((and (stringp field) (string= field "tree")) - (replace-regexp-in-string "►" "→" rs)) + (replace-regexp-in-string "►" "" rs)) ;; "→" ((not (stringp field)) (truncate-string-to-width rs 100)) (t rs)))) -- cgit v1.2.3