diff options
| author | Sam Steingold | 2017-11-03 11:53:38 -0400 |
|---|---|---|
| committer | Sam Steingold | 2017-11-03 12:00:54 -0400 |
| commit | 16748a5f6bd57ec0967ecb5e14ffe8af5f43d888 (patch) | |
| tree | 8902bf932c2daac685c0400b2cdea2b3ce16962e | |
| parent | 620247ac205b80ceb142ee70500ab2c3ffa46fe2 (diff) | |
| download | emacs-16748a5f6bd57ec0967ecb5e14ffe8af5f43d888.tar.gz emacs-16748a5f6bd57ec0967ecb5e14ffe8af5f43d888.zip | |
Add colors to faces that lack them.
(gnus-group-news-X-empty): Add colors for X=3,4,5.
| -rw-r--r-- | lisp/gnus/gnus.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 01e75120434..0b6f72870ee 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -361,7 +361,7 @@ be set in `.emacs' instead." | |||
| 361 | (defface gnus-group-news-2-empty | 361 | (defface gnus-group-news-2-empty |
| 362 | '((((class color) | 362 | '((((class color) |
| 363 | (background dark)) | 363 | (background dark)) |
| 364 | (:foreground "turquoise")) | 364 | (:foreground "turquoise4")) |
| 365 | (((class color) | 365 | (((class color) |
| 366 | (background light)) | 366 | (background light)) |
| 367 | (:foreground "CadetBlue4")) | 367 | (:foreground "CadetBlue4")) |
| @@ -384,10 +384,10 @@ be set in `.emacs' instead." | |||
| 384 | (defface gnus-group-news-3-empty | 384 | (defface gnus-group-news-3-empty |
| 385 | '((((class color) | 385 | '((((class color) |
| 386 | (background dark)) | 386 | (background dark)) |
| 387 | ()) | 387 | (:foreground "turquoise3")) |
| 388 | (((class color) | 388 | (((class color) |
| 389 | (background light)) | 389 | (background light)) |
| 390 | ()) | 390 | (:foreground "DeepSkyBlue4")) |
| 391 | (t | 391 | (t |
| 392 | ())) | 392 | ())) |
| 393 | "Level 3 empty newsgroup face." | 393 | "Level 3 empty newsgroup face." |
| @@ -407,10 +407,10 @@ be set in `.emacs' instead." | |||
| 407 | (defface gnus-group-news-4-empty | 407 | (defface gnus-group-news-4-empty |
| 408 | '((((class color) | 408 | '((((class color) |
| 409 | (background dark)) | 409 | (background dark)) |
| 410 | ()) | 410 | (:foreground "turquoise2")) |
| 411 | (((class color) | 411 | (((class color) |
| 412 | (background light)) | 412 | (background light)) |
| 413 | ()) | 413 | (:foreground "DeepSkyBlue3")) |
| 414 | (t | 414 | (t |
| 415 | ())) | 415 | ())) |
| 416 | "Level 4 empty newsgroup face." | 416 | "Level 4 empty newsgroup face." |
| @@ -430,10 +430,10 @@ be set in `.emacs' instead." | |||
| 430 | (defface gnus-group-news-5-empty | 430 | (defface gnus-group-news-5-empty |
| 431 | '((((class color) | 431 | '((((class color) |
| 432 | (background dark)) | 432 | (background dark)) |
| 433 | ()) | 433 | (:foreground "turquoise1")) |
| 434 | (((class color) | 434 | (((class color) |
| 435 | (background light)) | 435 | (background light)) |
| 436 | ()) | 436 | (:foreground "DeepSkyBlue2")) |
| 437 | (t | 437 | (t |
| 438 | ())) | 438 | ())) |
| 439 | "Level 5 empty newsgroup face." | 439 | "Level 5 empty newsgroup face." |