summaryrefslogtreecommitdiffstats
path: root/.emacs.d/themes
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/themes')
-rw-r--r--.emacs.d/themes/yoshi-theme.el (renamed from .emacs.d/themes/new-theme.el)41
1 files changed, 25 insertions, 16 deletions
diff --git a/.emacs.d/themes/new-theme.el b/.emacs.d/themes/yoshi-theme.el
index 04f9930..6836353 100644
--- a/.emacs.d/themes/new-theme.el
+++ b/.emacs.d/themes/yoshi-theme.el
@@ -1,4 +1,4 @@
-;;; new-theme.el --- My new theme
+;;; yoshi-theme.el --- Theme named after my cat
;; Copyright (C) 2012 Tom Willemsen
@@ -20,15 +20,16 @@
;;; Commentary:
-;; Just a new theme.
+;; Just a theme named after my cat. He doesn't actually look like
+;; this.
;;; Code:
-(deftheme new
+(deftheme yoshi
"Created 2012-09-24")
(custom-theme-set-faces
- 'new
+ 'yoshi
'(default ((t (:background "#111113" :foreground "#eeeeec"))))
'(flymake-errline ((t (:background nil :underline (:color "#d16979" :style wave)))))
'(flymake-infoline ((t (:background nil :underline (:color "#4da5d1" :style wave)))))
@@ -43,9 +44,9 @@
'(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"))))
+ '(ido-subdir ((t (:foreground "#ff756e"))))
'(italic ((t (:slant italic))))
- '(jabber-chat-prompt-foreign ((t (:foreground "#ff5d55"))))
+ '(jabber-chat-prompt-foreign ((t (:foreground "#ff756e"))))
'(jabber-chat-prompt-local ((t (:foreground "#78a2c1"))))
'(jabber-roster-user-online ((t (:foreground "#769ff2"))))
'(link ((t (:foreground "#ffbb56" :underline t))))
@@ -53,14 +54,14 @@
'(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))))
+ '(org-level-1 ((t (:height 1.5 :foreground "#78a2c1"))))
+ '(org-level-2 ((t (:height 1.4 :foreground "#93d8d8"))))
+ '(org-level-3 ((t (:height 1.3 :foreground "#9ad870"))))
+ '(org-level-4 ((t (:height 1.2 :foreground "#c39cc3"))))
+ '(org-level-5 ((t (:height 1.1 :foreground "#ff756e"))))
+ '(org-level-6 ((t (:height 1.0 :foreground "#a9a9a9"))))
+ '(org-level-7 ((t (:height 1.0 :foreground "#ffbb56"))))
+ '(org-level-8 ((t (:height 1.0 :foreground "#999999"))))
'(region ((t (:background "#2729b6"))))
'(rst-level-1 ((t (:height 1.5 :background nil))))
'(rst-level-2 ((t (:height 1.4 :background nil))))
@@ -68,7 +69,15 @@
'(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))))
+ '(term-color-black ((t (:background "#171719" :foreground "#999999"))))
+ '(term-color-blue ((t (:background "#2729b6" :foreground "#78a2c1"))))
+ '(term-color-cyan ((t (:background "#208181" :foreground "#93d8d8"))))
+ '(term-color-green ((t (:background "#405c2e" :foreground "#9ad870"))))
+ '(term-color-magenta ((t (:background "#5e325d" :foreground "#c39cc3"))))
+ '(term-color-red ((t (:background "#973732" :foreground "#ff756e"))))
+ '(term-color-white ((t (:background "#222224" :foreground "#a9a9a9"))))
+ '(term-color-yellow ((t (:background "#835c0e" :foreground "#ffbb56"))))
)
-(provide-theme 'new)
-;;; new-theme.el ends here
+(provide-theme 'yoshi)
+;;; yoshi-theme.el ends here