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

75 lines
3 KiB
EmacsLisp
Raw Normal View History

2012-09-25 09:58:55 +02:00
;;; new-theme.el --- My new theme
;; Copyright (C) 2012 Tom Willemsen
;; Author: Tom Willemsen <slash@drd>
;; Keywords: faces
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Just a new theme.
;;; Code:
(deftheme new
"Created 2012-09-24")
(custom-theme-set-faces
'new
'(default ((t (:background "#111113" :foreground "#eeeeec"))))
2012-10-16 10:17:11 +02:00
'(flymake-errline ((t (:background nil :underline (:color "#d16979" :style wave)))))
'(flymake-infoline ((t (:background nil :underline (:color "#4da5d1" :style wave)))))
'(flymake-warnline ((t (:background nil :underline (:color "#d19317" :style wave)))))
2012-09-25 09:58:55 +02:00
'(font-lock-comment-delimiter-face ((t (:foreground "#a9a9a9" :slant italic :weight bold))))
'(font-lock-comment-face ((t (:foreground "#a9a9a9" :slant italic))))
2012-10-10 09:19:01 +02:00
'(font-lock-constant-face ((t (:foreground "#93d8d8"))))
2012-10-03 02:51:08 +02:00
'(font-lock-doc-face ((t (:foreground "#9ad870"))))
2012-10-07 23:56:02 +02:00
'(font-lock-function-name-face ((t (:foreground "#78a2c1"))))
2012-09-25 09:58:55 +02:00
'(font-lock-keyword-face ((t (:foreground "#cfce29"))))
2012-09-28 10:41:45 +02:00
'(font-lock-string-face ((t (:foreground "#ffbd5c"))))
2012-10-07 23:56:02 +02:00
'(font-lock-type-face ((t (:foreground "#78a2c1" :bold t))))
2012-10-10 09:11:12 +02:00
'(font-lock-variable-name-face ((t (:foreground "#c39cc3"))))
2012-09-27 23:32:48 +02:00
'(highlight ((t (:background "#171719"))))
2012-09-25 09:58:55 +02:00
'(ido-subdir ((t (:foreground "#ff5d55"))))
2012-10-17 00:38:47 +02:00
'(italic ((t (:slant italic))))
2012-09-25 09:58:55 +02:00
'(jabber-chat-prompt-foreign ((t (:foreground "#ff5d55"))))
'(jabber-chat-prompt-local ((t (:foreground "#78a2c1"))))
'(jabber-roster-user-online ((t (:foreground "#769ff2"))))
'(link ((t (:foreground "#ffbb56" :underline t))))
2012-10-17 00:38:47 +02:00
'(magit-item-highlight ((t (:weight bold))))
2012-09-25 09:58:55 +02:00
'(minibuffer-prompt ((t (:foreground "#78a2c1"))))
'(mode-line ((t (:background "#222224" :foreground "#eeeeec" :box nil))))
'(mode-line-inactive ((t (:background "#171719" :foreground "#999999" :box nil))))
2012-10-11 21:23:48 +02:00
'(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))))
2012-09-25 09:58:55 +02:00
'(region ((t (:background "#2729b6"))))
2012-10-11 21:23:48 +02:00
'(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))))
2012-09-25 09:58:55 +02:00
)
(provide-theme 'new)
;;; new-theme.el ends here