branch: elpa/monokai-theme
commit 3fbef671fcf682351e5026825b3cd597af9b8b83
Merge: 3ba3a3d f973ea4
Author: Kelvin Smith <[email protected]>
Commit: Kelvin Smith <[email protected]>
Merge pull request #12 from junkw/feature/powerline-support
Add support for milkypostman's powerline faces
---
monokai-theme.el | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/monokai-theme.el b/monokai-theme.el
index f8d6fe7..445de50 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -112,6 +112,7 @@ Takes and optional `FRAME' as reference."
(blue (if (in-terminal) "#5FD7FF" "#66D9EF"))
(cyan (if (in-terminal) "#5FFFFF" "#A1EFE4"))
(green (if (in-terminal) "#87D700" "#A6E22E"))
+ (gray (if (in-terminal) "#444444" "#474747"))
;; Darker and lighter accented colors
;;
@@ -133,6 +134,8 @@ Takes and optional `FRAME' as reference."
(cyan-l (if (in-terminal) "#AFEEEE" "#BBF7EF"))
(green-d (if (in-terminal) "#6B8E23" "#67930F"))
(green-l (if (in-terminal) "#B3EE3A" "#C1F161"))
+ (gray-d (if (in-terminal) "#3a3a3a" "#333333"))
+ (gray-l (if (in-terminal) "#6c6c6c" "#6b6b6b"))
;; Adaptive colors
(monokai-fg (if (in-terminal) "#F5F5F5" "#F8F8F2"))
@@ -2745,6 +2748,19 @@ Takes and optional `FRAME' as reference."
((,class (:background ,monokai-hl
:foreground ,monokai-fg))))
+ ;; powerline
+ `(powerline-active1
+ ((,class (:background ,gray))))
+
+ `(powerline-active2
+ ((,class (:background ,gray-l))))
+
+ `(powerline-inactive1
+ ((,class (:background ,gray-d))))
+
+ `(powerline-inactive2
+ ((,class (:background ,gray))))
+
;; rainbow-delimiters
`(rainbow-delimiters-depth-1-face
((,class (:foreground ,cyan))))