summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar ryuslash2010-07-13 22:20:44 +0200
committerGravatar ryuslash2010-07-13 22:20:44 +0200
commit70d746ab86affd5cc1754e7350212d46500de9b5 (patch)
tree6a6547eb197041c8b7240d8ee39156c5f365cd80 /.emacs.d
parent8445660213425220f5089090831f8a292eb45c42 (diff)
downloaddotfiles-70d746ab86affd5cc1754e7350212d46500de9b5.tar.gz
dotfiles-70d746ab86affd5cc1754e7350212d46500de9b5.zip
Added font-lock-comment-delimiter-face to theme
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/slash_theme.el43
1 files changed, 22 insertions, 21 deletions
diff --git a/.emacs.d/slash_theme.el b/.emacs.d/slash_theme.el
index 9f3147f..777184e 100644
--- a/.emacs.d/slash_theme.el
+++ b/.emacs.d/slash_theme.el
@@ -12,24 +12,25 @@
(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))))
- (font-lock-builtin-face ((t (:foreground "#C436C4"))))
- (font-lock-comment-face ((t (:foreground "#00A000" :background "#004000" :bold t :box (:line-width 1 :color "#006000" :style nil)))))
- (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)))))))
-(provide 'color-theme-weirdness) \ No newline at end of file
+ (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))))
+ (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)))))))
+(provide 'color-theme-weirdness)