diff options
| author | Manoj Srivastava | 2011-07-04 23:02:06 -0400 |
|---|---|---|
| committer | Chong Yidong | 2011-07-04 23:02:06 -0400 |
| commit | 3ca5c03fb15d2c83112f2b5997dc06b418450a3d (patch) | |
| tree | c69dabd07db1b9381880dc44233c208cd6d30fa4 | |
| parent | d8ed26bd07abb23acc9c1879776f5afc44ed4874 (diff) | |
| download | emacs-3ca5c03fb15d2c83112f2b5997dc06b418450a3d.tar.gz emacs-3ca5c03fb15d2c83112f2b5997dc06b418450a3d.zip | |
* themes/manoj-dark-theme.el (manoj-dark): New file.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/themes/manoj-dark-theme.el | 700 |
2 files changed, 704 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index ea3ef2767a9..0ab5f860d62 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-07-05 Manoj Srivastava <srivasta@ieee.org> | ||
| 2 | |||
| 3 | * themes/manoj-dark-theme.el (manoj-dark): New file. | ||
| 4 | |||
| 1 | 2011-03-29 Kevin Ryde <user42@zip.com.au> | 5 | 2011-03-29 Kevin Ryde <user42@zip.com.au> |
| 2 | 6 | ||
| 3 | * compilation.txt (perl-Test2): New samples. | 7 | * compilation.txt (perl-Test2): New samples. |
diff --git a/etc/themes/manoj-dark-theme.el b/etc/themes/manoj-dark-theme.el new file mode 100644 index 00000000000..bd6bbaa88a2 --- /dev/null +++ b/etc/themes/manoj-dark-theme.el | |||
| @@ -0,0 +1,700 @@ | |||
| 1 | ;;; manoj-dark.el --- A dark theme from Manoj | ||
| 2 | |||
| 3 | ;; Copyright (C) 2011 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Manoj Srivastava <srivasta@ieee.org> | ||
| 6 | ;; Keywords: lisp, faces | ||
| 7 | |||
| 8 | ;; This program is free software; you can redistribute it and/or modify | ||
| 9 | ;; it under the terms of the GNU General Public License as published by | ||
| 10 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 11 | ;; (at your option) any later version. | ||
| 12 | |||
| 13 | ;; This program is distributed in the hope that it will be useful, | ||
| 14 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | ;; GNU General Public License for more details. | ||
| 17 | |||
| 18 | ;; You should have received a copy of the GNU General Public License | ||
| 19 | ;; along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | |||
| 21 | ;;; Commentary: | ||
| 22 | |||
| 23 | ;; I spend a lot of time workin in front of a screen (many hours in a | ||
| 24 | ;; dimly lit room) and eye fatigue is an issue. This is a dark color | ||
| 25 | ;; theme for emacs, which is easier on the eyes than light themes. | ||
| 26 | |||
| 27 | ;; It does not help that I am blue-green color blind, so subtle | ||
| 28 | ;; variations are often lost on me. I do want to use color contrast to | ||
| 29 | ;; increase productivity, but I also want to avoid the jarring angry | ||
| 30 | ;; fruit salad look, and so I am in the process of crafting a logical | ||
| 31 | ;; color scheme that is high contrast enough for me, without being too | ||
| 32 | ;; unpleasing. | ||
| 33 | |||
| 34 | ;; In circumstances where there a lot of related faces that can be | ||
| 35 | ;; viewed, for example, the Gnus group buffer, consistent and logical | ||
| 36 | ;; color choices are the only sane option. Gnus groups can be newa | ||
| 37 | ;; (blueish) or mail (greenish), have states (large number of under | ||
| 38 | ;; messages, normal, and empty). The large number unread groups have | ||
| 39 | ;; highest luminance (appear brighter), and the empty one have lower | ||
| 40 | ;; luminance (appear greyer), but have the same chroma and saturation. | ||
| 41 | ;; Sub states and group priorities are rendered using a color series | ||
| 42 | ;; which has constant luminance and saturation, and vary in hue by a | ||
| 43 | ;; constant separation -- so all the related groups have the same | ||
| 44 | ;; brightness ({mail,news}/{unread,normal,empty}), and a graded | ||
| 45 | ;; selection of foreground colors. It sounds more complicated that it | ||
| 46 | ;; looks. The eye is drawn naturally to the unread groups, and first | ||
| 47 | ;; to the mail, then USENET groups (which is my preference). | ||
| 48 | |||
| 49 | ;; Similar color variations occur for individual messages in a group; | ||
| 50 | ;; high scoring messages bubble to the top, and have a higher | ||
| 51 | ;; luminance. This color schema has made me slightly faster at | ||
| 52 | ;; reading mail/USENET. | ||
| 53 | |||
| 54 | ;; In the message itself, quoted mail messages from different people | ||
| 55 | ;; are color coordinated, with high contrast beteen citations that are | ||
| 56 | ;; close to each other in the heirarchy, so it is less likely that one | ||
| 57 | ;; misunderstands who said what in a long conversation. | ||
| 58 | |||
| 59 | ;; The following scheme covers programming languages, Gnus, Erc, mail, | ||
| 60 | ;; org-mode, CUA-mode, apt-utils, bbdb, compilation buffers, changelog | ||
| 61 | ;; mode, diff and ediff, eshell, and more. You need emacs-goodies | ||
| 62 | ;; package on Debian to use this. See the wiki page at | ||
| 63 | ;; http://www.emacswiki.org/cgi-bin/wiki?ColorTheme for details. The | ||
| 64 | ;; project home page is at https://gna.org/projects/color-theme. | ||
| 65 | |||
| 66 | ;;; Code: | ||
| 67 | |||
| 68 | (deftheme manoj-dark | ||
| 69 | "Very high contrast faces with a black background. | ||
| 70 | This theme avoids subtle color variations, while avoiding the | ||
| 71 | jarring angry fruit salad look to reduce eye fatigue.") | ||
| 72 | |||
| 73 | (custom-theme-set-faces | ||
| 74 | 'manoj-dark | ||
| 75 | '(default ((t (:background "black" :foreground "WhiteSmoke")))) | ||
| 76 | ;; Font lock faces | ||
| 77 | '(font-lock-builtin-face ((t (:foreground "LightSteelBlue")))) | ||
| 78 | '(font-lock-constant-face ((t (:foreground "LightSlateBlue" :bold t)))) | ||
| 79 | '(font-lock-preprocessor-face ((t (:foreground "CornFlowerBlue" :italic t)))) | ||
| 80 | '(font-lock-keyword-face ((t (:foreground "cyan1")))) | ||
| 81 | '(font-lock-type-face ((t (:foreground "SteelBlue1")))) | ||
| 82 | '(font-lock-regexp-grouping-backslash ((t (:bold t :weight bold)))) | ||
| 83 | '(font-lock-regexp-grouping-construct ((t (:bold t :weight bold)))) | ||
| 84 | '(font-lock-variable-name-face ((t (:foreground "Aquamarine")))) | ||
| 85 | '(font-lock-function-name-face ((t (:foreground "mediumspringgreen" | ||
| 86 | :weight bold :height 1.1)))) | ||
| 87 | '(font-lock-string-face ((t (:foreground "RosyBrown1")))) | ||
| 88 | '(font-lock-comment-face ((t (:italic t :slant oblique :foreground "chocolate1")))) | ||
| 89 | '(font-lock-comment-delimiter-face ((t (:foreground "Salmon")))) | ||
| 90 | '(font-lock-doc-face ((t (:italic t :slant oblique :foreground "LightCoral")))) | ||
| 91 | '(font-lock-doc-string-face ((t (:foreground "Plum")))) | ||
| 92 | '(font-lock-warning-face ((t (:bold t :foreground "Pink" :weight bold)))) | ||
| 93 | |||
| 94 | '(cperl-array-face ((t (:foreground "LawnGreen" :background "B;ack" :bold t)))) | ||
| 95 | '(cperl-hash-face ((t (:foreground "SpringGreen" :background "B;ack" :bold t :italic t)))) | ||
| 96 | '(cperl-nonoverridable-face ((t (:foreground "chartreuse3")))) | ||
| 97 | |||
| 98 | '(gnus-button ((t (:bold t :weight bold :background "#191932" :box (:line-width 2 :style released-button))))) | ||
| 99 | '(gnus-cite-attribution-face ((t (:italic t)))) | ||
| 100 | '(gnus-cite-face-1 ((t (:foreground "CornflowerBlue")))) | ||
| 101 | '(gnus-cite-face-2 ((t (:foreground "PaleGreen")))) | ||
| 102 | '(gnus-cite-face-3 ((t (:foreground "LightGoldenrod")))) | ||
| 103 | '(gnus-cite-face-4 ((t (:foreground "LightPink")))) | ||
| 104 | '(gnus-cite-face-5 ((t (:foreground "turquoise")))) | ||
| 105 | '(gnus-cite-face-6 ((t (:foreground "khaki")))) | ||
| 106 | '(gnus-cite-face-7 ((t (:foreground "plum")))) | ||
| 107 | '(gnus-cite-face-8 ((t (:foreground "DeepSkyBlue1")))) | ||
| 108 | '(gnus-cite-face-9 ((t (:foreground "chartreuse1")))) | ||
| 109 | '(gnus-cite-face-10 ((t (:foreground "thistle1")))) | ||
| 110 | '(gnus-cite-face-11 ((t (:foreground "LightYellow1")))) | ||
| 111 | '(gnus-emphasis-bold ((t (:bold t :weight bold)))) | ||
| 112 | '(gnus-emphasis-bold-italic ((t (:italic t :bold t :slant italic :weight bold)))) | ||
| 113 | '(gnus-emphasis-highlight-words ((t (:background "black" :foreground "yellow")))) | ||
| 114 | '(gnus-emphasis-italic ((t (:italic t :slant italic)))) | ||
| 115 | '(gnus-emphasis-strikethru ((t (:strike-through t)))) | ||
| 116 | '(gnus-emphasis-underline ((t (:underline t)))) | ||
| 117 | '(gnus-emphasis-underline-bold ((t (:bold t :underline t :weight bold)))) | ||
| 118 | '(gnus-emphasis-underline-bold-italic ((t (:italic t :bold t :underline t :slant italic :weight bold)))) | ||
| 119 | '(gnus-emphasis-underline-italic ((t (:italic t :underline t :slant italic)))) | ||
| 120 | |||
| 121 | '(gnus-header-content ((t (:italic t :foreground "DarkKhaki" :slant italic)))) | ||
| 122 | '(gnus-header-content-face ((t (:italic t :foreground "DarkKhaki" :slant italic)))) | ||
| 123 | '(gnus-header-from ((t (:foreground "PaleGreen1")))) | ||
| 124 | '(gnus-header-from-face ((t (:foreground "PaleGreen1")))) | ||
| 125 | '(gnus-header-name ((t (:bold t :foreground "BlanchedAlmond" :weight bold)))) | ||
| 126 | '(gnus-header-name-face ((t (:bold t :foreground "BlanchedAlmond" :weight bold)))) | ||
| 127 | '(gnus-header-newsgroups ((t (:italic t :foreground "yellow" :slant italic)))) | ||
| 128 | '(gnus-header-newsgroups-face ((t (:italic t :foreground "yellow" :slant italic)))) | ||
| 129 | '(gnus-header-subject ((t (:foreground "coral1")))) | ||
| 130 | '(gnus-header-subject-face ((t (:foreground "coral1")))) | ||
| 131 | '(gnus-signature ((t (:italic t :slant italic)))) | ||
| 132 | '(gnus-signature-face ((t (:italic t :slant italic)))) | ||
| 133 | '(gnus-splash ((t (:foreground "#cccccc")))) | ||
| 134 | '(gnus-summary-cancelled ((t (:background "black" :foreground "yellow")))) | ||
| 135 | '(gnus-summary-cancelled-face ((t (:background "black" :foreground "yellow")))) | ||
| 136 | '(gnus-summary-high-ancient ((t (:bold t :foreground "CornflowerBlue" :weight bold)))) | ||
| 137 | '(gnus-summary-high-ancient-face ((t (:bold t :foreground "CornflowerBlue" :weight bold)))) | ||
| 138 | '(gnus-summary-normal-ancient ((t (:foreground "SkyBlue")))) | ||
| 139 | '(gnus-summary-normal-ancient-face ((t (:foreground "SkyBlue")))) | ||
| 140 | '(gnus-summary-low-ancient ((t (:italic t :foreground "LightSteelBlue" :slant italic)))) | ||
| 141 | '(gnus-summary-low-ancien-facet ((t (:italic t :foreground "LightSteelBlue" :slant italic)))) | ||
| 142 | |||
| 143 | '(gnus-summary-high-read ((t (:bold t :foreground "grey60" :weight bold)))) | ||
| 144 | '(gnus-summary-high-read-face ((t (:bold t :foreground "grey60" :weight bold)))) | ||
| 145 | '(gnus-summary-normal-read ((t (:foreground "grey50")))) | ||
| 146 | '(gnus-summary-normal-read-face ((t (:foreground "grey50")))) | ||
| 147 | '(gnus-summary-low-read ((t (:italic t :foreground "LightSlateGray" :slant italic)))) | ||
| 148 | '(gnus-summary-low-read-face ((t (:italic t :foreground "LightSlateGray" :slant italic)))) | ||
| 149 | |||
| 150 | '(gnus-summary-high-ticked ((t (:bold t :foreground "RosyBrown" :weight bold)))) | ||
| 151 | '(gnus-summary-high-ticked-face ((t (:bold t :foreground "RosyBrown" :weight bold)))) | ||
| 152 | '(gnus-summary-normal-ticked ((t (:foreground "LightSalmon")))) | ||
| 153 | '(gnus-summary-normal-ticked-face ((t (:foreground "LightSalmon")))) | ||
| 154 | '(gnus-summary-low-ticked ((t (:italic t :foreground "pink" :slant italic)))) | ||
| 155 | '(gnus-summary-low-ticked-face ((t (:italic t :foreground "pink" :slant italic)))) | ||
| 156 | |||
| 157 | '(gnus-summary-high-undownloaded ((t (:bold t :foreground "ivory3" :weight bold)))) | ||
| 158 | '(gnus-summary-normal-undownloaded ((t (:foreground "LightGray" :weight normal)))) | ||
| 159 | '(gnus-summary-low-undownloaded ((t (:italic t :foreground "grey75" :slant italic :weight normal)))) | ||
| 160 | |||
| 161 | '(gnus-summary-high-unread ((t (:bold t :foreground "PaleGreen" :weight bold)))) | ||
| 162 | '(gnus-summary-high-unread-face ((t (:bold t :foreground "PaleGreen" :weight bold)))) | ||
| 163 | '(gnus-summary-normal-unread ((t (:foreground "YellowGreen")))) | ||
| 164 | '(gnus-summary-normal-unread-face ((t (:foreground "YellowGreen")))) | ||
| 165 | '(gnus-summary-low-unread ((t (:italic t :foreground "MediumSeaGreen" :slant italic)))) | ||
| 166 | '(gnus-summary-low-unread-face ((t (:italic t :foreground "MediumSeaGreen" :slant italic)))) | ||
| 167 | '(gnus-summary-root-face ((t (:bold t :foreground "Red" :weight bold)))) | ||
| 168 | '(gnus-summary-selected ((t (:underline t :foreground "LemonChiffon")))) | ||
| 169 | '(gnus-summary-selected-face ((t (:underline t :foreground "LemonChiffon")))) | ||
| 170 | '(gnus-user-agent-bad-face ((t (:bold t :background "black" :foreground "red" :weight bold)))) | ||
| 171 | '(gnus-user-agent-good-face ((t (:background "black" :foreground "green")))) | ||
| 172 | '(gnus-user-agent-unknown-face ((t (:bold t :background "black" :foreground "orange" :weight bold)))) | ||
| 173 | '(gnus-x-face ((t (:background "white" :foreground "black")))) | ||
| 174 | |||
| 175 | '(gnus-group-mail-1 ((t (:bold t :foreground "#3BFF00" :weight normal)))) | ||
| 176 | '(gnus-group-mail-1-face ((t (:bold t :foreground "#3BFF00" :weight normal)))) | ||
| 177 | '(gnus-group-mail-2 ((t (:bold t :foreground "#5EFF00" :weight normal)))) | ||
| 178 | '(gnus-group-mail-2-face ((t (:bold t :foreground "#5EFF00" :weight normal)))) | ||
| 179 | '(gnus-group-mail-3 ((t (:bold t :foreground "#80FF00" :weight normal)))) | ||
| 180 | '(gnus-group-mail-3-face ((t (:bold t :foreground "#A1FF00" :weight normal)))) | ||
| 181 | |||
| 182 | |||
| 183 | '(gnus-group-mail-1-empty ((t (:foreground "#249900")))) | ||
| 184 | '(gnus-group-mail-1-empty-face ((t (:foreground "#249900")))) | ||
| 185 | '(gnus-group-mail-2-empty ((t (:foreground "#389900")))) | ||
| 186 | '(gnus-group-mail-2-empty-face ((t (:foreground "#389900")))) | ||
| 187 | '(gnus-group-mail-3-empty ((t (:foreground "#4D9900")))) | ||
| 188 | '(gnus-group-mail-3-empty-face ((t (:foreground "#4D9900")))) | ||
| 189 | |||
| 190 | '(gnus-group-mail-low ((t (:bold t :foreground "aquamarine2" :weight bold)))) | ||
| 191 | '(gnus-group-mail-low-face ((t (:bold t :foreground "aquamarine2" :weight bold)))) | ||
| 192 | '(gnus-group-mail-low-empty ((t (:foreground "aquamarine2")))) | ||
| 193 | '(gnus-group-mail-low-empty-face ((t (:foreground "aquamarine2")))) | ||
| 194 | |||
| 195 | '(gnus-group-news-1 ((t (:bold t :foreground "#8480FF" :weight bold)))) | ||
| 196 | '(gnus-group-news-1-face ((t (:bold t :foreground "#8480FF" :weight bold)))) | ||
| 197 | '(gnus-group-news-2 ((t (:bold t :foreground "#8088FF" :weight bold)))) | ||
| 198 | '(gnus-group-news-2-face ((t (:bold t :foreground "#8088FF" :weight bold)))) | ||
| 199 | '(gnus-group-news-3 ((t (:bold t :foreground "#8095FF" :weight bold)))) | ||
| 200 | '(gnus-group-news-3-face ((t (:bold t :foreground "#8095FF" :weight bold)))) | ||
| 201 | '(gnus-group-news-4 ((t (:bold t :foreground "#80A1FF" :weight bold)))) | ||
| 202 | '(gnus-group-news-4-face ((t (:bold t :foreground "#80A1FF" :weight bold)))) | ||
| 203 | '(gnus-group-news-5 ((t (:bold t :foreground "#80AEFF" :weight bold)))) | ||
| 204 | '(gnus-group-news-5-face ((t (:bold t :foreground "#80AEFF" :weight bold)))) | ||
| 205 | '(gnus-group-news-6 ((t (:bold t :foreground "#80BBFF" :weight bold)))) | ||
| 206 | '(gnus-group-news-6-face ((t (:bold t :foreground "#80BBFF" :weight bold)))) | ||
| 207 | |||
| 208 | '(gnus-group-news-1-empty ((t (:foreground "#524DFF")))) | ||
| 209 | '(gnus-group-news-1-empty-face ((t (:foreground "#524DFF")))) | ||
| 210 | '(gnus-group-news-2-empty ((t (:foreground "#4D58FF")))) | ||
| 211 | '(gnus-group-news-2-empty-face ((t (:foreground "#4D58FF")))) | ||
| 212 | '(gnus-group-news-3-empty ((t (:foreground "#4D6AFF")))) | ||
| 213 | '(gnus-group-news-3-empty-face ((t (:foreground "#4D6AFF")))) | ||
| 214 | '(gnus-group-news-4-empty ((t (:foreground "#4D7CFF")))) | ||
| 215 | '(gnus-group-news-4-empty-face ((t (:foreground "#4D7CFF")))) | ||
| 216 | '(gnus-group-news-5-empty ((t (:foreground "#4D8EFF")))) | ||
| 217 | '(gnus-group-news-5-empty-face ((t (:foreground "#4D8EFF")))) | ||
| 218 | '(gnus-group-news-6-empty ((t (:foreground "#4DA0FF")))) | ||
| 219 | '(gnus-group-news-6-empty-face ((t (:foreground "#4DA0FF")))) | ||
| 220 | |||
| 221 | '(gnus-group-news-low ((t (:bold t :foreground "DarkTurquoise" :weight bold)))) | ||
| 222 | '(gnus-group-news-low-face ((t (:bold t :foreground "DarkTurquoise" :weight bold)))) | ||
| 223 | '(gnus-group-news-low-empty ((t (:foreground "DarkTurquoise")))) | ||
| 224 | '(gnus-group-news-low-empty-face ((t (:foreground "DarkTurquoise")))) | ||
| 225 | |||
| 226 | ;;message faces | ||
| 227 | '(message-cited-text ((t (:foreground "red3")))) | ||
| 228 | '(message-header-cc ((t (:bold t :foreground "chartreuse1" :weight bold)))) | ||
| 229 | '(message-header-cc-face ((t (:bold t :foreground "chartreuse1" :weight bold)))) | ||
| 230 | '(message-header-name ((t (:foreground "green")))) | ||
| 231 | '(message-header-name-face ((t (:foreground "green")))) | ||
| 232 | '(message-header-newsgroups ((t (:italic t :bold t :foreground "papaya whip" :slant italic :weight bold)))) | ||
| 233 | '(message-header-newsgroups-face ((t (:italic t :bold t :foreground "papaya whip" :slant italic :weight bold)))) | ||
| 234 | '(message-header-other ((t (:foreground "ivory")))) | ||
| 235 | '(message-header-other-face ((t (:foreground "ivory")))) | ||
| 236 | '(message-header-subject ((t (:foreground "OliveDrab1")))) | ||
| 237 | '(message-header-subject-face ((t (:foreground "OliveDrab1")))) | ||
| 238 | '(message-header-to ((t (:bold t :foreground "floral white" :weight bold)))) | ||
| 239 | '(message-header-to-face ((t (:bold t :foreground "floral white" :weight bold)))) | ||
| 240 | '(message-header-xheader ((t (:foreground "DeepSkyBlue1")))) | ||
| 241 | '(message-header-xheader-face ((t (:foreground "DeepSkyBlue1")))) | ||
| 242 | '(message-mml ((t (:foreground "MediumSpringGreen")))) | ||
| 243 | '(message-mml-face ((t (:foreground "MediumSpringGreen")))) | ||
| 244 | '(message-separator ((t (:foreground "LightSkyBlue1")))) | ||
| 245 | '(message-separator-face ((t (:foreground "LightSkyBlue1")))) | ||
| 246 | '(message-url ((t (:bold t :foreground "blue" :weight bold)))) | ||
| 247 | |||
| 248 | '(bg:erc-color-face0 ((t (:background "saddle brown")))) | ||
| 249 | '(bg:erc-color-face1 ((t (:background "black")))) | ||
| 250 | '(bg:erc-color-face10 ((t (:background "DodgerBlue4")))) | ||
| 251 | '(bg:erc-color-face11 ((t (:background "cyan4")))) | ||
| 252 | '(bg:erc-color-face12 ((t (:background "blue")))) | ||
| 253 | '(bg:erc-color-face13 ((t (:background "deeppink")))) | ||
| 254 | '(bg:erc-color-face14 ((t (:background "gray50")))) | ||
| 255 | '(bg:erc-color-face15 ((t (:background "grey15")))) | ||
| 256 | '(bg:erc-color-face2 ((t (:background "blue4")))) | ||
| 257 | '(bg:erc-color-face3 ((t (:background "green4")))) | ||
| 258 | '(bg:erc-color-face4 ((t (:background "red")))) | ||
| 259 | '(bg:erc-color-face5 ((t (:background "brown")))) | ||
| 260 | '(bg:erc-color-face6 ((t (:background "purple")))) | ||
| 261 | '(bg:erc-color-face7 ((t (:background "orange")))) | ||
| 262 | '(bg:erc-color-face8 ((t (:background "yellow4")))) | ||
| 263 | '(bg:erc-color-face9 ((t (:background "green")))) | ||
| 264 | '(erc-action-face ((t (:bold t :weight bold :foreground "turquoise1")))) | ||
| 265 | '(erc-bold-face ((t (:bold t :weight bold)))) | ||
| 266 | '(erc-button ((t (:bold t :weight bold :foreground "RoyalBlue1" :box (:line-width 2 :style released-button))))) | ||
| 267 | '(erc-button-face ((t (:bold t :weight bold :foreground "RoyalBlue1" :box (:line-width 2 :style released-button))))) | ||
| 268 | '(erc-command-indicator-face ((t (:bold t :weight bold)))) | ||
| 269 | '(erc-current-nick-face ((t (:bold t :foreground "DarkTurquoise" :weight bold)))) | ||
| 270 | '(erc-dangerous-host-face ((t (:foreground "red")))) | ||
| 271 | '(erc-direct-msg-face ((t (:foreground "sandybrown")))) | ||
| 272 | '(erc-error-face ((t (:foreground "red")))) | ||
| 273 | '(erc-fool-face ((t (:foreground "dim gray")))) | ||
| 274 | '(erc-header-line ((t (:background "grey95" :foreground "ConFlowerBlue")))) | ||
| 275 | '(erc-input-face ((t (:foreground "brown")))) | ||
| 276 | '(erc-inverse-face ((t (:background "Black" :foreground "White")))) | ||
| 277 | '(erc-keyword-face ((t (:bold t :foreground "pale green" :weight bold)))) | ||
| 278 | '(erc-my-nick-face ((t (:bold t :foreground "brown" :weight bold)))) | ||
| 279 | '(erc-nick-default-face ((t (:bold t :weight bold :foreground "DodgerBlue1")))) | ||
| 280 | '(erc-button-nickname-face ((t (:bold t :weight bold :background "lightgrey" :foreground "black" :box (:line-width 2 :style released-button) )))) | ||
| 281 | '(erc-nick-msg-face ((t (:bold t :foreground "IndianRed" :weight bold)))) | ||
| 282 | '(erc-notice-face ((t (:bold t :foreground "SlateBlue" :weight bold)))) | ||
| 283 | '(erc-pal-face ((t (:bold t :foreground "Magenta" :weight bold)))) | ||
| 284 | '(erc-prompt-face ((t (:bold t :background "Navy" :foreground "lightBlue2" :weight bold)))) | ||
| 285 | '(erc-timestamp-face ((t (:bold t :foreground "SeaGreen1" :weight bold)))) | ||
| 286 | '(erc-underline-face ((t (:underline t)))) | ||
| 287 | '(fg:erc-color-face0 ((t (:foreground "BlanchedAlmond")))) | ||
| 288 | '(fg:erc-color-face1 ((t (:foreground "beige")))) | ||
| 289 | '(fg:erc-color-face10 ((t (:foreground "pale goldenrod")))) | ||
| 290 | '(fg:erc-color-face11 ((t (:foreground "cyan")))) | ||
| 291 | '(fg:erc-color-face12 ((t (:foreground "lightblue1")))) | ||
| 292 | '(fg:erc-color-face13 ((t (:foreground "deeppink")))) | ||
| 293 | '(fg:erc-color-face14 ((t (:foreground "gray50")))) | ||
| 294 | '(fg:erc-color-face15 ((t (:foreground "gray90")))) | ||
| 295 | '(fg:erc-color-face2 ((t (:foreground "blue4")))) | ||
| 296 | '(fg:erc-color-face3 ((t (:foreground "green4")))) | ||
| 297 | '(fg:erc-color-face4 ((t (:foreground "red")))) | ||
| 298 | '(fg:erc-color-face5 ((t (:foreground "brown")))) | ||
| 299 | '(fg:erc-color-face6 ((t (:foreground "purple")))) | ||
| 300 | '(fg:erc-color-face7 ((t (:foreground "orange")))) | ||
| 301 | '(fg:erc-color-face8 ((t (:foreground "yellow")))) | ||
| 302 | '(fg:erc-color-face9 ((t (:foreground "green")))) | ||
| 303 | |||
| 304 | '(org-agenda-date ((t (:foreground "LightSkyBlue")))) | ||
| 305 | '(org-agenda-date-weekend ((t (:bold t :foreground "LightSkyBlue" :weight bold)))) | ||
| 306 | '(org-agenda-restriction-lock ((t (:background "skyblue4")))) | ||
| 307 | '(org-agenda-structure ((t (:foreground "LightSkyBlue")))) | ||
| 308 | '(org-archived ((t (:foreground "grey70")))) | ||
| 309 | '(org-code ((t (:foreground "grey70")))) | ||
| 310 | '(org-column ((t (:background "grey30" :slant normal :weight normal :height 81 :family "unknown-DejaVu Sans Mono")))) | ||
| 311 | '(org-column-title ((t (:bold t :background "grey30" :underline t :weight bold)))) | ||
| 312 | '(org-date ((t (:foreground "Cyan" :underline t)))) | ||
| 313 | '(org-done ((t (:bold t :foreground "PaleGreen" :weight bold)))) | ||
| 314 | '(org-drawer ((t (:foreground "LightSkyBlue")))) | ||
| 315 | '(org-ellipsis ((t (:foreground "LightGoldenrod" :underline t)))) | ||
| 316 | '(org-formula ((t (:foreground "chocolate1")))) | ||
| 317 | '(org-headline-done ((t (:foreground "LightSalmon")))) | ||
| 318 | '(org-hide ((t (:foreground "black")))) | ||
| 319 | '(org-latex-and-export-specials ((t (:foreground "burlywood")))) | ||
| 320 | '(org-level-1 ((t (:foreground "LightSkyBlue")))) | ||
| 321 | '(org-level-2 ((t (:foreground "LightGoldenrod")))) | ||
| 322 | '(org-level-3 ((t (:foreground "Cyan1")))) | ||
| 323 | '(org-level-4 ((t (:foreground "chocolate1")))) | ||
| 324 | '(org-level-5 ((t (:foreground "PaleGreen")))) | ||
| 325 | '(org-level-6 ((t (:foreground "Aquamarine")))) | ||
| 326 | '(org-level-7 ((t (:foreground "LightSteelBlue")))) | ||
| 327 | '(org-level-8 ((t (:foreground "LightSalmon")))) | ||
| 328 | '(org-link ((t (:foreground "Cyan" :underline t)))) | ||
| 329 | '(org-mode-line-clock ((t (:foreground "DarkGreen" :underline t)))) | ||
| 330 | '(org-scheduled-previously ((t (:foreground "chocolate1")))) | ||
| 331 | '(org-scheduled-today ((t (:foreground "PaleGreen")))) | ||
| 332 | '(org-sexp-date ((t (:foreground "Cyan")))) | ||
| 333 | '(org-special-keyword ((t (:foreground "LightSalmon")))) | ||
| 334 | '(org-table ((t (:foreground "LightSkyBlue")))) | ||
| 335 | '(org-tag ((t (:bold t :weight bold)))) | ||
| 336 | '(org-target ((t (:underline t)))) | ||
| 337 | '(org-time-grid ((t (:foreground "LightGoldenrod")))) | ||
| 338 | '(org-todo ((t (:bold t :foreground "Pink" :weight bold)))) | ||
| 339 | '(org-upcoming-deadline ((t (:foreground "chocolate1")))) | ||
| 340 | '(org-verbatim ((t (:foreground "grey70" :underline t)))) | ||
| 341 | '(org-warning ((t (:bold t :weight bold :foreground "Pink")))) | ||
| 342 | '(outline-1 ((t (:foreground "LightSkyBlue")))) | ||
| 343 | '(outline-2 ((t (:foreground "LightGoldenrod")))) | ||
| 344 | '(outline-3 ((t (:foreground "Cyan1")))) | ||
| 345 | '(outline-4 ((t (:foreground "chocolate1")))) | ||
| 346 | '(outline-5 ((t (:foreground "PaleGreen")))) | ||
| 347 | '(outline-6 ((t (:foreground "Aquamarine")))) | ||
| 348 | '(outline-7 ((t (:foreground "LightSteelBlue")))) | ||
| 349 | '(outline-8 ((t (:foreground "LightSalmon")))) | ||
| 350 | |||
| 351 | |||
| 352 | '(CUA-global-mark-face ((t (:background "cyan" :foreground "black")))) | ||
| 353 | '(CUA-rectangle-face ((t (:background "maroon" :foreground "white")))) | ||
| 354 | '(CUA-rectangle-noselect-face ((t (:background "dimgray" :foreground "white")))) | ||
| 355 | '(Info-title-1-face ((t (:bold t :weight bold :family "helv" :height 1.728)))) | ||
| 356 | '(Info-title-2-face ((t (:bold t :family "helv" :weight bold :height 1.44)))) | ||
| 357 | '(Info-title-3-face ((t (:bold t :weight bold :family "helv" :height 1.2)))) | ||
| 358 | '(Info-title-4-face ((t (:bold t :family "helv" :weight bold)))) | ||
| 359 | '(align-highlight-nochange-face ((t (:background "SkyBlue4")))) | ||
| 360 | |||
| 361 | '(antlr-font-lock-keyword-face ((t (:foreground "SteelBlue")))) ;% | ||
| 362 | '(antlr-font-lock-literal-face ((t (:foreground "PaleVioletRed")))) | ||
| 363 | '(antlr-font-lock-ruledef-face ((t (:foreground "DarkGreen")))) | ||
| 364 | '(antlr-font-lock-ruleref-face ((t (:foreground "SteelBlue")))) | ||
| 365 | '(antlr-font-lock-tokendef-face ((t (:foreground "khaki")))) | ||
| 366 | '(antlr-font-lock-tokenref-face ((t (:foreground "LightSteelBlue4")))) | ||
| 367 | |||
| 368 | '(bbdb-company ((t (:italic t :slant italic :foreground "indian red")))) | ||
| 369 | '(bbdb-field-name ((t (:bold t :weight bold :foreground "steel blue")))) | ||
| 370 | '(bbdb-field-value ((t (:foreground "AntiqueWhite2")))) | ||
| 371 | '(bbdb-name ((t (:underline t :foreground "cadet blue")))) | ||
| 372 | |||
| 373 | '(bold ((t (:bold t :weight bold)))) | ||
| 374 | '(bold-italic ((t (:bold t :italic t :slant italic :weight bold)))) | ||
| 375 | '(border ((t (:background "gold" :foreground "black" )))) | ||
| 376 | '(buffer-menu-buffer ((t (:bold t :weight bold)))) | ||
| 377 | '(button ((t (:underline t :box (:line-width 2 :color "grey" | ||
| 378 | :style released-button) | ||
| 379 | :foreground "black" :background "grey" | ||
| 380 | :weight bold )))) | ||
| 381 | '(calendar-today-face ((t (:underline t :bold t :foreground "cornsilk")))) | ||
| 382 | '(change-log-acknowledgement-face ((t (:italic t :slant oblique :foreground "AntiqueWhite3")))) | ||
| 383 | '(change-log-conditionals-face ((t (:foreground "Aquamarine")))) | ||
| 384 | '(change-log-date-face ((t (:italic t :slant oblique :foreground "BurlyWood")))) | ||
| 385 | '(change-log-email-face ((t (:foreground "Aquamarine")))) | ||
| 386 | '(change-log-file-face ((t (:bold t :family "Verdana" :weight bold :foreground "LightSkyBlue" :height 0.9)))) | ||
| 387 | '(change-log-function-face ((t (:foreground "Aquamarine")))) | ||
| 388 | '(change-log-list-face ((t (:foreground "LightSkyBlue")))) | ||
| 389 | '(change-log-name-face ((t (:bold t :weight bold :foreground "Gold")))) | ||
| 390 | |||
| 391 | '(comint-highlight-input ((t (:bold t :weight bold)))) | ||
| 392 | '(comint-highlight-prompt ((t (:foreground "cyan1")))) | ||
| 393 | '(compilation-column-number ((t (:foreground "PaleGreen")))) | ||
| 394 | '(compilation-error ((t (:bold t :weight bold :foreground "Brown1")))) | ||
| 395 | '(compilation-info ((t (:bold t :foreground "LightPink1" :weight bold)))) | ||
| 396 | '(compilation-line-number ((t (:foreground "LightGoldenrod")))) | ||
| 397 | '(compilation-message-face ((t (:underline t)))) | ||
| 398 | '(compilation-warning ((t (:bold t :foreground "Orange" :weight bold)))) | ||
| 399 | '(compilation-warning-face ((t (:bold t :foreground "Orange" :weight bold)))) | ||
| 400 | '(completions-common-part ((t (:family "unknown-DejaVu Sans Mono" | ||
| 401 | :width normal :weight normal | ||
| 402 | :slant normal :foreground "WhiteSmoke" | ||
| 403 | :background "black" :height 81)))) | ||
| 404 | '(completions-first-difference ((t (:bold t :weight bold)))) | ||
| 405 | |||
| 406 | '(css-selector ((t (:foreground "LightSteelBlue")))) | ||
| 407 | '(css-property ((t (:foreground "light sea green")))) | ||
| 408 | |||
| 409 | '(cursor ((t (:background "orchid")))) | ||
| 410 | '(custom-button-face ((t (:background "lightgrey" :foreground "black" | ||
| 411 | :box '(:line-width 2 :style released-button))))) | ||
| 412 | '(custom-button-pressed-face ((t (:background "lightgrey" | ||
| 413 | :foreground "black" | ||
| 414 | :box '(:line-width 2 :style pressed-button))))) | ||
| 415 | '(custom-changed-face ((t (:foreground "wheat" :background "blue")))) | ||
| 416 | '(custom-comment-face ((t (:background "dim gray")))) | ||
| 417 | '(custom-comment-tag-face ((t (:foreground "gray80")))) | ||
| 418 | '(custom-face-tag-face ((t (:bold t :family "helv" :weight bold :height 1.1)))) | ||
| 419 | '(custom-group-tag-face ((t (:bold t :family "helv" :foreground "light blue" :weight bold :height 1.1)))) | ||
| 420 | '(custom-group-tag-face-1 ((t (:bold t :family "helv" :foreground "pink" :weight bold :height 1.1)))) | ||
| 421 | '(custom-invalid-face ((t (:background "red" :foreground "yellow")))) | ||
| 422 | '(custom-modified-face ((t (:background "blue" :foreground "white")))) | ||
| 423 | '(custom-rogue-face ((t (:background "black" :foreground "pink")))) | ||
| 424 | '(custom-saved-face ((t (:underline t)))) | ||
| 425 | '(custom-set-face ((t (:background "white" :foreground "blue")))) | ||
| 426 | '(custom-state-face ((t (:foreground "lime green")))) | ||
| 427 | '(custom-variable-button-face ((t (:bold t :underline t :weight bold | ||
| 428 | :background "lightgrey" | ||
| 429 | :foreground "black" | ||
| 430 | :box '(:line-width 2 :style released-button))))) | ||
| 431 | '(custom-variable-tag-face ((t (:bold t :family "helv" | ||
| 432 | :foreground "light blue" | ||
| 433 | :weight bold :height 1.2)))) | ||
| 434 | |||
| 435 | '(diary ((t (:foreground "IndianRed")))) | ||
| 436 | '(diary-anniversary ((t (:foreground "Cyan1")))) | ||
| 437 | '(diary-button ((t (:background "lightgrey" :foreground "black" :box (:line-width 2 :style released-button))))) | ||
| 438 | '(diary-face ((t (:foreground "IndianRed")))) | ||
| 439 | '(diary-time ((t (:foreground "LightGoldenrod")))) | ||
| 440 | '(diff-added ((t (:foreground "Green")))) | ||
| 441 | '(diff-added-face ((t (:foreground "Green")))) | ||
| 442 | '(diff-changed-face ((t (:foreground "Khaki")))) | ||
| 443 | '(diff-context-face ((t (:foreground "grey70")))) | ||
| 444 | '(diff-file-header ((t (:bold t :background "grey20" :foreground "ivory1" :weight bold)))) | ||
| 445 | '(diff-file-header-face ((t (:bold t :background "grey20" :foreground "ivory1" :weight bold)))) | ||
| 446 | '(diff-function-face ((t (:foreground "SpringGreen1")))) | ||
| 447 | '(diff-header-face ((t (:background "SlateBlue4")))) | ||
| 448 | '(diff-hunk-header ((t (:slant italic :background "DodgerBlue4")))) | ||
| 449 | '(diff-hunk-header-face ((t (:slant italic :background "DodgerBlue4")))) | ||
| 450 | '(diff-index-face ((t (:bold t :weight bold :background "SteelBlue4" :foreground "linen" )))) | ||
| 451 | '(diff-nonexistent ((t (:bold t :weight bold :background "Black" :foreground "Wheat1")))) | ||
| 452 | '(diff-nonexistent-face ((t (:bold t :weight bold :background "Black" :foreground "Wheat1")))) | ||
| 453 | '(diff-removed ((t (:foreground "salmon1")))) | ||
| 454 | '(diff-removed-face ((t (:foreground "salmon1")))) | ||
| 455 | '(diff-refine-change-face ((t (:background "MidnightBlue")))) | ||
| 456 | '(diff-refine-change ((t (:background "MidnightBlue")))) | ||
| 457 | |||
| 458 | '(ediff-current-diff-face-A ((t (:foreground "firebrick" :background "pale green")))) | ||
| 459 | '(ediff-current-diff-face-Ancestor ((t (:foreground "Black" :background "VioletRed")))) | ||
| 460 | '(ediff-current-diff-face-B ((t (:foreground "DarkOrchid" :background "Yellow")))) | ||
| 461 | '(ediff-current-diff-face-C ((t (:foreground "Navy" :background "Pink")))) | ||
| 462 | '(ediff-even-diff-face-A ((t (:foreground "Black" :background "light grey")))) | ||
| 463 | '(ediff-even-diff-face-Ancestor ((t (:foreground "White" :background "Grey")))) | ||
| 464 | '(ediff-even-diff-face-B ((t (:foreground "White" :background "Grey")))) | ||
| 465 | '(ediff-even-diff-face-C ((t (:foreground "Black" :background "light grey")))) | ||
| 466 | '(ediff-fine-diff-face-A ((t (:foreground "Navy" :background "sky blue")))) | ||
| 467 | '(ediff-fine-diff-face-Ancestor ((t (:foreground "Black" :background "Green")))) | ||
| 468 | '(ediff-fine-diff-face-B ((t (:foreground "Black" :background "cyan")))) | ||
| 469 | '(ediff-fine-diff-face-C ((t (:foreground "Black" :background "Turquoise")))) | ||
| 470 | '(ediff-odd-diff-face-A ((t (:foreground "White" :background "Grey")))) | ||
| 471 | '(ediff-odd-diff-face-Ancestor ((t (:foreground "Black" :background "light grey")))) | ||
| 472 | '(ediff-odd-diff-face-B ((t (:foreground "Black" :background "light grey")))) | ||
| 473 | '(ediff-odd-diff-face-C ((t (:foreground "White" :background "Grey")))) | ||
| 474 | |||
| 475 | '(eieio-custom-slot-tag-face ((t (:foreground "light blue")))) | ||
| 476 | '(eldoc-highlight-function-argument ((t (:bold t :weight bold)))) | ||
| 477 | '(epa-field-body ((t (:italic t :foreground "turquoise" :slant italic)))) | ||
| 478 | '(epa-field-name ((t (:bold t :foreground "PaleTurquoise" :weight bold)))) | ||
| 479 | '(epa-mark ((t (:bold t :foreground "orange" :weight bold)))) | ||
| 480 | '(epa-string ((t (:foreground "lightyellow")))) | ||
| 481 | '(epa-validity-disabled ((t (:italic t :slant italic)))) | ||
| 482 | '(epa-validity-high ((t (:bold t :foreground "PaleTurquoise" :weight bold)))) | ||
| 483 | '(epa-validity-low ((t (:italic t :slant italic)))) | ||
| 484 | '(epa-validity-medium ((t (:italic t :foreground "PaleTurquoise" :slant italic)))) | ||
| 485 | |||
| 486 | '(escape-glyph ((t (:foreground "cyan")))) | ||
| 487 | |||
| 488 | '(eshell-ls-archive-face ((t (:bold t :foreground "IndianRed")))) | ||
| 489 | '(eshell-ls-backup-face ((t (:foreground "Grey")))) | ||
| 490 | '(eshell-ls-clutter-face ((t (:foreground "DimGray")))) | ||
| 491 | '(eshell-ls-directory-face ((t (:bold t :foreground "MediumSlateBlue")))) | ||
| 492 | '(eshell-ls-executable-face ((t (:foreground "Coral")))) | ||
| 493 | '(eshell-ls-missing-face ((t (:foreground "black")))) | ||
| 494 | '(eshell-ls-picture-face ((t (:foreground "Violet")))) | ||
| 495 | '(eshell-ls-product-face ((t (:foreground "sandybrown")))) | ||
| 496 | '(eshell-ls-readonly-face ((t (:foreground "Aquamarine")))) | ||
| 497 | '(eshell-ls-special-face ((t (:foreground "Gold")))) | ||
| 498 | '(eshell-ls-symlink-face ((t (:foreground "DarkCyan" :bold t)))) | ||
| 499 | '(eshell-ls-symlink-face ((t (:foreground "White")))) | ||
| 500 | '(eshell-ls-unreadable-face ((t (:foreground "DimGray")))) | ||
| 501 | '(eshell-prompt-face ((t (:foreground "MediumAquamarine")))) | ||
| 502 | '(eshell-test-failed-face ((t (:foreground "OrangeRed" :bold t)))) | ||
| 503 | '(eshell-test-ok-face ((t (:foreground "Green" :bold t)))) | ||
| 504 | |||
| 505 | '(excerpt ((t (:italic t)))) | ||
| 506 | '(file-name-shadow ((t (:foreground "grey70")))) | ||
| 507 | '(fixed ((t (:bold t)))) | ||
| 508 | '(fixed-pitch ((t (:family "courier")))) | ||
| 509 | '(flyspell-duplicate-face ((t (:foreground "IndianRed" :bold t :underline t)))) | ||
| 510 | '(flyspell-incorrect-face ((t (:foreground "Pink" :bold t :underline t)))) | ||
| 511 | |||
| 512 | '(fringe ((t (:background "grey30" :foreground "Wheat")))) | ||
| 513 | '(header-line ((t (:box (:line-width -1 :color "grey20" :style released-button) :background "grey20" :foreground "grey90" :height 0.9)))) | ||
| 514 | '(help-argument-name ((t (:italic t :slant italic)))) | ||
| 515 | '(highlight ((t (:background "gray10" :foreground "Old Lace")))) | ||
| 516 | '(hl-line ((t (:background "grey10" :foreground "Old Lace")))) | ||
| 517 | '(gnus-mouse-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 518 | '(erc-button-mouse-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 519 | '(align-highlight-change-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 520 | '(goto-address-url-mouse-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 521 | '(goto-address-url-mouse-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 522 | '(ispell-highlight-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 523 | '(ispell-highlight-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 524 | '(widget-mouse-face ((t (:background "darkseagreen2" :foreground "blue")))) | ||
| 525 | |||
| 526 | '(highlight-beyond-fill-column-face ((t (:underline t)))) | ||
| 527 | '(highlight-changes ((t (:foreground nil :background "#382f2f")))) | ||
| 528 | '(highlight-changes-delete ((t (:foreground nil :background "#916868")))) | ||
| 529 | |||
| 530 | '(holiday ((t (:background "chocolate4")))) | ||
| 531 | '(holiday-face ((t (:background "chocolate4")))) | ||
| 532 | |||
| 533 | '(ibuffer-dired-buffer-face ((t (:foreground "mediumspringgreen" :weight bold :height 1.1)))) | ||
| 534 | '(ibuffer-help-buffer-face ((t (:italic t :slant oblique :foreground "chocolate1")))) | ||
| 535 | '(ibuffer-hidden-buffer-face ((t (:bold t :foreground "Pink" :weight bold)))) | ||
| 536 | '(ibuffer-occur-match-face ((t (:bold t :foreground "Pink" :weight bold)))) | ||
| 537 | '(ibuffer-read-only-buffer-face ((t (:foreground "SteelBlue1")))) | ||
| 538 | '(ibuffer-special-buffer-face ((t (:foreground "SteelBlue1")))) | ||
| 539 | |||
| 540 | '(ido-first-match ((t (:bold t :weight bold)))) | ||
| 541 | '(ido-incomplete-regexp ((t (:bold t :weight bold :foreground "Pink")))) | ||
| 542 | '(ido-indicator ((t (:background "red1" :foreground "yellow1" :width condensed)))) | ||
| 543 | '(ido-only-match ((t (:foreground "ForestGreen")))) | ||
| 544 | '(ido-subdir ((t (:foreground "red1")))) | ||
| 545 | '(info-menu-5 ((t (:underline t)))) | ||
| 546 | '(info-menu-header ((t (:bold t :family "helv" :weight bold)))) | ||
| 547 | '(info-node ((t (:bold t :italic t :foreground "yellow")))) | ||
| 548 | '(info-node ((t (:italic t :bold t :foreground "white" :slant italic :weight bold)))) | ||
| 549 | '(info-xref ((t (:bold t :foreground "DodgerBlue1")))) | ||
| 550 | '(info-xref ((t (:bold t :foreground "cyan" :weight bold)))) | ||
| 551 | '(isearch ((t (:background "palevioletred2" :foreground "brown4")))) | ||
| 552 | '(isearch-fail ((t (:background "red4")))) | ||
| 553 | '(isearch-lazy-highlight-face ((t (:background "paleturquoise4")))) | ||
| 554 | '(isearch-secondary ((t (:foreground "red3")))) | ||
| 555 | '(italic ((t (:italic t)))) | ||
| 556 | |||
| 557 | '(js2-builtin-face ((t (:foreground "sandy brown")))) | ||
| 558 | '(js2-comment-face ((t (:foreground "dark orchid")))) | ||
| 559 | '(js2-constant-face ((t (:foreground "pale violet red")))) | ||
| 560 | '(js2-error-face ((t (:background "indian red" :foreground "green" :bold t)))) | ||
| 561 | '(js2-function-name-face ((t (:foreground "cadet blue")))) | ||
| 562 | '(js2-function-param-face ((t (:foreground "IndianRed1")))) | ||
| 563 | '(js2-instance-member-face ((t (:foreground "IndianRed1")))) | ||
| 564 | '(js2-jsdoc-tag-face ((t (:foreground "medium orchid")))) | ||
| 565 | '(js2-jsdoc-type-face ((t (:foreground "medium orchid")))) | ||
| 566 | '(js2-jsdoc-value-face ((t (:foreground "medium orchid")))) | ||
| 567 | '(js2-keyword-face ((t (:foreground "steel blue")))) | ||
| 568 | '(js2-private-function-call-face ((t (:foreground "cadet blue")))) | ||
| 569 | '(js2-private-member-face ((t (:foreground "IndianRed1")))) | ||
| 570 | '(js2-regexp-face ((t (:foreground "khaki")))) | ||
| 571 | '(js2-string-face ((t (:foreground "lemon chiffon")))) | ||
| 572 | '(js2-type-face ((t (:foreground "medium sea green")))) | ||
| 573 | '(js2-variable-name-face ((t (:foreground "IndianRed1")))) | ||
| 574 | '(js2-warning-face ((t (:background "indian red" :foreground "green")))) | ||
| 575 | |||
| 576 | '(lazy-highlight ((t (:background "paleturquoise4")))) | ||
| 577 | '(link ((t (:foreground "cyan1" :underline t)))) | ||
| 578 | '(link-visited ((t (:underline t :foreground "violet")))) | ||
| 579 | |||
| 580 | '(makefile-space ((t (:background "hotpink")))) | ||
| 581 | '(man-bold ((t (:bold t)))) | ||
| 582 | '(man-heading ((t (:bold t)))) | ||
| 583 | '(man-italic ((t (:foreground "yellow")))) | ||
| 584 | '(man-xref ((t (:underline t)))) | ||
| 585 | '(match ((t (:background "RoyalBlue3")))) | ||
| 586 | '(minibuffer-prompt ((t (:foreground "cyan")))) | ||
| 587 | '(mode-line ((t (:background "grey75" :foreground "Blue" | ||
| 588 | :box '(:line-width -1 :style released-button) | ||
| 589 | :height 0.9)))) | ||
| 590 | '(mode-line-buffer-id ((t (:background "grey65" :foreground "red" | ||
| 591 | :bold t :weight bold :height 0.9)))) | ||
| 592 | '(mode-line-emphasis ((t (:bold t :weight bold)))) | ||
| 593 | '(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" | ||
| 594 | :style released-button :height 0.9))))) | ||
| 595 | '(mode-line-inactive ((t (:background "grey30" :foreground "grey80" | ||
| 596 | :box '(:line-width -1 :color "grey40") | ||
| 597 | :weight light :height 0.9)))) | ||
| 598 | '(mouse ((t (:background "OrangeRed")))) | ||
| 599 | |||
| 600 | '(next-error ((t (:background "blue3")))) | ||
| 601 | '(nobreak-space ((t (:foreground "cyan" :underline t)))) | ||
| 602 | '(paren-blink-off ((t (:foreground "black")))) | ||
| 603 | '(paren-mismatch-face ((t (:bold t :background "white" :foreground "red")))) | ||
| 604 | '(paren-no-match-face ((t (:bold t :background "white" :foreground "red")))) | ||
| 605 | '(query-replace ((t (:foreground "brown4" :background "palevioletred2")))) | ||
| 606 | '(region ((t (:background "blue3")))) | ||
| 607 | '(scroll-bar ((t (:background "grey75" :foreground "WhiteSmoke")))) | ||
| 608 | '(secondary-selection ((t (:background "SkyBlue4")))) | ||
| 609 | '(semantic-dirty-token-face ((t (:background "lightyellow")))) | ||
| 610 | '(semantic-highlight-edits-face ((t (:background "gray20")))) | ||
| 611 | '(semantic-unmatched-syntax-face ((t (:underline "red")))) | ||
| 612 | '(senator-intangible-face ((t (:foreground "gray75")))) | ||
| 613 | '(senator-momentary-highlight-face ((t (:background "gray30")))) | ||
| 614 | '(senator-read-only-face ((t (:background "#664444")))) | ||
| 615 | '(sgml-doctype-face ((t (:foreground "orange")))) | ||
| 616 | '(sgml-end-tag-face ((t (:foreground "greenyellow")))) | ||
| 617 | '(sgml-entity-face ((t (:foreground "gold")))) | ||
| 618 | '(sgml-ignored-face ((t (:foreground "gray20" :background "gray60")))) | ||
| 619 | '(sgml-sgml-face ((t (:foreground "yellow")))) | ||
| 620 | '(sgml-start-tag-face ((t (:foreground "mediumspringgreen")))) | ||
| 621 | '(shadow ((t (:foreground "grey70")))) | ||
| 622 | |||
| 623 | '(show-paren-match ((t (:background "steelblue3")))) | ||
| 624 | '(show-paren-match-face ((t (:background "steelblue3")))) | ||
| 625 | '(show-paren-mismatch ((t (:background "purple" :foreground "white")))) | ||
| 626 | '(smerge-base ((t (:foreground "orange")))) | ||
| 627 | '(smerge-markers ((t (:background "grey30")))) | ||
| 628 | '(smerge-mine ((t (:foreground "cyan")))) | ||
| 629 | '(smerge-other ((t (:foreground "lightgreen")))) | ||
| 630 | '(smerge-refined-change ((t (:background "blue4")))) | ||
| 631 | '(speedbar-button-face ((t (:foreground "green3")))) | ||
| 632 | '(speedbar-directory-face ((t (:foreground "light blue")))) | ||
| 633 | '(speedbar-file-face ((t (:foreground "cyan")))) | ||
| 634 | '(speedbar-highlight-face ((t (:background "sea green")))) | ||
| 635 | '(speedbar-selected-face ((t (:foreground "red" :underline t)))) | ||
| 636 | '(speedbar-separator-face ((t (:background "blue" :foreground "white" :overline "gray")))) | ||
| 637 | '(speedbar-tag-face ((t (:foreground "yellow")))) | ||
| 638 | '(table-cell ((t (:background "blue1" :foreground "gray90")))) | ||
| 639 | |||
| 640 | '(tool-bar ((t (:background "grey75" :foreground "black" :box (:line-width 1 :style released-button))))) | ||
| 641 | '(tooltip ((t (:family "helv" :background "lightyellow" :foreground "black")))) | ||
| 642 | '(trailing-whitespace ((t (:background "red1")))) | ||
| 643 | '(underline ((t (:underline t)))) | ||
| 644 | '(variable-pitch ((t (:family "helv")))) | ||
| 645 | '(vcursor ((t (:foreground "blue" :background "cyan" :underline t)))) | ||
| 646 | '(vertical-border ((t (:background "dim gray")))) | ||
| 647 | '(vhdl-font-lock-attribute-face ((t (:foreground "Orchid")))) | ||
| 648 | '(vhdl-font-lock-directive-face ((t (:foreground "CadetBlue")))) | ||
| 649 | '(vhdl-font-lock-enumvalue-face ((t (:foreground "Gold4")))) | ||
| 650 | '(vhdl-font-lock-function-face ((t (:foreground "Orchid4")))) | ||
| 651 | '(vhdl-font-lock-prompt-face ((t (:foreground "Red" :bold t)))) | ||
| 652 | '(vhdl-font-lock-reserved-words-face ((t (:foreground "Orange" :bold t)))) | ||
| 653 | '(vhdl-font-lock-translate-off-face ((t (:background "LightGray")))) | ||
| 654 | '(vhdl-speedbar-architecture-face ((t (:foreground "Blue")))) | ||
| 655 | '(vhdl-speedbar-architecture-selected-face ((t (:foreground "Blue" :underline t)))) | ||
| 656 | '(vhdl-speedbar-configuration-face ((t (:foreground "DarkGoldenrod")))) | ||
| 657 | '(vhdl-speedbar-configuration-selected-face ((t (:foreground "DarkGoldenrod" :underline t)))) | ||
| 658 | '(vhdl-speedbar-entity-face ((t (:foreground "ForestGreen")))) | ||
| 659 | '(vhdl-speedbar-entity-selected-face ((t (:foreground "ForestGreen" :underline t)))) | ||
| 660 | '(vhdl-speedbar-instantiation-face ((t (:foreground "Brown")))) | ||
| 661 | '(vhdl-speedbar-instantiation-selected-face ((t (:foreground "Brown" :underline t)))) | ||
| 662 | '(vhdl-speedbar-package-face ((t (:foreground "Grey50")))) | ||
| 663 | '(vhdl-speedbar-package-selected-face ((t (:foreground "Grey50" :underline t)))) | ||
| 664 | |||
| 665 | '(viper-minibuffer-emacs-face ((t (:foreground "Black" :background "darkseagreen2")))) | ||
| 666 | '(viper-minibuffer-insert-face ((t (:foreground "Black" :background "pink")))) | ||
| 667 | '(viper-minibuffer-vi-face ((t (:foreground "DarkGreen" :background "grey")))) | ||
| 668 | '(viper-replace-overlay-face ((t (:foreground "Black" :background "darkseagreen2")))) | ||
| 669 | '(viper-search-face ((t (:foreground "Black" :background "khaki")))) | ||
| 670 | '(vm-highlight-url-face ((t (:bold t :italic t :slant italic :weight bold)))) | ||
| 671 | '(vm-highlighted-header-face ((t (:bold t :weight bold)))) | ||
| 672 | '(vm-mime-button-face ((t (:background "grey75" :foreground "black" :box (:line-width 2 :style released-button))))) | ||
| 673 | '(vm-summary-highlight-face ((t (:bold t :weight bold)))) | ||
| 674 | '(vm-xface ((t (:background "white" :foreground "black")))) | ||
| 675 | |||
| 676 | '(which-func ((t (:foreground "Blue1")))) | ||
| 677 | '(widget ((t (:height 1.2 :background "Gray80" :foreground "black")))) | ||
| 678 | '(widget-button ((t (:bold t :weight bold :box (:line-width 2 :style released-button))))) | ||
| 679 | '(widget-button-face ((t (:bold t :weight bold :box (:line-width 2 :style released-button))))) | ||
| 680 | '(widget-button-pressed ((t (:foreground "red1" :background "lightgrey" :box (:line-width 2 :style pressed-button))))) | ||
| 681 | '(widget-button-pressed-face ((t (:foreground "red1" :background "lightgrey" :box (:line-width 2 :style pressed-button))))) | ||
| 682 | '(widget-documentation ((t (:foreground "lime green")))) | ||
| 683 | '(widget-documentation-face ((t (:foreground "lime green")))) | ||
| 684 | '(widget-field ((t (:background "dim gray")))) | ||
| 685 | '(widget-field-face ((t (:background "dim gray")))) | ||
| 686 | '(widget-inactive ((t (:foreground "grey70")))) | ||
| 687 | '(widget-inactive-face ((t (:foreground "grey70")))) | ||
| 688 | '(widget-single-line-field ((t (:background "dim gray")))) | ||
| 689 | '(widget-single-line-field-face ((t (:background "dim gray")))) | ||
| 690 | '(woman-bold-face ((t (:bold t)))) | ||
| 691 | '(woman-italic-face ((t (:foreground "beige")))) | ||
| 692 | '(woman-unknown-face ((t (:foreground "LightSalmon"))))) | ||
| 693 | |||
| 694 | (provide-theme 'manoj-dark) | ||
| 695 | |||
| 696 | ;; Local Variables: | ||
| 697 | ;; no-byte-compile: t | ||
| 698 | ;; End: | ||
| 699 | |||
| 700 | ;;; manoj-dark.el ends here | ||