[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r103583: * etc/themes/wombat-theme.el
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r103583: * etc/themes/wombat-theme.el: New file. |
Date: |
Mon, 07 Mar 2011 21:47:55 -0500 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 103583
author: Kristoffer Grönlund <address@hidden>
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2011-03-07 21:47:55 -0500
message:
* etc/themes/wombat-theme.el: New file.
Also, add Lisp file tails to tsdh-*-theme.el.
added:
etc/themes/wombat-theme.el
modified:
etc/ChangeLog
etc/themes/tsdh-dark-theme.el
etc/themes/tsdh-light-theme.el
=== modified file 'etc/ChangeLog'
--- a/etc/ChangeLog 2011-03-06 02:43:19 +0000
+++ b/etc/ChangeLog 2011-03-08 02:47:55 +0000
@@ -1,3 +1,7 @@
+2011-03-08 Kristoffer Grönlund <address@hidden>
+
+ * themes/wombat-theme.el: New file.
+
2011-03-06 Juanma Barranquero <address@hidden>
* srecode/el.srt: Fix typo.
=== modified file 'etc/themes/tsdh-dark-theme.el'
--- a/etc/themes/tsdh-dark-theme.el 2011-01-16 20:02:27 +0000
+++ b/etc/themes/tsdh-dark-theme.el 2011-03-08 02:47:55 +0000
@@ -58,3 +58,9 @@
'(window-number-face ((t (:foreground "red" :weight bold)))))
(provide-theme 'tsdh-dark)
+
+;; Local Variables:
+;; no-byte-compile: t
+;; End:
+
+;;; tsdh-dark-theme.el ends here
=== modified file 'etc/themes/tsdh-light-theme.el'
--- a/etc/themes/tsdh-light-theme.el 2011-01-16 20:02:27 +0000
+++ b/etc/themes/tsdh-light-theme.el 2011-03-08 02:47:55 +0000
@@ -57,3 +57,10 @@
'(window-number-face ((t (:foreground "red" :weight bold)))))
(provide-theme 'tsdh-light)
+
+
+;; Local Variables:
+;; no-byte-compile: t
+;; End:
+
+;;; tsdh-light-theme.el ends here
=== added file 'etc/themes/wombat-theme.el'
--- a/etc/themes/wombat-theme.el 1970-01-01 00:00:00 +0000
+++ b/etc/themes/wombat-theme.el 2011-03-08 02:47:55 +0000
@@ -0,0 +1,108 @@
+;;; wombat-theme.el --- Custom face theme for Emacs
+
+;; Copyright (C) 2011 Free Software Foundation, Inc.
+
+;; Author: Kristoffer Grönlund <address@hidden>
+
+;; This file is part of GNU Emacs.
+
+;; GNU Emacs 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.
+
+;; GNU Emacs 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Code:
+
+(deftheme wombat
+ "Theme for faces, using easy-on-the eyes colors on a dark gray background.
+Adapted, with permission, from a Vim color scheme by Lars H. Nielsen.
+Basic, Font Lock, Isearch, Gnus, Message, and Ansi-Color faces
+are included.")
+
+(let ((class '((class color) (min-colors 89))))
+ (custom-theme-set-faces
+ 'wombat
+ `(default ((,class (:background "#242424" :foreground "#f6f3e8"))))
+ `(cursor ((,class (:background "#656565" :foreground "#f6f3e8"))))
+ ;; Highlighting faces
+ `(fringe ((,class (:background "#303030"))))
+ `(highlight ((,class (:background "#454545" :foreground "#ffffff"
+ :underline t))))
+ `(region ((,class (:background "#444444" :foreground "#f6f3e8"))))
+ `(secondary-selection ((,class (:background "#333366" :foreground
"#f6f3e8"))))
+ `(isearch ((,class (:background "#343434" :foreground "#857b6f"))))
+ `(lazy-highlight ((,class (:background "#384048" :foreground "#a0a8b0"))))
+ ;; Mode line faces
+ `(mode-line ((,class (:background "#444444" :foreground "#f6f3e8"))))
+ `(mode-line-inactive ((,class (:background "#444444" :foreground
"#857b6f"))))
+ ;; Escape and prompt faces
+ `(minibuffer-prompt ((,class (:foreground "#e5786d"))))
+ `(escape-glyph ((,class (:foreground "#ddaa6f" :weight bold))))
+ ;; Font lock faces
+ `(font-lock-builtin-face ((,class (:foreground "#e5786d"))))
+ `(font-lock-comment-face ((,class (:foreground "#99968b"))))
+ `(font-lock-constant-face ((,class (:foreground "#e5786d"))))
+ `(font-lock-function-name-face ((,class (:foreground "#cae682"))))
+ `(font-lock-keyword-face ((,class (:foreground "#8ac6f2" :weight bold))))
+ `(font-lock-string-face ((,class (:foreground "#95e454"))))
+ `(font-lock-type-face ((,class (:foreground "#92a65e" :weight bold))))
+ `(font-lock-variable-name-face ((,class (:foreground "#cae682"))))
+ `(font-lock-warning-face ((,class (:foreground "#ccaa8f"))))
+ ;; Button and link faces
+ `(link ((,class (:foreground "#8ac6f2" :underline t))))
+ `(link-visited ((,class (:foreground "#e5786d" :underline t))))
+ `(button ((,class (:background "#333333" :foreground "#f6f3e8"))))
+ `(header-line ((,class (:background "#303030" :foreground "#e7f6da"))))
+ ;; Gnus faces
+ `(gnus-group-news-1 ((,class (:weight bold :foreground "#95e454"))))
+ `(gnus-group-news-1-low ((,class (:foreground "#95e454"))))
+ `(gnus-group-news-2 ((,class (:weight bold :foreground "#cae682"))))
+ `(gnus-group-news-2-low ((,class (:foreground "#cae682"))))
+ `(gnus-group-news-3 ((,class (:weight bold :foreground "#ccaa8f"))))
+ `(gnus-group-news-3-low ((,class (:foreground "#ccaa8f"))))
+ `(gnus-group-news-4 ((,class (:weight bold :foreground "#99968b"))))
+ `(gnus-group-news-4-low ((,class (:foreground "#99968b"))))
+ `(gnus-group-news-5 ((,class (:weight bold :foreground "#cae682"))))
+ `(gnus-group-news-5-low ((,class (:foreground "#cae682"))))
+ `(gnus-group-news-low ((,class (:foreground "#99968b"))))
+ `(gnus-group-mail-1 ((,class (:weight bold :foreground "#95e454"))))
+ `(gnus-group-mail-1-low ((,class (:foreground "#95e454"))))
+ `(gnus-group-mail-2 ((,class (:weight bold :foreground "#cae682"))))
+ `(gnus-group-mail-2-low ((,class (:foreground "#cae682"))))
+ `(gnus-group-mail-3 ((,class (:weight bold :foreground "#ccaa8f"))))
+ `(gnus-group-mail-3-low ((,class (:foreground "#ccaa8f"))))
+ `(gnus-group-mail-low ((,class (:foreground "#99968b"))))
+ `(gnus-header-content ((,class (:foreground "#8ac6f2"))))
+ `(gnus-header-from ((,class (:weight bold :foreground "#95e454"))))
+ `(gnus-header-subject ((,class (:foreground "#cae682"))))
+ `(gnus-header-name ((,class (:foreground "#8ac6f2"))))
+ `(gnus-header-newsgroups ((,class (:foreground "#cae682"))))
+ ;; Message faces
+ `(message-header-name ((,class (:foreground "#8ac6f2" :weight bold))))
+ `(message-header-cc ((,class (:foreground "#95e454"))))
+ `(message-header-other ((,class (:foreground "#95e454"))))
+ `(message-header-subject ((,class (:foreground "#cae682"))))
+ `(message-header-to ((,class (:foreground "#cae682"))))
+ `(message-cited-text ((,class (:foreground "#99968b"))))
+ `(message-separator ((,class (:foreground "#e5786d" :weight bold))))))
+
+(custom-theme-set-variables
+ 'wombat
+ '(ansi-color-names-vector ["#242424" "#e5786d" "#95e454" "#cae682"
+ "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"]))
+
+(provide-theme 'wombat)
+
+;; Local Variables:
+;; no-byte-compile: t
+;; End:
+
+;;; wombat-theme.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r103583: * etc/themes/wombat-theme.el: New file.,
Chong Yidong <=