summaryrefslogtreecommitdiffstats
path: root/dotemacs/.emacs.d/color-theme-vibrant-ink.el
diff options
context:
space:
mode:
authorGravatar ryuslash2010-09-12 10:30:51 +0200
committerGravatar ryuslash2010-09-12 10:30:51 +0200
commit7c4787a7f477d92dfc58713e61abb42ed5844e87 (patch)
tree5906536ed9737a8eebe571b2497cc05d3890f439 /dotemacs/.emacs.d/color-theme-vibrant-ink.el
parent1d2a8bddd6d2fb1ea6b07f84652c7cddac5266cd (diff)
parentec687eede976c605eba60f125a107288813fccba (diff)
downloaddotfiles-7c4787a7f477d92dfc58713e61abb42ed5844e87.tar.gz
dotfiles-7c4787a7f477d92dfc58713e61abb42ed5844e87.zip
Merge dotemacs project as our subdirectory
Diffstat (limited to 'dotemacs/.emacs.d/color-theme-vibrant-ink.el')
-rw-r--r--dotemacs/.emacs.d/color-theme-vibrant-ink.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/dotemacs/.emacs.d/color-theme-vibrant-ink.el b/dotemacs/.emacs.d/color-theme-vibrant-ink.el
new file mode 100644
index 0000000..dee8c6a
--- /dev/null
+++ b/dotemacs/.emacs.d/color-theme-vibrant-ink.el
@@ -0,0 +1,18 @@
+(require 'color-theme)
+
+;; vibrant-ink color theme
+(defun color-theme-vibrant-ink ()
+ (interactive)
+ (color-theme-install
+ '(color-theme-ryrobes
+ ((background-color . "#000000")
+ (background-mode . dark)
+ (border-color . "#000000")
+ (cursor-color . "#FFFFFF")
+ (foreground-color . "#FFFFFF")
+ (mouse-color . "#FFFFFF"))
+ (font-lock-comment-face ((t (:foreground "#9933CC" :italic t))))
+ (font-lock-keyword-face ((t (:foreground "#FF6600"))))
+ (font-lock-type-face ((t (:foreground "#FFCC00"))))
+ (font-lock-string-face ((t (:foreground "#66FF00")))))))
+(provide 'color-theme-vibrant-ink)