-
Notifications
You must be signed in to change notification settings - Fork 69
/
blue-mood-theme.el
136 lines (122 loc) · 6.46 KB
/
blue-mood-theme.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
;;; blue-mood-theme.el --- blue-mood theme
;; Copyright (C) 2002 by Nelson Loyola
;; Copyright (C) 2013 by Syohei YOSHIDA
;; Author: Syohei YOSHIDA <[email protected]>
;; URL: https://github.com/emacs-jp/replace-colorthemes
;; Version: 0.01
;; 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:
;;
;; Port of blue-mood theme from `color-themes'
;;; Code:
(deftheme blue-mood
"blue-mood theme")
(custom-theme-set-faces
'blue-mood
'(default ((t (:background "DodgerBlue4" :foreground "white smoke"))))
'(mouse ((t (:foreground "black"))))
'(cursor ((t (:background "DarkGoldenrod1"))))
'(border ((t (:foreground "Blue"))))
'(blue ((t (:foreground "blue"))))
'(bold ((t (:bold t))))
'(bold-italic ((t (nil))))
'(border-glyph ((t (nil))))
'(cmode-bracket-face ((t (:bold t))))
'(cperl-array-face ((t (:bold t :foreground "wheat"))))
'(cperl-hash-face ((t (:bold t :foreground "chartreuse"))))
'(custom-button-face ((t (nil))))
'(custom-changed-face ((t (:background "blue" :foreground "white"))))
'(custom-documentation-face ((t (nil))))
'(custom-face-tag-face ((t (:underline t))))
'(custom-group-tag-face ((t (:underline t :foreground "blue"))))
'(custom-group-tag-face-1 ((t (:underline t :foreground "red"))))
'(custom-invalid-face ((t (:background "red" :foreground "yellow"))))
'(custom-modified-face ((t (:background "blue" :foreground "white"))))
'(custom-rogue-face ((t (:background "black" :foreground "pink"))))
'(custom-saved-face ((t (:underline t))))
'(custom-set-face ((t (:background "white" :foreground "blue"))))
'(custom-state-face ((t (:bold t :foreground "cyan"))))
'(custom-variable-button-face ((t (:underline t :bold t))))
'(custom-variable-tag-face ((t (:underline t :foreground "blue"))))
'(ff-paths-non-existant-file-face ((t (:bold t :foreground "NavyBlue"))))
'(font-lock-builtin-face ((t (:bold t :foreground "wheat"))))
'(font-lock-comment-face ((t (:bold t :foreground "gray72"))))
'(font-lock-constant-face ((t (:bold t :foreground "cyan3"))))
'(font-lock-doc-string-face ((t (:foreground "#00C000"))))
'(font-lock-function-name-face ((t (:bold t :foreground "chartreuse"))))
'(font-lock-keyword-face ((t (:bold t :foreground "gold1"))))
'(font-lock-other-emphasized-face ((t (:bold t :foreground "gold1"))))
'(font-lock-other-type-face ((t (:bold t :foreground "gold1"))))
'(font-lock-preprocessor-face ((t (:foreground "plum"))))
'(font-lock-reference-face ((t (:bold t :foreground "orangered"))))
'(font-lock-string-face ((t (:foreground "tomato"))))
'(font-lock-type-face ((t (:bold t :foreground "gold1"))))
'(font-lock-variable-name-face ((t (:foreground "light yellow"))))
'(font-lock-warning-face ((t (:foreground "tomato"))))
'(green ((t (:foreground "green"))))
'(gui-button-face ((t (:background "grey75" :foreground "black"))))
'(gui-element ((t (:size "nil" :background "#e7e3d6" :foreground" #000000"))))
'(highlight ((t (:background "red" :foreground "yellow"))))
'(isearch ((t (:bold t :background "pale turquoise" :foreground "blue"))))
'(italic ((t (nil))))
'(lazy-highlight-face ((t (:bold t :foreground "dark magenta"))))
'(left-margin ((t (nil))))
'(list-mode-item-selected ((t (:bold t :background "gray68" :foreground "yellow"))))
'(mode-line ((t (:background "goldenrod" :foreground "darkblue"))))
'(mode-line-buffer-id ((t (:background "goldenrod" :foreground "darkblue"))))
'(mode-line-mousable ((t (:background "goldenrod" :foreground "darkblue"))))
'(mode-line-mousable-minor-mode ((t (:background "goldenrod" :foreground "darkblue"))))
'(my-tab-face ((t (:background "SlateBlue1"))))
'(p4-depot-added-face ((t (:foreground "steelblue1"))))
'(p4-depot-deleted-face ((t (:foreground "red"))))
'(p4-depot-unmapped-face ((t (:foreground "grey90"))))
'(p4-diff-change-face ((t (:foreground "dark green"))))
'(p4-diff-del-face ((t (:bold t :foreground "salmon"))))
'(p4-diff-file-face ((t (:background "blue"))))
'(p4-diff-head-face ((t (:background "blue"))))
'(p4-diff-ins-face ((t (:foreground "steelblue1"))))
'(paren-blink-off ((t (:foreground "DodgerBlue4"))))
'(paren-match ((t (:background "red" :foreground "yellow"))))
'(paren-mismatch ((t (:background "DeepPink"))))
'(pointer ((t (:background "white"))))
'(primary-selection ((t (:bold t :background "medium sea green"))))
'(red ((t (:foreground "red"))))
'(region ((t (:background "red" :foreground "yellow"))))
'(right-margin ((t (nil))))
'(secondary-selection ((t (:background "gray91" :foreground "sienna3"))))
'(show-paren-match-face ((t (:background "cyan3" :foreground "blue"))))
'(show-paren-mismatch-face ((t (:background "red" :foreground "blue"))))
'(show-trailing-whitespace ((t (:background "red" :foreground "blue"))))
'(speedbar-button-face ((t (:foreground "white"))))
'(speedbar-directory-face ((t (:foreground "gray"))))
'(speedbar-file-face ((t (:foreground "gold1"))))
'(speedbar-highlight-face ((t (:background "lightslateblue" :foreground "gold1"))))
'(speedbar-selected-face ((t (:underline t :foreground "red"))))
'(speedbar-tag-face ((t (:foreground "chartreuse"))))
'(text-cursor ((t (:background "DarkGoldenrod1" :foreground "DodgerBlue4"))))
'(toolbar ((t (:background "#e7e3d6" :foreground "#000000"))))
'(underline ((t (:underline t))))
'(vertical-divider ((t (:background "#e7e3d6" :foreground "#000000"))))
'(widget-button-face ((t (:bold t))))
'(widget-button-pressed-face ((t (:foreground "red"))))
'(widget-documentation-face ((t (:foreground "dark green"))))
'(widget-field-face ((t (:background "gray85"))))
'(widget-inactive-face ((t (:foreground "dim gray"))))
'(widget-single-line-field-face ((t (:background "gray85"))))
'(yellow ((t (:foreground "yellow"))))
'(zmacs-region ((t (:background "white" :foreground "midnightblue")))))
;;;###autoload
(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'blue-mood)
;;; blue-mood-theme.el ends here