summaryrefslogtreecommitdiffstats
path: root/lisp/themes/color-themes-monokai-alex.el
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-02-03 21:25:46 +0100
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-02-03 21:25:46 +0100
commit3f5edbfe13f4bca10274e0999376502fa9ed346d (patch)
tree8c9d9300fa3f2378a052970ac5dd10fc01a4933d /lisp/themes/color-themes-monokai-alex.el
parenta759d4eb0b3465707f9e4aba2fa5a25bf0836aa9 (diff)
downloademacs-3f5edbfe13f4bca10274e0999376502fa9ed346d.tar.gz
emacs-3f5edbfe13f4bca10274e0999376502fa9ed346d.tar.xz
emacs-3f5edbfe13f4bca10274e0999376502fa9ed346d.zip
Some org-bable config
Diffstat (limited to '')
-rw-r--r--lisp/themes/color-themes-monokai-alex.el33
1 files changed, 33 insertions, 0 deletions
diff --git a/lisp/themes/color-themes-monokai-alex.el b/lisp/themes/color-themes-monokai-alex.el
new file mode 100644
index 0000000..21bc4c3
--- /dev/null
+++ b/lisp/themes/color-themes-monokai-alex.el
@@ -0,0 +1,33 @@
+;; -*- self-compile-mode: t -*-
+
+(eval-when-compile
+ (require 'color-theme))
+
+(defun color-theme-monokai-alex ()
+ "Color theme by Alexander Sulfrian base on monokai"
+ (interactive)
+ (color-theme-monokai)
+ (let ((color-theme-is-cumulative t))
+ (color-theme-install
+ '(color-theme-monokai-alex
+ ((background-color . "black")
+ (background-mode . dark))
+ (font-lock-keyword-face ((t (:foreground "#66D9EF"))))
+ (font-lock-type-face ((t (:weight bold :slant italic :foreground "#66D9EF"))))
+ (linum ((t (:height 0.8 :inherit (default)))))
+ (scroll-bar ((t (:foreground "gray20" :background "black"))))
+
+ (mode-line ((((class color) (min-colors 88))
+ (:foreground "black" :background "grey75")
+ (t (:inverse-video t)))))
+ (mode-line-inactive (((default
+ (:inherit (mode-line)))
+ (((class color) (min-colors 88)
+ (background light))
+ (:background "grey90" :foreground "grey20"))
+ (((class color) (min-colors 88)
+ (background dark))
+ (:background "grey30" :foreground "grey80")))))
+ ))))
+
+(provide 'color-themes-monokai-alex)