summaryrefslogtreecommitdiffstats
path: root/.emacs.d/slash_theme.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/slash_theme.el')
-rw-r--r--.emacs.d/slash_theme.el35
1 files changed, 35 insertions, 0 deletions
diff --git a/.emacs.d/slash_theme.el b/.emacs.d/slash_theme.el
new file mode 100644
index 0000000..f0150f9
--- /dev/null
+++ b/.emacs.d/slash_theme.el
@@ -0,0 +1,35 @@
+(add-to-list 'load-path "~/.emacs.d")
+(require 'color-theme)
+
+;; weirdness color-theme
+(defun color-theme-weirdness ()
+ (interactive)
+ (color-theme-install
+ '(color-theme-weirdness
+ ((background-color . "#000000")
+ (background-mode . dark)
+ (border-color . "#000000")
+ (cursor-color . "#FFFFFF")
+ (foreground-color . "#FFFFFF")
+ (mouse-color . "#000000"))
+ (org-level-1 ((t (:foreground "#5BFD5B" :weight normal))))
+ (org-level-2 ((t (:foreground "#379A37" :weight normal))))
+ (org-level-3 ((t (:foreground "#757575" :weight normal))))
+ (org-level-4 ((t (:foreground "#778899" :weight normal))))
+ (org-level-5 ((t (:foreground "#9898FF" :weight normal))))
+ (org-level-6 ((t (:foreground "#0000B0" :weight normal))))
+ (org-level-7 ((t (:foreground "#740091" :weight normal))))
+ (org-level-8 ((t (:foreground "#B275C1" :weight normal))))
+ (fringe ((t (:background "#000000"))))
+ (mode-line ((t (:foreground "#B3B3B3" :background "#43527A"))))
+ (region ((t (:background "#3D3D3D"))))
+ (minibuffer-prompt ((t (:foreground "#72F3FF" :bold t))))
+ (font-lock-builtin-face ((t (:foreground "#C436C4"))))
+ (font-lock-comment-face ((t (:foreground "#427240" :bold t))))
+ (font-lock-function-name-face ((t (:foreground "#0FFF28"))))
+ (font-lock-keyword-face ((t (:foreground "#6B84FF"))))
+ (font-lock-string-face ((t (:foreground "#E00900"))))
+ (font-lock-type-face ((t (:foreground "#8522DD"))))
+ (font-lock-variable-name-face ((t (:foreground "#18EFF2"))))
+ (font-lock-warning-face ((t (:foreground "#FF0000" :bold t)))))))
+(provide 'color-theme-weirdness) \ No newline at end of file