summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/shortdoc.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-10-11 12:12:47 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-10-11 12:12:47 +0200
commitc66165b5c08e12c5dcf494fea42e61df693b80b9 (patch)
treef74562f02d55c6858507530f568ea3ea90b46edb /lisp/emacs-lisp/shortdoc.el
parente441a25daaf785305b77bff8aae666ea21fb3107 (diff)
downloademacs-c66165b5c08e12c5dcf494fea42e61df693b80b9.tar.gz
emacs-c66165b5c08e12c5dcf494fea42e61df693b80b9.tar.bz2
emacs-c66165b5c08e12c5dcf494fea42e61df693b80b9.zip
Tweak shortdoc colours on light backgrounds
* lisp/emacs-lisp/shortdoc.el (shortdoc-section) (shortdoc-example): Lighten up colours on light backgrounds.
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r--lisp/emacs-lisp/shortdoc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index e2e5c0f5732..38ecee83283 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -38,14 +38,14 @@
: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)