el/dot-emacs.el: Fix `show-paren-match' default colour.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 1 Aug 2017 12:14:22 +0000 (13:14 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 1 Aug 2017 12:14:22 +0000 (13:14 +0100)
Try not to rely on closest-colour guesswork, even though it seems to
work pretty well.

el/dot-emacs.el

index 2fdc9ab..02bf93d 100644 (file)
@@ -1223,7 +1223,8 @@ doesn't match any of the regular expressions in
 (mdw-define-face fringe
   (t :foreground "yellow"))
 (mdw-define-face show-paren-match
-  (((class color)) :background "darkgreen")
+  (((min-colors 64)) :background "darkgreen")
+  (((class color)) :background "green")
   (t :underline t))
 (mdw-define-face show-paren-mismatch
   (((class color)) :background "red")