From: Lars Ingebrigtsen Date: Fri, 13 Apr 2018 20:52:16 +0000 (+0200) Subject: Revert "Add colors to faces that lack them." X-Git-Tag: emacs-27.0.90~5235 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=52a5bc89c92cb4be88d9ec6eb2df178560559320;p=emacs.git Revert "Add colors to faces that lack them." This reverts commit 16748a5f6bd57ec0967ecb5e14ffe8af5f43d888. From the discussion on the ding mailing list, I said: I think the colours should be reverted back to what they were before the change. Normal text should be white on black (if you have a dark background), and colours should be used to emphasise or de-emphasise certain text. Following that principle, normal Gnus groups should be white, not ... er... what are they now? Teal? --- diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index fb2ae192f14..2786323f671 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -356,7 +356,7 @@ be set in `.emacs' instead." (defface gnus-group-news-2-empty '((((class color) (background dark)) - (:foreground "turquoise4")) + (:foreground "turquoise")) (((class color) (background light)) (:foreground "CadetBlue4")) @@ -373,10 +373,10 @@ be set in `.emacs' instead." (defface gnus-group-news-3-empty '((((class color) (background dark)) - (:foreground "turquoise3")) + ()) (((class color) (background light)) - (:foreground "DeepSkyBlue4")) + ()) (t ())) "Level 3 empty newsgroup face." @@ -390,10 +390,10 @@ be set in `.emacs' instead." (defface gnus-group-news-4-empty '((((class color) (background dark)) - (:foreground "turquoise2")) + ()) (((class color) (background light)) - (:foreground "DeepSkyBlue3")) + ()) (t ())) "Level 4 empty newsgroup face." @@ -407,10 +407,10 @@ be set in `.emacs' instead." (defface gnus-group-news-5-empty '((((class color) (background dark)) - (:foreground "turquoise1")) + ()) (((class color) (background light)) - (:foreground "DeepSkyBlue2")) + ()) (t ())) "Level 5 empty newsgroup face."