1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* lisp/vc/diff-mode.el (diff-changed-unspecified): Restore old colors.

Restore yellow colors previously used in the 'diff-changed' face.
Copy color values from 'smerge-base'.  This will distinguish them
from grey 'diff-file-header' and 'diff-hunk-header' in context diffs.
This commit is contained in:
Juri Linkov 2025-11-09 20:14:12 +02:00
parent 1f32ff090a
commit e2531721b4

View file

@ -410,11 +410,11 @@ well."
'((default
:inherit diff-changed)
(((class color) (min-colors 88) (background light))
:background "grey90" :extend t)
:background "#ffffaa" :extend t)
(((class color) (min-colors 88) (background dark))
:background "grey20" :extend t)
:background "#888833" :extend t)
(((class color))
:foreground "grey" :extend t))
:foreground "yellow" :extend t))
"`diff-mode' face used to highlight changed lines."
:version "28.1")