diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2018-12-26 02:28:10 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2018-12-26 02:28:10 +0200 |
commit | 092b36dbd65ce8ab8efb4562a79709b3244ca8a8 (patch) | |
tree | 13e43d40e601e773804b84725299ec61291ddb2b /lisp/vc | |
parent | 4fd19c236f5647d586280b85e9606b3e5dbdff4f (diff) | |
download | emacs-092b36dbd65ce8ab8efb4562a79709b3244ca8a8.tar.gz |
Tone down diff-added and diff-removed in light themes
* lisp/vc/diff-mode.el (diff-removed, diff-added): Tone down
light background colors (bug#33567).
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/diff-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index 7b37bed7ae8..a4c0618c672 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -302,7 +302,7 @@ well." '((default :inherit diff-changed) (((class color) (min-colors 88) (background light)) - :background "#ffdddd") + :background "#ffeeee") (((class color) (min-colors 88) (background dark)) :background "#553333") (((class color)) @@ -313,7 +313,7 @@ well." '((default :inherit diff-changed) (((class color) (min-colors 88) (background light)) - :background "#ddffdd") + :background "#eeffee") (((class color) (min-colors 88) (background dark)) :background "#335533") (((class color)) |