summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-06-20 04:44:49 +0100
committerjao <jao@gnu.org>2021-06-20 04:44:49 +0100
commit5b95110a6f81635b7b5c665548cf43813da27df8 (patch)
tree7da1919655c3d4bc6d8b53ead46f5a917f2091ee /email.org
parent19b0db54567fa807087c833d44b1a5454e437b81 (diff)
downloadelibs-5b95110a6f81635b7b5c665548cf43813da27df8.tar.gz
elibs-5b95110a6f81635b7b5c665548cf43813da27df8.tar.bz2
color tweaks for dark theme
Diffstat (limited to 'email.org')
-rw-r--r--email.org9
1 files changed, 5 insertions, 4 deletions
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))))