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

    Fix ediff-fine-diff-{A, B, C} colors
    
    Problem: The current `ediff-fine-diff-{A, B, C}` colors only inherit from 
the `bold` face, this makes it hard to see the fine changes.
    Solution: Use the same colors as in the `diff-refine-{added, changed, 
removed}` faces.
---
 spacemacs-common.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/spacemacs-common.el b/spacemacs-common.el
index 8bea942cc0..80083d0f69 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -318,10 +318,10 @@ to 'auto, tags may not be properly aligned. "
      `(ediff-even-diff-Ancestor ((,class(:background ,bg3))))
      `(ediff-even-diff-B ((,class(:background ,bg3))))
      `(ediff-even-diff-C ((,class(:background ,bg3))))
-     `(ediff-fine-diff-A ((,class(:background nil :inherit bold))))
+     `(ediff-fine-diff-A ((,class(:background ,red :foreground ,bg4))))
      `(ediff-fine-diff-Ancestor ((,class(:background nil :inherit bold))))
-     `(ediff-fine-diff-B ((,class(:background nil :inherit bold))))
-     `(ediff-fine-diff-C ((,class(:background nil :inherit bold))))
+     `(ediff-fine-diff-B ((,class(:background ,green :foreground ,bg4))))
+     `(ediff-fine-diff-C ((,class(:background ,blue :foreground ,bg4))))
      `(ediff-odd-diff-A ((,class(:background ,bg4))))
      `(ediff-odd-diff-Ancestor ((,class(:background ,bg4))))
      `(ediff-odd-diff-B ((,class(:background ,bg4))))

Reply via email to