branch: externals/modus-themes
commit ecf36984121d754c2cc56c270ba5fac714b907f0
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>

    Tweak how 'unspecified looks in the modus-themes-list-colors
---
 modus-themes.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modus-themes.el b/modus-themes.el
index 27c1aff1a0..28193a8cc6 100644
--- a/modus-themes.el
+++ b/modus-themes.el
@@ -5008,10 +5008,10 @@ PALETTE is the value of a variable like 
`modus-operandi-palette'."
                            (color (modus-themes-get-color-value name mappings 
theme))) ; resolve a semantic mapping
                 (list name
                       (vector
-                       (if (and (symbolp value)
-                                (not (eq value 'unspecified)))
-                           "Yes"
-                         "")
+                       (cond
+                        ((eq value 'unspecified) "---")
+                        ((symbolp value) "Yes")
+                        (t ""))
                        name-string
                        (propertize value-string 'face `( :foreground ,color))
                        (propertize value-string-padded 'face (list :background 
color

Reply via email to