diff options
| -rw-r--r-- | lisp/gnus-cus.el | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lisp/gnus-cus.el b/lisp/gnus-cus.el index 37a30b00a84..ee78453cd8d 100644 --- a/lisp/gnus-cus.el +++ b/lisp/gnus-cus.el | |||
| @@ -43,8 +43,11 @@ | |||
| 43 | "turquoise")) | 43 | "turquoise")) |
| 44 | 44 | ||
| 45 | (defvar gnus-face-dark-name-list | 45 | (defvar gnus-face-dark-name-list |
| 46 | '("dark blue" "firebrick" "dark green" "OrangeRed" | 46 | (list |
| 47 | "dark khaki" "dark violet" "SteelBlue4")) | 47 | ;; Not all servers have dark blue in rgb.txt. |
| 48 | (if (x-color-defined-p "dark blue") "dark blue" "royal blue") | ||
| 49 | "firebrick" "dark green" "OrangeRed" | ||
| 50 | "dark khaki" "dark violet" "SteelBlue4")) | ||
| 48 | ; CornflowerBlue SeaGreen OrangeRed SteelBlue4 DeepPink3 | 51 | ; CornflowerBlue SeaGreen OrangeRed SteelBlue4 DeepPink3 |
| 49 | ; DarkOlviveGreen4 | 52 | ; DarkOlviveGreen4 |
| 50 | 53 | ||
| @@ -635,7 +638,12 @@ ticked: The number of ticked articles.") | |||
| 635 | ((and mailp (eq level 2)) . | 638 | ((and mailp (eq level 2)) . |
| 636 | ,(custom-face-lookup "HotPink3" nil nil t)) | 639 | ,(custom-face-lookup "HotPink3" nil nil t)) |
| 637 | ((and mailp (eq level 3)) . | 640 | ((and mailp (eq level 3)) . |
| 638 | ,(custom-face-lookup "dark magenta" nil nil t)) | 641 | ,(custom-face-lookup |
| 642 | ;; Not all servers have dark magenta in rgb.txt. | ||
| 643 | (if (x-color-defined-p "dark magenta") | ||
| 644 | "dark magenta" | ||
| 645 | "maroon") | ||
| 646 | nil nil t)) | ||
| 639 | ((and mailp (eq level 4)) . | 647 | ((and mailp (eq level 4)) . |
| 640 | ,(custom-face-lookup "DeepPink4" nil nil t)) | 648 | ,(custom-face-lookup "DeepPink4" nil nil t)) |
| 641 | ((and mailp (> level 4)) . | 649 | ((and mailp (> level 4)) . |