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

    Introduce new highlight colour and variable
---
 monokai-theme.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/monokai-theme.el b/monokai-theme.el
index fb0ec19..eff26d2 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -131,6 +131,7 @@ Also affects 'linum-mode' background."
        ;; Adaptive colors
        (monokai-fg               "#F8F8F2")
        (monokai-bg               "#272822")
+       (monokai-highlight        "#FFB269")
        (monokai-hl               "#3E3D31")
        (monokai-hl-line          "#49483E")
        (monokai-emph             "#F8F8F0")
@@ -358,9 +359,9 @@ Also affects 'linum-mode' background."
 
    `(highlight
      ((,class (:foreground ,monokai-bg
-                           :background ,monokai-hl))
+                           :background ,monokai-highlight))
       (,terminal-class (:foreground ,terminal-monokai-bg
-                                    :background ,monokai-hl))))
+                                    :background ,monokai-highlight))))
 
    `(lazy-highlight
      ((,class (:inherit highlight
@@ -370,8 +371,9 @@ Also affects 'linum-mode' background."
 
    `(region
      ((,class (:inherit highlight
-                        :background ,monokai-hl))
-      (,terminal-class (:inherit highlight :background ,monokai-hl))))
+                        :background ,monokai-highlight))
+      (,terminal-class (:inherit highlight
+                                 :background ,monokai-highlight))))
 
    `(secondary-selection
      ((,class (:inherit region

Reply via email to