From: Mark Wooding Date: Tue, 1 Aug 2017 12:14:22 +0000 (+0100) Subject: el/dot-emacs.el: Fix `show-paren-match' default colour. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/9cf75a93135e69a4c49f6c3cf70c3d36097999f5?hp=4ccc2909ffaafdf1306bce24bc4229dae17e40d0 el/dot-emacs.el: Fix `show-paren-match' default colour. Try not to rely on closest-colour guesswork, even though it seems to work pretty well. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 2fdc9ab..02bf93d 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -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")