aboutsummaryrefslogtreecommitdiffstats
path: root/new-theme.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-09-25 09:58:55 +0200
committerGravatar Tom Willemsen2012-09-25 09:58:55 +0200
commit2b179a58a68d2677a735ee54c81a0fd4a19b084f (patch)
tree17cdb02cd4bb65987c2cef65d6faec5ad961ef2c /new-theme.el
parentab199e7502c7038533285a022a0db1aa5753ecc1 (diff)
downloadyoshi-theme-2b179a58a68d2677a735ee54c81a0fd4a19b084f.tar.gz
yoshi-theme-2b179a58a68d2677a735ee54c81a0fd4a19b084f.zip
.emacs.d/themes/new-theme.el
Diffstat (limited to 'new-theme.el')
-rw-r--r--new-theme.el49
1 files changed, 49 insertions, 0 deletions
diff --git a/new-theme.el b/new-theme.el
new file mode 100644
index 0000000..cf4765f
--- /dev/null
+++ b/new-theme.el
@@ -0,0 +1,49 @@
+;;; 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"))))
+ '(font-lock-comment-delimiter-face ((t (:foreground "#a9a9a9" :slant italic :weight bold))))
+ '(font-lock-comment-face ((t (:foreground "#a9a9a9" :slant italic))))
+ '(font-lock-keyword-face ((t (:foreground "#cfce29"))))
+ '(font-lock-type-face ((t (:foreground "#78a2c1"))))
+ '(ido-subdir ((t (:foreground "#ff5d55"))))
+ '(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))))
+ '(minibuffer-prompt ((t (:foreground "#78a2c1"))))
+ '(mode-line ((t (:background "#222224" :foreground "#eeeeec" :box nil))))
+ '(mode-line-inactive ((t (:background "#171719" :foreground "#999999" :box nil))))
+ '(region ((t (:background "#2729b6"))))
+ )
+
+(provide-theme 'new)
+;;; new-theme.el ends here