* etc/themes/deeper-blue-theme.el (diff-added, diff-changed, diff-removed):
Set face definitions explicitly. Inherit indicator faces from them. Fixes: debbugs:17695
This commit is contained in:
parent
136c315e0b
commit
9f7c9816f6
3 changed files with 13 additions and 7 deletions
|
@ -1,3 +1,9 @@
|
|||
2014-06-05 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* themes/deeper-blue-theme.el (diff-added, diff-changed, diff-removed):
|
||||
Set face definitions explicitly. Inherit indicator faces from them.
|
||||
(Bug#17695)
|
||||
|
||||
2014-05-24 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Specify coding if Latin-1 Emacs would misinterpret (Bug#17575).
|
||||
|
|
2
etc/TODO
2
etc/TODO
|
@ -651,7 +651,7 @@ rather than interactively. This a trivial one-liner in easy-mode.el.
|
|||
[As of trunk r109635, 2012-08-15, the event loop no longer polls.]
|
||||
|
||||
**** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back
|
||||
up on top of all others
|
||||
up on top of all others (probably fixed in bug#17439)
|
||||
|
||||
**** free_frame_resources, face colors
|
||||
|
||||
|
|
|
@ -40,19 +40,19 @@
|
|||
`(cperl-hash-face ((,class (:foreground "coral1"))))
|
||||
`(cursor ((,class (:background "green"))))
|
||||
`(default ((,class (:background "#181a26" :foreground "gray80"))))
|
||||
`(diff-added ((,class (nil))))
|
||||
`(diff-changed ((,class (nil))))
|
||||
`(diff-added ((,class (:foreground "white" :background "darkolivegreen"))))
|
||||
`(diff-changed ((,class (:foreground "white" :background "dodgerblue4"))))
|
||||
`(diff-context ((,class (:foreground "seashell4"))))
|
||||
`(diff-file-header ((,class (:background "grey60"))))
|
||||
`(diff-function ((,class (:inherit diff-header))))
|
||||
`(diff-header ((,class (:background "grey45"))))
|
||||
`(diff-hunk-header ((,class (:inherit diff-header))))
|
||||
`(diff-index ((,class (:inherit diff-file-header))))
|
||||
`(diff-indicator-added ((,class (:foreground "white" :background "darkolivegreen"))))
|
||||
`(diff-indicator-changed ((,class (:foreground "white" :background "dodgerblue4"))))
|
||||
`(diff-indicator-removed ((,class (:foreground "white" :background "indianred4"))))
|
||||
`(diff-indicator-added ((,class (:inherit diff-added))))
|
||||
`(diff-indicator-changed ((,class (:inherit diff-changed))))
|
||||
`(diff-indicator-removed ((,class (:inherit diff-removed))))
|
||||
`(diff-refine-change ((,class (:background "skyblue4"))))
|
||||
`(diff-removed ((,class (nil))))
|
||||
`(diff-removed ((,class (:foreground "white" :background "indianred4"))))
|
||||
`(dired-marked ((,class (:background "dodgerblue3" :foreground "white"))))
|
||||
`(ediff-current-diff-A ((,class (:background "green4" :foreground "white"))))
|
||||
`(ediff-current-diff-B ((,class (:background "darkorange3" :foreground "white"))))
|
||||
|
|
Loading…
Add table
Reference in a new issue