summaryrefslogtreecommitdiffstats
path: root/emacs.d/elisp/color-theme-weirdness.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-03-17 11:36:56 +0100
committerGravatar Tom Willemsen2011-03-17 11:37:07 +0100
commit82b8ca280905ea284730f228ae082c42c348e818 (patch)
tree0c60d42c717905632c32ad80d83397d59c7d5036 /emacs.d/elisp/color-theme-weirdness.el
parent04b349e8e00c2720fed4b14b7a1e0616db27ad2f (diff)
downloaddotfiles-82b8ca280905ea284730f228ae082c42c348e818.tar.gz
dotfiles-82b8ca280905ea284730f228ae082c42c348e818.zip
Big emacs cleanup, must be lighter
Diffstat (limited to 'emacs.d/elisp/color-theme-weirdness.el')
-rw-r--r--emacs.d/elisp/color-theme-weirdness.el74
1 files changed, 0 insertions, 74 deletions
diff --git a/emacs.d/elisp/color-theme-weirdness.el b/emacs.d/elisp/color-theme-weirdness.el
deleted file mode 100644
index c75996c..0000000
--- a/emacs.d/elisp/color-theme-weirdness.el
+++ /dev/null
@@ -1,74 +0,0 @@
-(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" :background "#000000" :box nil))))
- (region ((t (:background "#3D3D3D"))))
- (minibuffer-prompt ((t (:foreground "#72F3FF" :bold t))))
- (flymake-warnline ((t (:background "#000060"))))
- (flymake-errline ((t (:background "#600000"))))
- (font-lock-builtin-face ((t (:foreground "#C436C4"))))
- (font-lock-comment-face ((t (:foreground "#00AC00" :background "#004000" :bold t :box (:line-width 1 :color "#006000" :style nil)))))
- (font-lock-comment-delimiter-face ((t (:inherit 'font-lock-comment-face))))
- (font-lock-function-name-face ((t (:foreground "#0FFF28"))))
- (font-lock-keyword-face ((t (:foreground "#4E61BB" :bold t))))
- (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)))))))
-
-;; weirdnes color-theme 2
-;; thinking of improving it.
-(defun color-theme-weirdness2 ()
- (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" :background "#000000" :box nil))))
- (region ((t (:background "#3D3D3D"))))
- (minibuffer-prompt ((t (:foreground "#72F3FF" :bold t))))
- (flymake-warnline ((t (:background "#000060"))))
- (flymake-errline ((t (:background "#600000"))))
- (font-lock-builtin-face ((t (:foreground "#C436C4"))))
- (font-lock-comment-face ((t (:foreground "#00AC00" :background "#004000" :bold t :box (:line-width 1 :color "#006000" :style nil)))))
- (font-lock-comment-delimiter-face ((t (:inherit 'font-lock-comment-face))))
- (font-lock-function-name-face ((t (:foreground "#8522DD"))))
- (font-lock-keyword-face ((t (:foreground "royal blue"))))
- (font-lock-string-face ((t (:foreground "#E00900"))))
- (font-lock-type-face ((t (:foreground "#FF9800"))))
- (font-lock-variable-name-face ((t (:foreground "#18EFF2"))))
- (font-lock-warning-face ((t (:foreground "#FF0000" :bold t)))))))
-
-(provide 'color-theme-weirdness)