branch: elpa/monokai-theme
commit 58105c58098f7c3b7df6808ffd3976facfa237de
Author: Kelvin Smith <[email protected]>
Commit: Kelvin Smith <[email protected]>

    Repair mode-line face structure for terminal; Closes #53
---
 monokai-theme.el | 46 ++++++++++++++++++++++++++++------------------
 1 file changed, 28 insertions(+), 18 deletions(-)

diff --git a/monokai-theme.el b/monokai-theme.el
index 1febebc..2c665ab 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -453,15 +453,20 @@ Also affects 'linum-mode' background."
                                     :weight bold))))
 
    `(mode-line
-     ((,class (:foreground ,monokai-emph
-                           :background ,monokai-highlight-line
-                           :box (:color ,monokai-gray
-                                        :line-width 1)))
-      (,terminal-class (:foreground ,terminal-monokai-fg
-                                    :background ,terminal-monokai-bg
-                                    :box (:color 
,terminal-monokai-highlight-line
-                                                 :style unspecified
-                                                 :line-width 1)))))
+     ((,class (:inverse-video unspecified
+                              :underline unspecified
+                              :foreground ,monokai-emph
+                              :background ,monokai-highlight-line
+                              :box (:line-width 1
+                                                :color ,monokai-gray
+                                                :style unspecified)))
+      (,terminal-class (:inverse-video unspecified
+                                       :underline unspecified
+                                       :foreground ,terminal-monokai-fg
+                                       :background ,terminal-monokai-bg
+                                       :box (:line-width 1
+                                                         :color 
,terminal-monokai-highlight-line
+                                                         :style 
unspecified)))))
 
    `(powerline-active1
      ((,class (:background ,monokai-gray-d))
@@ -473,15 +478,20 @@ Also affects 'linum-mode' background."
 
 
    `(mode-line-inactive
-     ((,class (:foreground ,monokai-comments
-                           :background ,monokai-gray
-                           :box (:color ,monokai-gray
-                                        :line-width 1)))
-      (,terminal-class (:foreground ,terminal-monokai-comments
-                                    :background ,terminal-monokai-gray
-                                    :box (:color ,terminal-monokai-gray
-                                                 :style unspecified
-                                                 :line-width 1)))))
+     ((,class (:inverse-video unspecified
+                              :underline unspecified
+                              :foreground ,monokai-comments
+                              :background ,monokai-gray
+                              :box (:line-width 1
+                                                :color ,monokai-gray
+                                                :style unspecified)))
+      (,terminal-class (:inverse-video unspecified
+                                       :underline unspecified
+                                       :foreground ,terminal-monokai-comments
+                                       :background ,terminal-monokai-gray
+                                       :box (:line-width 1
+                                                         :color 
,terminal-monokai-gray
+                                                         :style 
unspecified)))))
 
    `(powerline-inactive1
      ((,class (:background ,monokai-gray-d))

Reply via email to