emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/monokai-theme 0f83a63 059/207: Fixes #42: add support for


From: ELPA Syncer
Subject: [nongnu] elpa/monokai-theme 0f83a63 059/207: Fixes #42: add support for magit diff faces
Date: Thu, 21 Oct 2021 18:07:31 -0400 (EDT)

branch: elpa/monokai-theme
commit 0f83a63c68fe8d13eda2e76a194b39b20bbfcc45
Author: Kelvin Smith <oneKelvinSmith@gmail.com>
Commit: Kelvin Smith <oneKelvinSmith@gmail.com>

    Fixes #42: add support for magit diff faces
---
 monokai-theme.el | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/monokai-theme.el b/monokai-theme.el
index a955edc..e005a7e 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -2446,6 +2446,10 @@ Also affects 'linum-mode' background."
 
 
    ;; helm (these probably need tweaking)
+   ;;
+   ;; TODO: make helm navigation look less jarring
+   ;; 
https://github.com/emacs-helm/helm/search?utf8=%E2%9C%93&q=defface&type=Code
+   ;;
    `(helm-apt-deinstalled
      ((,class (:foreground ,monokai-comments))
       (,terminal-class (:foreground ,terminal-monokai-comments))))
@@ -2985,6 +2989,34 @@ Also affects 'linum-mode' background."
                                     :weight bold))))
 
    ;; magit
+   ;;
+   ;; TODO: Add supports for all magit faces
+   ;; https://github.com/magit/magit/search?utf8=%E2%9C%93&q=face
+   ;;
+   `(magit-diff-added
+     ((,class (:foreground ,green
+                           :background ,monokai-bg))
+      (,terminal-class (:foreground ,terminal-green
+                                    :background ,terminal-monokai-bg))))
+
+   `(magit-diff-added-highlight
+     ((,class (:foreground ,green
+                           :background ,monokai-hl))
+      (,terminal-class (:foreground ,terminal-green
+                                    :background ,terminal-monokai-hl))))
+
+   `(magit-diff-removed
+     ((,class (:foreground ,red
+                           :background ,monokai-bg))
+      (,terminal-class (:foreground ,terminal-red
+                                    :background ,terminal-monokai-bg))))
+
+   `(magit-diff-removed-highlight
+     ((,class (:foreground ,red
+                           :background ,monokai-hl))
+      (,terminal-class (:foreground ,terminal-red
+                                    :background ,terminal-monokai-hl))))
+
    `(magit-section-title
      ((,class (:foreground ,yellow
                            :weight bold))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]