diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-11-30 13:27:11 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-11-30 13:27:11 +0200 |
commit | 64687872f62e7837340b77697d4ccd4f60caaae0 (patch) | |
tree | bf42f6eef4ea64420edba2395ae77914c69a82fd /etc/themes/deeper-blue-theme.el | |
parent | abd3dd3a467fd93ac66db1a13b31787d88a95d55 (diff) | |
download | emacs-64687872f62e7837340b77697d4ccd4f60caaae0.tar.gz |
Add ':extend' attribute to faces and themes
* etc/themes/wombat-theme.el:
* etc/themes/wheatgrass-theme.el:
* etc/themes/tsdh-light-theme.el:
* etc/themes/tsdh-dark-theme.el:
* etc/themes/tango-theme.el:
* etc/themes/tango-dark-theme.el:
* etc/themes/misterioso-theme.el:
* etc/themes/manoj-dark-theme.el:
* etc/themes/light-blue-theme.el:
* etc/themes/leuven-theme.el:
* etc/themes/dichromacy-theme.el:
* etc/themes/deeper-blue-theme.el:
* etc/themes/adwaita-theme.el: Add ':extend' attribute to all
faces that are by default defined with it.
* lisp/vc/smerge-mode.el (smerge-upper, smerge-lower)
(smerge-base):
* lisp/vc/log-view.el (log-view-file, log-view-message):
* lisp/vc/ediff-init.el (ediff-current-diff-A)
(ediff-current-diff-B, ediff-current-diff-C)
(ediff-current-diff-Ancestor, ediff-even-diff-A)
(ediff-even-diff-B, ediff-even-diff-C)
(ediff-even-diff-Ancestor, ediff-odd-diff-A)
(ediff-odd-diff-B, ediff-odd-diff-C)
(ediff-odd-diff-Ancestor):
* lisp/vc/diff-mode.el (diff-header, diff-file-header)
(diff-removed, diff-added): Make sure all definitions of faces
have the same value of the ':extend' property, otherwise
customizing background color or underline etc. attributes of
these faces on some displays will produce effects different
from other displays.
Diffstat (limited to 'etc/themes/deeper-blue-theme.el')
-rw-r--r-- | etc/themes/deeper-blue-theme.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/themes/deeper-blue-theme.el b/etc/themes/deeper-blue-theme.el index d04a270ba5e..d50a641930a 100644 --- a/etc/themes/deeper-blue-theme.el +++ b/etc/themes/deeper-blue-theme.el @@ -43,9 +43,9 @@ ;; `(diff-added ((,class (nil)))) ;; `(diff-changed ((,class (nil)))) `(diff-context ((,class (:foreground "seashell4")))) - `(diff-file-header ((,class (:background "grey60")))) + `(diff-file-header ((,class (:background "grey60" :extend t)))) `(diff-function ((,class (:inherit diff-header)))) - `(diff-header ((,class (:background "grey45")))) + `(diff-header ((,class (:background "grey45" :extend t)))) `(diff-hunk-header ((,class (:inherit diff-header)))) `(diff-index ((,class (:inherit diff-file-header)))) `(diff-indicator-added ((,class (:foreground "white" :background "darkolivegreen")))) @@ -54,12 +54,12 @@ `(diff-refine-change ((,class (:background "skyblue4")))) ;; `(diff-removed ((,class (nil)))) `(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")))) - `(ediff-even-diff-B ((,class (:background "Grey50" :foreground "White")))) + `(ediff-current-diff-A ((,class (:background "green4" :foreground "white" :extend t)))) + `(ediff-current-diff-B ((,class (:background "darkorange3" :foreground "white" :extend t)))) + `(ediff-even-diff-B ((,class (:background "Grey50" :foreground "White" :extend t)))) `(ediff-fine-diff-A ((,class (:background "skyblue4" :foreground "white")))) `(ediff-fine-diff-B ((,class (:background "cyan4" :foreground "white")))) - `(ediff-odd-diff-A ((,class (:background "Grey50" :foreground "White")))) + `(ediff-odd-diff-A ((,class (:background "Grey50" :foreground "White" :extend t)))) `(error ((,class (:foreground "red")))) `(flymake-errline ((,class (:background nil :underline "red")))) `(flymake-warnline ((,class (:background nil :underline "magenta3")))) @@ -102,7 +102,7 @@ `(outline-4 ((,class (:foreground "turquoise2")))) `(outline-5 ((,class (:foreground "aquamarine1")))) `(primary-selection ((,class (:background "blue3")))) - `(region ((,class (:background "#103050")))) + `(region ((,class (:background "#103050" :extend t)))) `(show-paren-match-face ((,class (:background "dodgerblue1" :foreground "white")))) `(show-paren-mismatch-face ((,class (:background "red1" :foreground "white")))) `(success ((,class (:foreground "SeaGreen2")))) |