manoj-dark-theme.el 40 KB

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