[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 16748a5 1/2: Add colors to faces that lack them.
From: |
Sam Steingold |
Subject: |
[Emacs-diffs] master 16748a5 1/2: Add colors to faces that lack them. |
Date: |
Fri, 3 Nov 2017 15:25:15 -0400 (EDT) |
branch: master
commit 16748a5f6bd57ec0967ecb5e14ffe8af5f43d888
Author: Sam Steingold <address@hidden>
Commit: Sam Steingold <address@hidden>
Add colors to faces that lack them.
(gnus-group-news-X-empty): Add colors for X=3,4,5.
---
lisp/gnus/gnus.el | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el
index 01e7512..0b6f728 100644
--- a/lisp/gnus/gnus.el
+++ b/lisp/gnus/gnus.el
@@ -361,7 +361,7 @@ be set in `.emacs' instead."
(defface gnus-group-news-2-empty
'((((class color)
(background dark))
- (:foreground "turquoise"))
+ (:foreground "turquoise4"))
(((class color)
(background light))
(:foreground "CadetBlue4"))
@@ -384,10 +384,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."
@@ -407,10 +407,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."
@@ -430,10 +430,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."