.emacs.d/themes/new-theme.el

This commit is contained in:
Tom Willemsen 2012-10-11 21:23:48 +02:00
parent 9c4dffec45
commit e95ddbff6f

View file

@ -30,9 +30,9 @@
(custom-theme-set-faces (custom-theme-set-faces
'new 'new
'(default ((t (:background "#111113" :foreground "#eeeeec")))) '(default ((t (:background "#111113" :foreground "#eeeeec"))))
'(flymake-errline ((t (:background nil :underline (:color "#ff5555" :style line))))) '(flymake-errline ((t (:background nil :underline (:color "#ff5555" :style wave)))))
'(flymake-infoline ((t (:background nil :underline (:color "#55ff55" :style line))))) '(flymake-infoline ((t (:background nil :underline (:color "#55ff55" :style wave)))))
'(flymake-warnline ((t (:background nil :underline (:color "#5555ff" :style line))))) '(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-delimiter-face ((t (:foreground "#a9a9a9" :slant italic :weight bold))))
'(font-lock-comment-face ((t (:foreground "#a9a9a9" :slant italic)))) '(font-lock-comment-face ((t (:foreground "#a9a9a9" :slant italic))))
'(font-lock-constant-face ((t (:foreground "#93d8d8")))) '(font-lock-constant-face ((t (:foreground "#93d8d8"))))
@ -51,7 +51,21 @@
'(minibuffer-prompt ((t (:foreground "#78a2c1")))) '(minibuffer-prompt ((t (:foreground "#78a2c1"))))
'(mode-line ((t (:background "#222224" :foreground "#eeeeec" :box nil)))) '(mode-line ((t (:background "#222224" :foreground "#eeeeec" :box nil))))
'(mode-line-inactive ((t (:background "#171719" :foreground "#999999" :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")))) '(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) (provide-theme 'new)