]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak shortdoc colours on light backgrounds
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 11 Oct 2020 10:12:47 +0000 (12:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 11 Oct 2020 10:12:47 +0000 (12:12 +0200)
* lisp/emacs-lisp/shortdoc.el (shortdoc-section)
(shortdoc-example): Lighten up colours on light backgrounds.

lisp/emacs-lisp/shortdoc.el

index e2e5c0f573269063066860ce71a8a7e0c3b762f6..38ecee832839d5582f5ae28b201580c68cbe5846 100644 (file)
                :background "#303030" :extend t))
     (((class color) (background light))
      (:inherit variable-pitch
-               :background "#d0d0d0" :extend t)))
+               :background "#f0f0f0" :extend t)))
   "Face used for a section.")
 
 (defface shortdoc-example
   '((((class color) (background dark))
      (:background "#202020" :extend t))
     (((class color) (background light))
-     (:background "#c0c0c0" :extend t)))
+     (:background "#e8e8e8" :extend t)))
   "Face used for examples.")
 
 (defvar shortdoc--groups nil)