branch: elpa/spacemacs-theme
commit c4d8a99253615b0c370f96e40d1afde1494b856b
Author: duianto <[email protected]>
Commit: GitHub <[email protected]>

    Unify ediff-current-diff-{A,B,C} background colors
    
    Problem: The `ediff-current-diff-{A, B}` faces use the `red-bg-s` and 
`green-bg-s` colors, but the `ediff-current-diff-C` face use the non `-s`, 
`blue-bg` colors.
    Solution: use the `blue-bg-s` color for the `ediff-current-diff-C` face.
---
 spacemacs-common.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spacemacs-common.el b/spacemacs-common.el
index 8bea942cc0..4c6a7aa876 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -313,7 +313,7 @@ to 'auto, tags may not be properly aligned. "
      `(ediff-current-diff-A ((,class(:background ,red-bg-s :foreground ,red))))
      `(ediff-current-diff-Ancestor ((,class(:background ,aqua-bg :foreground 
,aqua))))
      `(ediff-current-diff-B ((,class(:background ,green-bg-s :foreground 
,green))))
-     `(ediff-current-diff-C ((,class(:background ,blue-bg :foreground ,blue))))
+     `(ediff-current-diff-C ((,class(:background ,blue-bg-s :foreground 
,blue))))
      `(ediff-even-diff-A ((,class(:background ,bg3))))
      `(ediff-even-diff-Ancestor ((,class(:background ,bg3))))
      `(ediff-even-diff-B ((,class(:background ,bg3))))

Reply via email to