aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDrew Adams2011-02-12 18:10:18 -0500
committerChong Yidong2011-02-12 18:10:18 -0500
commitcdfa139da44fd9b1a5425400635e474e85d866f4 (patch)
treeb094dbd1eee45e434405271797a716d245d460dc
parent9de31df2dde735136597d63eb8e2dcc844432c81 (diff)
downloademacs-cdfa139da44fd9b1a5425400635e474e85d866f4.tar.gz
emacs-cdfa139da44fd9b1a5425400635e474e85d866f4.zip
* themes/light-blue-theme.el: New file.
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/themes/light-blue-theme.el67
2 files changed, 71 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 45dfb211bb0..142ece63f36 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12011-02-12 Drew Adams <drew.adams@oracle.com>
2
3 * themes/light-blue-theme.el: New file.
4
12011-02-01 Paul Eggert <eggert@cs.ucla.edu> 52011-02-01 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 format-time-string now supports subsecond time stamp resolution 7 format-time-string now supports subsecond time stamp resolution
diff --git a/etc/themes/light-blue-theme.el b/etc/themes/light-blue-theme.el
new file mode 100644
index 00000000000..60f9fa8dc9d
--- /dev/null
+++ b/etc/themes/light-blue-theme.el
@@ -0,0 +1,67 @@
1;;; light-blue-theme.el --- Custom theme for faces
2
3;; Copyright (C) 2011 Free Software Foundation, Inc.
4
5;; Author: Drew Adams <drew.adams@oracle.com>
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22;;; Commentary:
23
24;; Extracted from the settings in oneonone.el by Drew Adams.
25
26;;; Code:
27
28(deftheme light-blue
29 "Theme with a light blue backgound.")
30
31(let ((class '((class color) (min-colors 89))))
32 (custom-theme-set-faces
33 'light-blue
34 `(default ((,class (:background "LightBlue" :foreground "black"))))
35 `(cursor ((,class (:background "red"))))
36 `(fringe ((,class (:background "gray85"))))
37 ;; Highlighting faces
38 `(highlight ((,class (:background "cyan"))))
39 `(region ((,class (:background "MediumAquamarine"))))
40 `(secondary-selection ((,class (:background "white" :foreground "black"))))
41 `(isearch ((,class (:background "green" :foreground "Black"))))
42 `(lazy-highlight ((,class (:background "dark turquoise"))))
43 `(query-replace ((,class (:inherit isearch :background "white" :foreground "black"))))
44 `(match ((,class (:background "SkyBlue"))))
45 ;; Mode line faces
46 `(mode-line ((,class (:background "PaleGoldenrod" :foreground "black" :box (:line-width -1 :style released-button)))))
47 `(mode-line-buffer-id ((,class (:overline "red" :underline "red"))))
48 `(mode-line-inactive ((,class (:inherit mode-line :background "LightGray" :foreground "grey20" :box (:line-width -1 :color "grey75") :weight light))))
49 ;; Escape and prompt faces
50 `(escape-glyph ((,class (:background "gold" :foreground "blue" :box (:line-width 1 :color "blue" :style released-button)))))
51 ;; Font lock faces
52 `(font-lock-builtin-face ((,class (:foreground "#b35caf"))))
53 `(font-lock-constant-face ((,class (:foreground "#00006DE06DE0"))))
54 `(font-lock-function-name-face ((,class (:foreground "red"))))
55 `(font-lock-keyword-face ((,class (:foreground "Blue3"))))
56 `(font-lock-string-face ((,class (:foreground "Magenta4"))))
57 `(font-lock-warning-face ((,class (:foreground "orange red" :weight bold))))
58 ;; Compilation faces
59 `(next-error ((,class (:inherit region :background "SkyBlue"))))))
60
61(provide-theme 'light-blue)
62
63;; Local Variables:
64;; no-byte-compile: t
65;; End:
66
67;;; light-blue-theme.el ends here