diff --git a/CHANGELOG.org b/CHANGELOG.org index 915d85b..ff7caea 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -43,6 +43,11 @@ This project adheres to [[http://semver.org][Semantic Versioning]]. Inherit from =font-lock-warning-face= and don't specify a special underline. +** CHANGED the Diff Highlight faces + + Make the foreground and background color on the =diff-hl-change=, + =diff-hl-add= and =diff-hl-remove= the same. + ** REMOVED the 10th rainbow delimiters depth face * [[https://github.com/ryuslash/yoshi-theme/compare/v6.0.0...v6.1.0][6.1.0]] -- 2015-11-20 diff --git a/yoshi-theme.el b/yoshi-theme.el index 7dc6185..6a836e8 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -102,9 +102,9 @@ `(diff-file-header ((t (:foreground ,fgbright :background unspecified :weight bold)))) `(diff-function ((t (:inherit unspecified :foreground ,fgorange)))) `(diff-header ((t (:background ,bgbright)))) - `(diff-hl-change ((t (:foreground ,fgyellow :background unspecified :inherit diff-changed)))) - `(diff-hl-delete ((t (:foreground ,fgred :inherit diff-removed)))) - `(diff-hl-insert ((t (:foreground ,fggreen :inherit diff-added)))) + `(diff-hl-change ((t (:foreground ,bgyellow :background unspecified :inherit diff-changed)))) + `(diff-hl-delete ((t (:foreground ,bgred :inherit diff-removed)))) + `(diff-hl-insert ((t (:foreground ,bggreen :inherit diff-added)))) `(diff-hunk-header ((t (:inherit unspecified :weight bold :foreground ,fgyellow :underline t)))) `(diff-indicator-added ((t (:foreground ,fggreen :weight bold :inherit unspecified)))) `(diff-indicator-changed ((t (:foreground ,fgyellow :weight bold :inherit unspecified ))))