branch: externals/modus-themes
commit ee27621ce8837378fb5bbca10d67855018a1ffa2
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Use a wavy underline style for Notmuch tag addition and removal
This way the notmuch-tag-deleted is not using a style that is unique
to it. The wavy underline is easy to spot and does not obfuscate the
text of the tag.
Thanks to Morgan Willcock for discussing with me the use of the
:strike-through style in issue 169:
<https://github.com/protesilaos/modus-themes/issues/169>.
The plan is to review all uses of :strike-through to determine which
ones actually benefit from it.
---
modus-themes.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modus-themes.el b/modus-themes.el
index d713ca83cf..0e5ca76fa2 100644
--- a/modus-themes.el
+++ b/modus-themes.el
@@ -6209,8 +6209,8 @@ FG and BG are the main colors."
`(notmuch-search-non-matching-authors ((,c :foreground ,fg-dim)))
`(notmuch-search-subject ((,c :foreground ,fg-main)))
`(notmuch-search-unread-face ((,c :inherit bold)))
- `(notmuch-tag-added ((,c :underline ,info)))
- `(notmuch-tag-deleted ((,c :strike-through ,err)))
+ `(notmuch-tag-added ((,c :underline (:style wave :color ,underline-note)
:foreground ,info)))
+ `(notmuch-tag-deleted ((,c :underline (:style wave :color ,underline-err)
:foreground ,err)))
`(notmuch-tag-face ((,c :foreground ,accent-0)))
`(notmuch-tag-flagged ((,c :foreground ,keyword)))
`(notmuch-tag-unread ((,c :foreground ,accent-1)))