branch: elpa/spacemacs-theme
commit be65de0e67da2bebaceb75fd47df3993823cb2e3
Author: duianto <[email protected]>
Commit: GitHub <[email protected]>
Uncouple keyword color from diff changed faces
Problem: the `keyword` colors are used for the `diff{, -indicator,
-refine}-changed` faces, if the `keyword` color is changed in the future, then
it probably shouldn't effect the diff face colors.
Solution: use `blue` to match the `ediff-current-diff-C` face, and
currently the `blue` and `keyword` colors are identical.
---
spacemacs-common.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/spacemacs-common.el b/spacemacs-common.el
index 8bea942cc0..f5b60214b4 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -282,14 +282,14 @@ to 'auto, tags may not be properly aligned. "
;;;;; diff
`(diff-added ((,class :background nil :foreground ,green)))
- `(diff-changed ((,class :background nil :foreground ,keyword)))
+ `(diff-changed ((,class :background nil :foreground ,blue)))
`(diff-header ((,class :background ,cblk-ln-bg :foreground
,func)))
`(diff-file-header ((,class :background ,cblk-ln-bg :foreground
,cblk)))
`(diff-indicator-added ((,class :background nil :foreground ,green)))
- `(diff-indicator-changed ((,class :background nil :foreground ,keyword)))
+ `(diff-indicator-changed ((,class :background nil :foreground ,blue)))
`(diff-indicator-removed ((,class :background nil :foreground ,red)))
`(diff-refine-added ((,class :background ,green :foreground ,bg4)))
- `(diff-refine-changed ((,class :background ,keyword :foreground ,bg4)))
+ `(diff-refine-changed ((,class :background ,blue :foreground ,bg4)))
`(diff-refine-removed ((,class :background ,red :foreground ,bg4)))
`(diff-removed ((,class :background nil :foreground ,red)))