summaryrefslogtreecommitdiffstats
path: root/.emacs.d/themes/new-theme.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/themes/new-theme.el')
-rw-r--r--.emacs.d/themes/new-theme.el25
1 files changed, 21 insertions, 4 deletions
diff --git a/.emacs.d/themes/new-theme.el b/.emacs.d/themes/new-theme.el
index c4df5e6..1d5a454 100644
--- a/.emacs.d/themes/new-theme.el
+++ b/.emacs.d/themes/new-theme.el
@@ -30,15 +30,18 @@
(custom-theme-set-faces
'new
'(default ((t (:background "#111113" :foreground "#eeeeec"))))
- '(flymake-errline ((t (:background "#8b1a1a"))))
- '(flymake-infoline ((t (:background "#00008b"))))
- '(flymake-warnline ((t (:background "#9a3200"))))
+ '(flymake-errline ((t (:background nil :underline (:color "#ff5555" :style wave)))))
+ '(flymake-infoline ((t (:background nil :underline (:color "#55ff55" :style wave)))))
+ '(flymake-warnline ((t (:background nil :underline (:color "#5555ff" :style wave)))))
'(font-lock-comment-delimiter-face ((t (:foreground "#a9a9a9" :slant italic :weight bold))))
'(font-lock-comment-face ((t (:foreground "#a9a9a9" :slant italic))))
+ '(font-lock-constant-face ((t (:foreground "#93d8d8"))))
'(font-lock-doc-face ((t (:foreground "#9ad870"))))
+ '(font-lock-function-name-face ((t (:foreground "#78a2c1"))))
'(font-lock-keyword-face ((t (:foreground "#cfce29"))))
'(font-lock-string-face ((t (:foreground "#ffbd5c"))))
- '(font-lock-type-face ((t (:foreground "#78a2c1"))))
+ '(font-lock-type-face ((t (:foreground "#78a2c1" :bold t))))
+ '(font-lock-variable-name-face ((t (:foreground "#c39cc3"))))
'(highlight ((t (:background "#171719"))))
'(ido-subdir ((t (:foreground "#ff5d55"))))
'(jabber-chat-prompt-foreign ((t (:foreground "#ff5d55"))))
@@ -48,7 +51,21 @@
'(minibuffer-prompt ((t (:foreground "#78a2c1"))))
'(mode-line ((t (:background "#222224" :foreground "#eeeeec" :box nil))))
'(mode-line-inactive ((t (:background "#171719" :foreground "#999999" :box nil))))
+ '(org-level-1 ((t (:height 1.5))))
+ '(org-level-2 ((t (:height 1.4))))
+ '(org-level-3 ((t (:height 1.3))))
+ '(org-level-4 ((t (:height 1.2))))
+ '(org-level-5 ((t (:height 1.1))))
+ '(org-level-6 ((t (:height 1.0))))
+ '(org-level-7 ((t (:height 1.0))))
+ '(org-level-8 ((t (:height 1.0))))
'(region ((t (:background "#2729b6"))))
+ '(rst-level-1 ((t (:height 1.5 :background nil))))
+ '(rst-level-2 ((t (:height 1.4 :background nil))))
+ '(rst-level-3 ((t (:height 1.3 :background nil))))
+ '(rst-level-4 ((t (:height 1.2 :background nil))))
+ '(rst-level-5 ((t (:height 1.1 :background nil))))
+ '(rst-level-6 ((t (:height 1.0 :background nil))))
)
(provide-theme 'new)