ruby_learner 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +58 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +65 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/new_terminal +25 -0
  13. data/bin/setup +8 -0
  14. data/docs/happy_ruby/RussOlsen_EloquentRuby_c1.pdf +0 -0
  15. data/docs/happy_ruby/RussOlsen_EloquentRuby_c5.pdf +0 -0
  16. data/docs/happy_ruby/TanoshiiRuby_v3_c23.pdf +0 -0
  17. data/docs/happy_ruby/TanoshiiRuby_v5_c1.pdf +0 -0
  18. data/docs/happy_ruby/TanoshiiRuby_v5_c2-3.pdf +0 -0
  19. data/docs/happy_ruby/c2.ipynb +479 -0
  20. data/docs/happy_ruby/c3_4.ipynb +237 -0
  21. data/docs/seminar/8-1.org +18 -0
  22. data/exe/ruby_learner +5 -0
  23. data/lib/ruby_learner/h.rb +14 -0
  24. data/lib/ruby_learner/methods.rb +131 -0
  25. data/lib/ruby_learner/random_h.rb +16 -0
  26. data/lib/ruby_learner/ruby_learner.rb +43 -0
  27. data/lib/ruby_learner/sequential_h.rb +15 -0
  28. data/lib/ruby_learner/typing_practice.rb +21 -0
  29. data/lib/ruby_learner/version.rb +3 -0
  30. data/questions/random_check/.rspec +1 -0
  31. data/questions/random_check/random_h.rb +16 -0
  32. data/questions/random_check/section_1/.rspec +1 -0
  33. data/questions/random_check/section_1/lib/answer.rb +15 -0
  34. data/questions/random_check/section_1/lib/sentence.org +9 -0
  35. data/questions/random_check/section_1/lib/workplace.rb +5 -0
  36. data/questions/random_check/section_1/spec/spec_helper.rb +100 -0
  37. data/questions/random_check/section_1/spec/workplace_spec.rb +10 -0
  38. data/questions/random_check/section_2/.rspec +1 -0
  39. data/questions/random_check/section_2/lib/answer.rb +17 -0
  40. data/questions/random_check/section_2/lib/sentence.org +12 -0
  41. data/questions/random_check/section_2/lib/workplace.rb +5 -0
  42. data/questions/random_check/section_2/spec/.rspec +1 -0
  43. data/questions/random_check/section_2/spec/spec_helper.rb +100 -0
  44. data/questions/random_check/section_2/spec/workplace_spec.rb +11 -0
  45. data/questions/sequential_check/section_1/part_1/lib/answer.rb +9 -0
  46. data/questions/sequential_check/section_1/part_1/lib/sentence.org +9 -0
  47. data/questions/sequential_check/section_1/part_1/lib/workplace.rb +5 -0
  48. data/questions/sequential_check/section_1/part_1/spec/spec_helper.rb +100 -0
  49. data/questions/sequential_check/section_1/part_1/spec/workplace_spec.rb +10 -0
  50. data/questions/sequential_check/section_1/part_2/lib/answer.rb +16 -0
  51. data/questions/sequential_check/section_1/part_2/lib/sentence.org +12 -0
  52. data/questions/sequential_check/section_1/part_2/lib/workplace.rb +5 -0
  53. data/questions/sequential_check/section_1/part_2/spec/.rspec +1 -0
  54. data/questions/sequential_check/section_1/part_2/spec/spec_helper.rb +100 -0
  55. data/questions/sequential_check/section_1/part_2/spec/workplace_spec.rb +11 -0
  56. data/ruby_learner.gemspec +41 -0
  57. data/takahashi/docs/README.org +139 -0
  58. data/takahashi/docs/drill.html +875 -0
  59. data/takahashi/docs/drill.html~ +877 -0
  60. data/takahashi/docs/drill.org +446 -0
  61. data/takahashi/docs/ruby_for_beginner.html +2642 -0
  62. data/takahashi/docs/ruby_for_beginner.org +1430 -0
  63. data/takahashi/sample_prog/answer/10_1.rb +5 -0
  64. data/takahashi/sample_prog/answer/11_1.rb +5 -0
  65. data/takahashi/sample_prog/answer/11_2.rb +4 -0
  66. data/takahashi/sample_prog/answer/1_1.rb +1 -0
  67. data/takahashi/sample_prog/answer/1_2.rb +1 -0
  68. data/takahashi/sample_prog/answer/1_3.rb +1 -0
  69. data/takahashi/sample_prog/answer/2_1.rb +5 -0
  70. data/takahashi/sample_prog/answer/2_2.rb +12 -0
  71. data/takahashi/sample_prog/answer/3_1.rb +10 -0
  72. data/takahashi/sample_prog/answer/4_1.rb +7 -0
  73. data/takahashi/sample_prog/answer/5_1.rb +6 -0
  74. data/takahashi/sample_prog/answer/5_2.rb +3 -0
  75. data/takahashi/sample_prog/answer/6_1.rb +3 -0
  76. data/takahashi/sample_prog/answer/6_2.rb +5 -0
  77. data/takahashi/sample_prog/answer/6_3.rb +5 -0
  78. data/takahashi/sample_prog/answer/6_4.rb +7 -0
  79. data/takahashi/sample_prog/answer/7_1.rb +3 -0
  80. data/takahashi/sample_prog/answer/7_2.rb +8 -0
  81. data/takahashi/sample_prog/answer/9_1.rb +3 -0
  82. data/takahashi/sample_prog/answer/9_2.rb +5 -0
  83. data/takahashi/sample_prog/answer/9_3.rb +10 -0
  84. data/takahashi/sample_prog/answer/hello.rb +3 -0
  85. data/workshop/.rspec +1 -0
  86. data/workshop/emacs.d/ac-comphist.dat +50 -0
  87. data/workshop/emacs.d/cp5022x.el +156 -0
  88. data/workshop/emacs.d/elpa/archives/gnu/archive-contents +1240 -0
  89. data/workshop/emacs.d/elpa/archives/melpa/archive-contents +2 -0
  90. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-autoloads.el +65 -0
  91. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.el +551 -0
  92. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.elc +0 -0
  93. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-pkg.el +6 -0
  94. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.el +2164 -0
  95. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.elc +0 -0
  96. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ada-mode +72 -0
  97. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c++-mode +99 -0
  98. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c-mode +55 -0
  99. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/caml-mode +231 -0
  100. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojure-mode +580 -0
  101. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojurescript-mode +475 -0
  102. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/coq-mode +278 -0
  103. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/css-mode +874 -0
  104. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/erlang-mode +216 -0
  105. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ess-julia-mode +37 -0
  106. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/go-mode +25 -0
  107. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/haskell-mode +679 -0
  108. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/java-mode +53 -0
  109. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/js-mode +148 -0
  110. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/julia-mode +37 -0
  111. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/lua-mode +21 -0
  112. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/nim-mode +70 -0
  113. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/objc-mode +161 -0
  114. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/octave-mode +46 -0
  115. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/php-mode +6144 -0
  116. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/python-mode +379 -0
  117. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/qml-mode +183 -0
  118. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ruby-mode +181 -0
  119. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scala-mode +1347 -0
  120. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scheme-mode +216 -0
  121. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sclang-mode +1481 -0
  122. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sh-mode +182 -0
  123. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/swift-mode +87 -0
  124. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tcl-mode +172 -0
  125. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ts-mode +797 -0
  126. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tuareg-mode +231 -0
  127. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/verilog-mode +313 -0
  128. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-autoloads.el +16 -0
  129. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-pkg.el +2 -0
  130. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.el +90 -0
  131. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.elc +0 -0
  132. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-autoloads.el +26 -0
  133. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-pkg.el +2 -0
  134. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.el +877 -0
  135. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.elc +0 -0
  136. data/workshop/emacs.d/elpa/haml-mode-readme.txt +8 -0
  137. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.el +918 -0
  138. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.elc +0 -0
  139. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-autoloads.el +32 -0
  140. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-pkg.el +8 -0
  141. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.el +912 -0
  142. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.elc +0 -0
  143. data/workshop/emacs.d/elpa/ox-bibtex-chinese-readme.txt +21 -0
  144. data/workshop/emacs.d/elpa/popup-20160709.729/popup-autoloads.el +15 -0
  145. data/workshop/emacs.d/elpa/popup-20160709.729/popup-pkg.el +2 -0
  146. data/workshop/emacs.d/elpa/popup-20160709.729/popup.el +1432 -0
  147. data/workshop/emacs.d/elpa/popup-20160709.729/popup.elc +0 -0
  148. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-autoloads.el +33 -0
  149. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-pkg.el +2 -0
  150. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.el +470 -0
  151. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.elc +0 -0
  152. data/workshop/emacs.d/elpa/yaml-mode-readme.txt +25 -0
  153. data/workshop/emacs.d/haml-mode-master/.gitignore +1 -0
  154. data/workshop/emacs.d/haml-mode-master/.mailmap +2 -0
  155. data/workshop/emacs.d/haml-mode-master/MIT-LICENSE +20 -0
  156. data/workshop/emacs.d/haml-mode-master/README.md +47 -0
  157. data/workshop/emacs.d/haml-mode-master/haml-mode.el +887 -0
  158. data/workshop/emacs.d/iceberg_theme.el +202 -0
  159. data/workshop/emacs.d/init-open-recentf.el +133 -0
  160. data/workshop/emacs.d/init.el +229 -0
  161. data/workshop/emacs.d/inits/line-num.el +264 -0
  162. data/workshop/emacs.d/install-elisp.el +366 -0
  163. data/workshop/emacs.d/markdown-mode/markdown-mode.el +5978 -0
  164. data/workshop/emacs.d/notes +12 -0
  165. data/workshop/emacs.d/processing-mode/processing-mode.el +275 -0
  166. data/workshop/emacs.d/recentf +31 -0
  167. data/workshop/emacs.d/ruby-mode/inf-ruby.el +416 -0
  168. data/workshop/emacs.d/ruby-mode/rdoc-mode.el +130 -0
  169. data/workshop/emacs.d/ruby-mode/ruby-electric.el +205 -0
  170. data/workshop/emacs.d/ruby-mode/ruby-mode.el +1496 -0
  171. data/workshop/emacs.d/ruby-mode/ruby-style.el +78 -0
  172. data/workshop/emacs.d/ruby-mode/rubydb2x.el +104 -0
  173. data/workshop/emacs.d/ruby-mode/rubydb3x.el +115 -0
  174. data/workshop/emacs.d/ruby_learner_init.el +244 -0
  175. data/workshop/emacs.d/themes/dracula-theme.el +431 -0
  176. data/workshop/emacs.d/themes/iceberg-theme.el +205 -0
  177. data/workshop/emacs.d/themes/my-misterioso-theme.el +109 -0
  178. data/workshop/emacs.d/themes/my-wombat-theme.el +121 -0
  179. data/workshop/emacs.d/wiki-mode/wiki.el +976 -0
  180. data/workshop/emacs_help.org +34 -0
  181. data/workshop/lib/answer.rb +1 -0
  182. data/workshop/lib/sentence.org +1 -0
  183. data/workshop/lib/workplace.rb +1 -0
  184. data/workshop/restore/empty.rb +0 -0
  185. data/workshop/spec/spec_helper.rb +100 -0
  186. data/workshop/spec/workplace_spec.rb +1 -0
  187. data/workshop/training_data.txt +3 -0
  188. metadata +343 -0
@@ -0,0 +1,918 @@
1
+ ;;; material-light-theme.el --- A Theme based on the colors of the Google Material Design
2
+
3
+ ;; Copyright (C) 2014 Paulik Christoph
4
+
5
+ ;; Author: Christoph Paulik <cpaulik@gmail.com>
6
+ ;; Keywords: themes
7
+ ;; URL: http://github.com/cpaulik/emacs-material-theme
8
+ ;; Version: 2015
9
+ ;; X-Original-Version: 0.1
10
+ ;; Package-Requires: ((emacs "24.1"))
11
+
12
+ ;; Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ ;; of this software and associated documentation files (the "Software"), to deal
14
+ ;; in the Software without restriction, including without limitation the rights
15
+ ;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ ;; copies of the Software, and to permit persons to whom the Software is
17
+ ;; furnished to do so, subject to the following conditions:
18
+ ;;
19
+ ;; The above copyright notice and this permission notice shall be included in all
20
+ ;; copies or substantial portions of the Software.
21
+ ;;
22
+ ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ ;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ ;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ ;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ ;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ ;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ ;; SOFTWARE.
29
+
30
+ ;;; Commentary:
31
+
32
+ ;; To use it, put the following in your Emacs configuration file:
33
+ ;;
34
+ ;; (load-theme 'material-light t)
35
+ ;;
36
+ ;; Requirements: Emacs 24.
37
+
38
+ ;;; Credits:
39
+
40
+ ;; Thanks to Bruce Williams of the Spacegray Theme which was used as the boilerplate:
41
+ ;; https://github.com/bruce/emacs-spacegray-theme
42
+
43
+ ;;; Code:
44
+
45
+ (deftheme material-light
46
+ "A UI Theme for Emacs based on material design colors")
47
+ (display-color-cells (selected-frame))
48
+ (let* ((class '((class color) (min-colors 89)))
49
+ (256color (eq (display-color-cells (selected-frame)) 256))
50
+ (truecolor (eq (display-color-cells (selected-frame)) 16777216))
51
+
52
+ (background (if (or window-system truecolor) "#FAFAFA" "#FAFAFA")) ;; sidebar-container
53
+ (current-line (if (or window-system truecolor) "#ECEFF1" "#dadada")) ;; tree-row
54
+ (far-background (if (or window-system truecolor) "#e0f7fa" "#e0f7fa")) ;; panel-control
55
+ (inactive-gray (if (or window-system truecolor) "#cfd8dc" "#cfd8dc"))
56
+ (header-color (if (or window-system truecolor) "#C8E6C9" "#C8E6C9"))
57
+ (subtle "#a7adba") ;; tree-row-hover-disclosure-button-control
58
+ (selection "#90A4AE") ;; tab-control-dirty-tab-close-button
59
+ (secondary-selection "#bf616a") ;; tab-control-hover-tab-close-button
60
+ (foreground "#212121")
61
+ (comment "#607d8b") ;; table-row
62
+ (red "#B71C1C") ;; tab-control-hover-tab-close-button
63
+ (orange "#FF5722") ;; darker tab-control-dirty-tab-close-butto
64
+ (yellow "#FFA000") ;; tab-control-dirty-tab-close-button
65
+ (green "#558b2f") ;; complement tab-control-dirty-tab-close-button
66
+ (aqua "#00796b") ;; lighter complement tab-control-dirty-tab-close-button
67
+ (blue "#2196f3") ;; complement tab-control-dirty-tab-close-button
68
+ (purple "#4527A0")) ;; complement tab-control-dirty-tab-close-button
69
+
70
+ (custom-theme-set-faces
71
+ 'material-light
72
+ `(default ((,class (:foreground ,foreground :background ,background))))
73
+ `(bold ((,class (:weight bold))))
74
+ `(bold-italic ((,class (:slant italic :weight bold))))
75
+ `(underline ((,class (:underline t))))
76
+ `(italic ((,class (:slant italic))))
77
+ `(font-lock-builtin-face ((,class (:foreground ,red))))
78
+ `(font-lock-comment-delimiter-face ((,class (:foreground ,comment))))
79
+ `(font-lock-comment-face ((,class (:foreground ,comment))))
80
+ `(font-lock-constant-face ((,class (:foreground ,green))))
81
+ `(font-lock-doc-face ((,class (:foreground "#673ab7"))))
82
+ `(font-lock-doc-string-face ((,class (:foreground ,yellow))))
83
+ `(font-lock-function-name-face ((,class (:foreground ,"#0097A7"))))
84
+ `(font-lock-keyword-face ((,class (:foreground ,aqua))))
85
+ `(font-lock-negation-char-face ((,class (:foreground ,blue))))
86
+ `(font-lock-preprocessor-face ((,class (:foreground ,yellow))))
87
+ `(font-lock-regexp-grouping-backslash ((,class (:foreground ,yellow))))
88
+ `(font-lock-regexp-grouping-construct ((,class (:foreground ,purple))))
89
+ `(font-lock-string-face ((,class (:foreground "#689f38"))))
90
+ `(font-lock-type-face ((,class (:foreground "#0097A7"))))
91
+ `(font-lock-variable-name-face ((,class (:foreground ,"#EF6C00"))))
92
+ `(font-lock-warning-face ((,class (:weight bold :foreground ,red))))
93
+ `(highlight-numbers-number ((,class (:foreground ,"#689f38"))))
94
+ `(shadow ((,class (:foreground ,comment))))
95
+ `(success ((,class (:foreground "SeaGreen2"))))
96
+ `(error ((,class (:foreground ,red))))
97
+ `(warning ((,class (:foreground ,orange))))
98
+
99
+ ;; ace-window faces
100
+ `(aw-leading-char-face ((,class (:foreground ,
101
+ background
102
+ :background ,
103
+ green
104
+ :height ,
105
+ 1.7
106
+ :weight
107
+ bold))))
108
+
109
+ ;; ace-jump-faces
110
+ `(ace-jump-face-foreground ((,class (:foreground ,background
111
+ :background ,green
112
+ :weight bold))))
113
+
114
+ `(ace-jump-face-background ((,class (:foreground ,inactive-gray
115
+ :weight normal))))
116
+
117
+ ;; ace-jump-mode
118
+ `(avy-background-face ((,class (:foreground ,inactive-gray
119
+ :weight normal))))
120
+ `(avy-lead-face-0 ((,class (:foreground ,background
121
+ :background ,green
122
+ :weight bold))))
123
+ `(avy-lead-face ((,class (:foreground ,background
124
+ :background ,green
125
+ :weight bold))))
126
+
127
+ ;; Flycheck
128
+ `(flycheck-error ((,class (:underline (:style wave :color ,red)))))
129
+ `(flycheck-info ((,class (:underline (:style wave :color ,blue)))))
130
+ `(flycheck-warning ((,class (:underline (:style wave :color ,orange)))))
131
+ `(flycheck-fringe-error ((,class (:foreground ,red :background ,current-line))))
132
+ `(flycheck-fringe-info ((,class (:foreground ,blue :background ,current-line))))
133
+ `(flycheck-fringe-warning ((,class (:foreground ,yellow :background ,current-line))))
134
+
135
+ ;; highlight indentation
136
+ `(highlight-indentation-face ((,class (:background, current-line))))
137
+ `(highlight-indentation-current-column-face ((,class (:background, far-background))))
138
+
139
+ ;; Flymake
140
+ `(flymake-warnline ((,class (:underline (:style wave :color ,orange) :background ,background))))
141
+ `(flymake-errline ((,class (:underline (:style wave :color ,red) :background ,background))))
142
+
143
+ ;; Clojure errors
144
+ `(clojure-test-failure-face ((,class (:background nil :inherit flymake-warnline))))
145
+ `(clojure-test-error-face ((,class (:background nil :inherit flymake-errline))))
146
+ `(clojure-test-success-face ((,class (:background nil :foreground nil :underline ,green))))
147
+ `(clojure-keyword-face ((,class (:inherit font-lock-builtin-face))))
148
+
149
+ ;; EDTS errors
150
+ `(edts-face-warning-line ((t (:background nil :inherit flymake-warnline))))
151
+ `(edts-face-warning-mode-line ((,class (:background nil :foreground ,orange :weight bold))))
152
+ `(edts-face-error-line ((t (:background nil :inherit flymake-errline))))
153
+ `(edts-face-error-mode-line ((,class (:background nil :foreground ,red :weight bold))))
154
+
155
+ ;; For Brian Carper's extended clojure syntax table
156
+ `(clojure-keyword ((,class (:foreground ,yellow))))
157
+ `(clojure-parens ((,class (:foreground ,foreground))))
158
+ `(clojure-braces ((,class (:foreground ,green))))
159
+ `(clojure-brackets ((,class (:foreground ,yellow))))
160
+ `(clojure-double-quote ((,class (:foreground ,aqua :background nil))))
161
+ `(clojure-special ((,class (:foreground ,blue))))
162
+ `(clojure-java-call ((,class (:foreground ,purple))))
163
+ ;; Rainbow-delimiters
164
+ `(rainbow-delimiters-depth-1-face ((,class (:foreground ,"#e91e63"))))
165
+ `(rainbow-delimiters-depth-2-face ((,class (:foreground ,"#1565C0"))))
166
+ `(rainbow-delimiters-depth-3-face ((,class (:foreground ,"#EF6C00"))))
167
+ `(rainbow-delimiters-depth-4-face ((,class (:foreground ,"#B388FF"))))
168
+ `(rainbow-delimiters-depth-5-face ((,class (:foreground ,"#76ff03"))))
169
+ `(rainbow-delimiters-depth-6-face ((,class (:foreground ,"#26A69A"))))
170
+ `(rainbow-delimiters-depth-7-face ((,class (:foreground ,"#B71C1C"))))
171
+ `(rainbow-delimiters-depth-8-face ((,class (:foreground ,"#795548"))))
172
+ `(rainbow-delimiters-depth-9-face ((,class (:foreground ,"#827717"))))
173
+ `(rainbow-delimiters-unmatched-face ((,class (:foreground ,foreground :background ,"#EF6C00"))))
174
+
175
+ ;; MMM-mode
176
+ `(mmm-code-submode-face ((,class (:background ,current-line))))
177
+ `(mmm-comment-submode-face ((,class (:inherit font-lock-comment-face))))
178
+ `(mmm-output-submode-face ((,class (:background ,current-line))))
179
+
180
+ ;; Search
181
+ `(match ((,class (:foreground ,background :background ,green :inverse-video nil))))
182
+ `(isearch ((,class (:foreground ,background :background ,green))))
183
+ `(isearch-lazy-highlight-face ((,class (:foreground ,background :background ,green :inverse-video nil))))
184
+ `(lazy-highlight-face ((,class (:foreground ,background :background ,green :inverse-video nil))))
185
+ `(isearch-fail ((,class (:background ,background :inherit font-lock-warning-face :inverse-video t))))
186
+
187
+ ;; Evil
188
+ `(evil-search-highlight-persist-highlight-face ((,class (:foreground ,background
189
+ :background ,green))))
190
+ ;; iedit
191
+ `(iedit-occurrence ((,class (:foreground ,background :background ,green))))
192
+
193
+ ;; ahs
194
+ `(ahs-face ((,class (:foreground ,background :background ,green))))
195
+ `(ahs-plugin-whole-buffer-face ((,class (:foreground ,foreground :background ,green))))
196
+
197
+ ;; Anzu
198
+ `(anzu-mode-line ((,class (:foreground ,orange))))
199
+ `(anzu-replace-highlight ((,class (:inherit isearch-lazy-highlight-face))))
200
+ `(anzu-replace-to ((,class (:inherit isearch))))
201
+
202
+ ;; IDO
203
+ `(ido-subdir ((,class (:foreground ,purple))))
204
+ `(ido-first-match ((,class (:foreground ,orange))))
205
+ `(ido-only-match ((,class (:foreground ,green))))
206
+ `(ido-indicator ((,class (:foreground ,red :background ,background))))
207
+ `(ido-virtual ((,class (:foreground ,comment))))
208
+
209
+ ;; flx-ido
210
+ `(flx-highlight-face ((,class (:inherit nil :foreground ,yellow :weight bold :underline nil))))
211
+
212
+ ;; which-function
213
+ `(which-func ((,class (:foreground ,blue :background nil))))
214
+
215
+ ;; Emacs interface
216
+ `(cursor ((,class (:background ,orange))))
217
+ `(fringe ((,class (:background ,current-line))))
218
+ `(linum ((,class (:background ,current-line :foreground ,foreground))))
219
+ `(linum-highlight-face ((,class (:background ,current-line :foreground ,foreground))))
220
+ `(border ((,class (:background ,current-line))))
221
+ `(vertical-border ((,class (:background ,selection
222
+ :foreground, selection))))
223
+ `(border-glyph ((,class (nil))))
224
+ `(highlight ((,class (:inverse-video nil :background ,current-line))))
225
+ `(hl-line ((,class (:inverse-video nil :background ,current-line))))
226
+ `(gui-element ((,class (:background ,current-line :foreground ,foreground))))
227
+ `(mode-line ((,class (:foreground ,foreground :background ,far-background
228
+ :box (:line-width 2 :color ,current-line)))))
229
+ `(mode-line-buffer-id ((,class (:foreground ,foreground :background nil :weight bold))))
230
+ `(mode-line-inactive ((,class (:inherit mode-line
231
+ :foreground ,subtle
232
+ :background ,current-line
233
+ :weight normal))))
234
+ `(mode-line-emphasis ((,class (:foreground ,foreground :slant italic))))
235
+ `(mode-line-highlight ((,class (:foreground ,purple :box nil))))
236
+ `(minibuffer-prompt ((,class (:foreground ,blue))))
237
+ `(region ((,class (:background ,selection))))
238
+ `(secondary-selection ((,class (:background ,secondary-selection))))
239
+
240
+ `(header-line ((,class (:inherit mode-line :foreground ,purple :background nil))))
241
+
242
+ `(trailing-whitespace ((,class (:foreground ,red :inverse-video t :underline nil))))
243
+ `(whitespace-trailing ((,class (:foreground ,red :inverse-video t :underline nil))))
244
+ `(whitespace-space-after-tab ((,class (:foreground ,red :inverse-video t :underline nil))))
245
+ `(whitespace-space-before-tab ((,class (:foreground ,red :inverse-video t :underline nil))))
246
+ `(whitespace-empty ((,class (:foreground ,red :inverse-video t :underline nil))))
247
+ `(whitespace-line ((,class (:background nil :foreground ,red))))
248
+ `(whitespace-indentation ((,class (:background nil :foreground ,aqua))))
249
+ `(whitespace-space ((,class (:background nil :foreground ,selection))))
250
+ `(whitespace-newline ((,class (:background nil :foreground ,selection))))
251
+ `(whitespace-tab ((,class (:background nil :foreground ,selection))))
252
+ `(whitespace-hspace ((,class (:background nil :foreground ,selection))))
253
+
254
+ ;; Parenthesis matching (built-in)
255
+ `(show-paren-match-face ((,class (:background ,blue :foreground ,background))))
256
+ `(show-paren-mismatch-face ((,class (:background "red1" :foreground "white"))))
257
+
258
+ ;; Smartparens paren matching
259
+ `(sp-show-pair-match-face ((,class (:foreground ,background :background ,blue :inherit show-paren-match))))
260
+ `(sp-show-pair-mismatch-face ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
261
+
262
+ ;; Parenthesis matching (mic-paren)
263
+ `(paren-face-match ((,class (:foreground nil :background nil :inherit show-paren-match))))
264
+ `(paren-face-mismatch ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
265
+ `(paren-face-no-match ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
266
+
267
+ ;; Parenthesis dimming (parenface)
268
+ `(paren-face ((,class (:foreground ,comment :background nil))))
269
+
270
+ `(sh-heredoc ((,class (:foreground nil :inherit font-lock-string-face :weight normal))))
271
+ `(sh-quoted-exec ((,class (:foreground nil :inherit font-lock-preprocessor-face))))
272
+ `(slime-highlight-edits-face ((,class (:weight bold))))
273
+ `(slime-repl-input-face ((,class (:weight normal :underline nil))))
274
+ `(slime-repl-prompt-face ((,class (:underline nil :weight bold :foreground ,purple))))
275
+ `(slime-repl-result-face ((,class (:foreground ,green))))
276
+ `(slime-repl-output-face ((,class (:foreground ,blue :background ,background))))
277
+
278
+ `(csv-separator-face ((,class (:foreground ,orange))))
279
+
280
+ `(diff-hl-insert ((,class (:background ,green :foreground ,green))))
281
+ `(diff-hl-change ((,class (:background ,blue :foreground ,blue))))
282
+ `(diff-hl-delete ((,class (:background ,orange :foreground ,orange))))
283
+
284
+ `(diff-added ((,class (:foreground ,green))))
285
+ `(diff-changed ((,class (:foreground ,blue))))
286
+ `(diff-removed ((,class (:foreground ,orange))))
287
+ `(diff-header ((,class (:foreground ,aqua :background nil))))
288
+ `(diff-hunk-header ((,class (:foreground ,purple))))
289
+ `(diff-refine-added ((,class (:inherit diff-added :inverse-video t))))
290
+ `(diff-refine-removed ((,class (:inherit diff-removed :inverse-video t))))
291
+
292
+ `(ediff-even-diff-A ((,class (:foreground nil :background nil :inverse-video t))))
293
+ `(ediff-even-diff-B ((,class (:foreground nil :background nil :inverse-video t))))
294
+ `(ediff-odd-diff-A ((,class (:foreground ,comment :background nil :inverse-video t))))
295
+ `(ediff-odd-diff-B ((,class (:foreground ,comment :background nil :inverse-video t))))
296
+
297
+ `(eldoc-highlight-function-argument ((,class (:foreground ,green :weight bold))))
298
+
299
+ ;; macrostep
300
+ `(macrostep-expansion-highlight-face ((,class (:inherit highlight :foreground nil))))
301
+
302
+ ;; undo-tree
303
+ `(undo-tree-visualizer-default-face ((,class (:foreground ,foreground))))
304
+ `(undo-tree-visualizer-current-face ((,class (:foreground ,green :weight bold))))
305
+ `(undo-tree-visualizer-active-branch-face ((,class (:foreground ,red))))
306
+ `(undo-tree-visualizer-register-face ((,class (:foreground ,yellow))))
307
+
308
+ ;; dired+
309
+ `(diredp-compressed-file-suffix ((,class (:foreground ,blue))))
310
+ `(diredp-deletion ((,class (:inherit error :inverse-video t))))
311
+ `(diredp-deletion-file-name ((,class (:inherit error))))
312
+ `(diredp-dir-heading ((,class (:foreground ,green :weight bold))))
313
+ `(diredp-dir-priv ((,class (:foreground ,aqua :background nil))))
314
+ `(diredp-exec-priv ((,class (:foreground ,blue :background nil))))
315
+ `(diredp-executable-tag ((,class (:foreground ,red :background nil))))
316
+ `(diredp-file-name ((,class (:foreground ,yellow))))
317
+ `(diredp-file-suffix ((,class (:foreground ,green))))
318
+ `(diredp-flag-mark ((,class (:foreground ,green :inverse-video t))))
319
+ `(diredp-flag-mark-line ((,class (:background nil :inherit highlight))))
320
+ `(diredp-ignored-file-name ((,class (:foreground ,comment))))
321
+ `(diredp-link-priv ((,class (:background nil :foreground ,purple))))
322
+ `(diredp-mode-line-flagged ((,class (:foreground ,red))))
323
+ `(diredp-mode-line-marked ((,class (:foreground ,green))))
324
+ `(diredp-no-priv ((,class (:background nil))))
325
+ `(diredp-number ((,class (:foreground ,yellow))))
326
+ `(diredp-other-priv ((,class (:background nil :foreground ,purple))))
327
+ `(diredp-rare-priv ((,class (:foreground ,red :background nil))))
328
+ `(diredp-read-priv ((,class (:foreground ,green :background nil))))
329
+ `(diredp-symlink ((,class (:foreground ,purple))))
330
+ `(diredp-write-priv ((,class (:foreground ,yellow :background nil))))
331
+
332
+ ;; diredfl
333
+ `(diredfl-compressed-file-suffix ((,class (:foreground ,blue))))
334
+ `(diredfl-compressed-file-name ((,class (:foreground ,blue))))
335
+ `(diredfl-ignored-file-name ((,class (:foreground ,comment))))
336
+ `(diredfl-date-time ((,class (:foreground ,green))))
337
+ `(diredfl-file-name ((,class (:foreground ,foreground))))
338
+ `(diredfl-read-priv ((,class (:foreground ,green :background nil))))
339
+ `(diredfl-write-priv ((,class (:foreground ,yellow :background nil))))
340
+ `(diredfl-exec-priv ((,class (:foreground ,red :background nil))))
341
+ `(diredfl-rare-priv ((,class (:foreground ,orange :background nil))))
342
+ `(diredfl-no-priv ((,class (:background nil))))
343
+ `(diredfl-deletion ((,class (:inherit error :inverse-video t))))
344
+ `(diredfl-deletion-file-name ((,class (:inherit error))))
345
+ `(diredfl-dir-heading ((,class (:foreground ,green :weight bold))))
346
+ `(diredfl-symlink ((,class (:foreground ,purple))))
347
+ `(diredfl-dir-priv ((,class (:foreground ,aqua :background nil))))
348
+ `(diredfl-dir-name ((,class (:foreground ,aqua :background nil))))
349
+ `(diredfl-number ((,class (:foreground ,yellow :background nil))))
350
+ `(diredfl-flag-mark ((,class (:foreground ,orange :background nil))))
351
+ `(diredfl-flag-mark-line ((,class (:foreground ,nil :background ,selection))))
352
+ `(diredfl-file-suffix ((,class (:foreground ,aqua :background nil))))
353
+
354
+ ;; Magit
355
+ `(magit-branch ((,class (:foreground ,green))))
356
+ `(magit-diff-added ((,class (:inherit diff-added))))
357
+ `(magit-diff-added-highlight ((,class (:inherit magit-diff-added
358
+ :background ,far-background))))
359
+ `(magit-diff-removed ((,class (:inherit diff-removed))))
360
+ `(magit-diff-removed-highlight ((,class (:inherit magit-diff-removed
361
+ :background ,far-background))))
362
+ `(magit-header ((,class (:inherit nil :weight bold))))
363
+ `(magit-item-highlight ((,class (:inherit highlight :background nil))))
364
+ `(magit-log-author ((,class (:foreground ,aqua))))
365
+ `(magit-log-graph ((,class (:foreground ,comment))))
366
+ `(magit-log-date ((,class (:foreground ,yellow))))
367
+ `(magit-section-title ((,class (:foreground ,blue :weight bold))))
368
+ `(magit-section-highlight ((t (:background ,current-line))))
369
+ `(magit-section-heading ((t (:foreground ,yellow :weight bold))))
370
+ `(magit-diff-file-heading ((t (:weight bold))))
371
+ `(magit-diff-file-heading-highlight ((t (:background ,current-line :weight bold))))
372
+ `(magit-diff-file-heading-selection ((t (:background ,background
373
+ :foreground ,orange :weight bold))))
374
+ `(magit-diff-hunk-heading ((t (:background ,header-color))))
375
+ `(magit-diff-hunk-heading-highlight ((t (:background ,header-color))))
376
+ `(magit-diff-hunk-heading-selection ((t (:background ,background
377
+ :foreground ,orange))))
378
+ `(magit-diff-lines-heading ((t (:background ,orange
379
+ :foreground ,background))))
380
+ `(magit-blame-heading ((t (:background ,far-background
381
+ :foreground ,aqua))))
382
+ `(magit-blame-date ((t (:background ,far-background
383
+ :foreground ,blue))))
384
+ `(magit-blame-summary ((t (:background ,far-background
385
+ :foreground ,green))))
386
+ `(magit-diff-context-highlight ((t (:background ,far-background
387
+ :foreground "grey70"))))
388
+ `(magit-diff-context ((t (:foreground "grey70"))))
389
+ `(magit-diffstat-added ((t (:foreground ,green))))
390
+ `(magit-diffstat-removed ((t (:foreground ,red))))
391
+ `(magit-process-ok ((t (:foreground ,green :weight bold))))
392
+ `(magit-process-ng ((t (:foreground ,red :weight bold))))
393
+ `(magit-branch-local ((t (:foreground ,blue :weight bold))))
394
+ `(magit-branch-remote ((t (:foreground ,green :weight bold))))
395
+ `(magit-tag ((t (:foreground ,orange :weight bold))))
396
+ `(magit-hash ((t (:foreground ,comment))))
397
+ `(magit-sequence-stop ((t (:foreground ,green))))
398
+ `(magit-sequence-part ((t (:foreground ,yellow))))
399
+ `(magit-sequence-head ((t (:foreground ,blue))))
400
+ `(magit-sequence-drop ((t (:foreground ,red))))
401
+
402
+ ;; git-gutter
403
+ `(git-gutter:modified ((,class (:foreground ,purple :weight bold))))
404
+ `(git-gutter:added ((,class (:foreground ,green :weight bold))))
405
+ `(git-gutter:deleted ((,class (:foreground ,red :weight bold))))
406
+ `(git-gutter:unchanged ((,class (:background ,yellow))))
407
+
408
+ ;; git-gutter-fringe
409
+ `(git-gutter-fr:modified ((,class (:foreground ,purple :weight bold))))
410
+ `(git-gutter-fr:added ((,class (:foreground ,green :weight bold))))
411
+ `(git-gutter-fr:deleted ((,class (:foreground ,red :weight bold))))
412
+
413
+ `(link ((,class (:foreground nil :underline t))))
414
+ `(widget-button ((,class (:underline t :weight bold))))
415
+ `(widget-field ((,class (:background ,current-line :box (:line-width 1 :color ,foreground)))))
416
+
417
+ ;; Compilation (most faces politely inherit from 'success, 'error, 'warning etc.)
418
+ `(compilation-column-number ((,class (:foreground ,yellow))))
419
+ `(compilation-line-number ((,class (:foreground ,yellow))))
420
+ `(compilation-message-face ((,class (:foreground ,blue))))
421
+ `(compilation-mode-line-exit ((,class (:foreground ,green))))
422
+ `(compilation-mode-line-fail ((,class (:foreground ,red))))
423
+ `(compilation-mode-line-run ((,class (:foreground ,blue))))
424
+
425
+ ;; Grep
426
+ `(grep-context-face ((,class (:foreground ,comment))))
427
+ `(grep-error-face ((,class (:foreground ,red :weight bold :underline t))))
428
+ `(grep-hit-face ((,class (:foreground ,blue))))
429
+ `(grep-match-face ((,class (:foreground nil :background nil :inherit match))))
430
+
431
+ `(regex-tool-matched-face ((,class (:foreground nil :background nil :inherit match))))
432
+
433
+ ;; Helm
434
+ `(helm-header ((,class (:foreground ,foreground :background ,background))))
435
+ `(helm-selection ((,class (:background ,current-line))))
436
+ `(helm-match ((,class (:foreground ,blue ))))
437
+ `(helm-ff-file ((,class (:foreground ,foreground ))))
438
+ `(helm-ff-directory ((,class (:foreground ,aqua ))))
439
+ `(helm-ff-symlink ((,class (:foreground ,purple ))))
440
+ `(helm-ff-executable ((,class (:foreground ,green ))))
441
+ `(helm-buffer-directory ((,class (:foreground ,aqua))))
442
+ `(helm-buffer-file ((,class (:foreground ,foreground))))
443
+ `(helm-grep-file ((,class (:foreground ,aqua :underline t))))
444
+ `(helm-buffer-process ((,class (:foreground ,red))))
445
+ `(helm-buffer-not-saved ((,class (:foreground ,orange))))
446
+ `(helm-candidate-number ((,class (:foreground ,background :background ,aqua))))
447
+ `(helm-source-header ((,class (:background ,header-color :foreground ,"#424242" :height 1.3 :bold t ))))
448
+
449
+ ;; guide-key
450
+ `(guide-key/key-face ((,class (:foreground ,foreground ))))
451
+ `(guide-key/highlight-command-face ((,class (:foreground ,orange ))))
452
+ `(guide-key/prefix-command-face ((,class (:foreground ,blue ))))
453
+
454
+ ;; which-key
455
+ `(which-key-key-face ((,class (:foreground ,foreground :weight bold))))
456
+ `(which-key-special-key-face ((,class (:foreground ,orange :weight bold :height 1.1))))
457
+ `(which-key-command-description-face ((,class (:foreground ,foreground ))))
458
+ `(which-key-group-description-face ((,class (:foreground ,blue ))))
459
+ `(which-key-separator-face ((,class (:foreground ,comment ))))
460
+
461
+ ;; mark-multiple
462
+ `(mm/master-face ((,class (:inherit region :foreground nil :background nil))))
463
+ `(mm/mirror-face ((,class (:inherit region :foreground nil :background nil))))
464
+
465
+ `(org-agenda-structure ((,class (:foreground ,aqua :bold t))))
466
+ `(org-agenda-date ((,class (:foreground ,blue :underline nil))))
467
+ `(org-agenda-done ((,class (:foreground ,green))))
468
+ `(org-agenda-dimmed-todo-face ((,class (:foreground ,comment))))
469
+ `(org-block ((,class (:foreground ,foreground :background ,"#EFEBE9"))))
470
+ `(org-block-background ((,t (:background ,"#EFEBE9"))))
471
+ `(org-code ((,class (:foreground ,foreground :background ,"#EFEBE9"))))
472
+ `(org-column ((,class (:background ,current-line))))
473
+ `(org-column-title ((,class (:inherit org-column :weight bold :underline t))))
474
+ `(org-date ((,class (:foreground ,"#80cbc4" :underline t))))
475
+ `(org-document-info ((,class (:foreground ,aqua :height 1.35))))
476
+ `(org-document-info-keyword ((,class (:foreground ,green :height 1.35))))
477
+ `(org-document-title ((,class (:weight bold :foreground ,foreground :height 1.35))))
478
+ `(org-done ((,class (:background ,"#c8e6c9" :bold t :foreground,"#2e7d32"))))
479
+ `(org-ellipsis ((,class (:foreground ,comment))))
480
+ `(org-footnote ((,class (:foreground ,aqua))))
481
+ `(org-formula ((,class (:foreground ,red))))
482
+ `(org-hide ((,class (:foreground ,background :background ,background))))
483
+ `(org-link ((,class (:foreground ,red :underline t))))
484
+ `(org-scheduled ((,class (:foreground ,green))))
485
+ `(org-scheduled-previously ((,class (:foreground ,orange))))
486
+ `(org-scheduled-today ((,class (:foreground ,green))))
487
+ `(org-special-keyword ((,class (:foreground ,comment))))
488
+ `(org-table ((,class (:foreground ,"#1565c0" :background ,"#e0f7fa"))))
489
+ `(org-todo ((,class (:background ,"#ffcdd2" :bold t :foreground ,"#c62828"))))
490
+ `(org-upcoming-deadline ((,class (:foreground ,orange))))
491
+ `(org-warning ((,class (:weight bold :foreground ,red))))
492
+ `(org-block-begin-line ((,class (:foreground ,"#4e342e" :background "#efebe9"
493
+ :box (:style released-button)
494
+ ))))
495
+ `(org-block-end-line ((,class (:foreground ,"#4e342e" :background "#efebe9"
496
+ :box (:style released-button)))))
497
+ `(org-kbd ((,class (:background ,inactive-gray :foreground ,foreground
498
+ :box (:line-width 1 :color nil :style pressed-button)))))
499
+
500
+ `(org-level-1 ((,class (:inherit outline-1
501
+ :background ,inactive-gray
502
+ :weight bold
503
+ :box (:style released-button)
504
+ :height 1.3))))
505
+ `(org-level-2 ((,class (:inherit outline-2
506
+ :background ,"#C8E6C9"
507
+ :box (:style released-button)
508
+ :height 1.2))))
509
+ `(org-level-3 ((,class (:inherit outline-3 :height 1.1))))
510
+ `(org-level-4 ((,class (:inherit outline-4 :height 1.0))))
511
+ `(org-level-5 ((,class (:inherit outline-5 ))))
512
+ `(org-level-6 ((,class (:inherit outline-6 ))))
513
+ `(org-level-7 ((,class (:inherit outline-7 ))))
514
+ `(org-level-8 ((,class (:inherit outline-8 ))))
515
+ `(org-level-9 ((,class (:inherit outline-9 ))))
516
+
517
+ `(markdown-header-face-1 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.3 ))))
518
+ `(markdown-header-face-2 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.2 ))))
519
+ `(markdown-header-face-3 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
520
+ `(markdown-header-face-4 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
521
+ `(markdown-header-face-5 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
522
+ `(markdown-header-face-6 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
523
+ `(markdown-header-face-7 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
524
+ `(markdown-header-face-8 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
525
+ `(markdown-header-face-9 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1 ))))
526
+ `(markdown-header-delimiter-face ((,class (:inherit font-lock-function-name-face :weight bold
527
+ :height 1.2))))
528
+ `(markdown-url-face ((,class (:inherit link))))
529
+ `(markdown-link-face ((,class (:foreground ,blue :underline t))))
530
+
531
+ ;`(hl-sexp-face ((,class (:background ,current-line))))
532
+ `(highlight-symbol-face ((,class (:background ,selection))))
533
+ `(highlight-80+ ((,class (:background ,current-line))))
534
+
535
+ ;; Python-specific overrides
536
+ `(py-builtins-face ((,class (:foreground ,"#ff7043" :weight normal))))
537
+
538
+ ;; ein (emacs-ipython-notebook) specific colors
539
+ `(ein:cell-input-area ((,class (:background ,"#EFEFEF"))))
540
+ `(ein:cell-input-prompt ((,class (:inherit org-block-begin-line))))
541
+ `(ein:cell-output-prompt ((,class (:inherit org-block-end-line))))
542
+
543
+ ;; js2-mode
544
+ `(js2-warning ((,class (:underline ,orange))))
545
+ `(js2-error ((,class (:foreground nil :underline ,red))))
546
+ `(js2-external-variable ((,class (:foreground ,purple))))
547
+ `(js2-function-param ((,class (:foreground ,blue))))
548
+ `(js2-instance-member ((,class (:foreground ,blue))))
549
+ `(js2-private-function-call ((,class (:foreground ,red))))
550
+
551
+ ;; js3-mode
552
+ `(js3-warning-face ((,class (:underline ,orange))))
553
+ `(js3-error-face ((,class (:foreground nil :underline ,red))))
554
+ `(js3-external-variable-face ((,class (:foreground ,purple))))
555
+ `(js3-function-param-face ((,class (:foreground ,blue))))
556
+ `(js3-jsdoc-tag-face ((,class (:foreground ,orange))))
557
+ `(js3-jsdoc-type-face ((,class (:foreground ,aqua))))
558
+ `(js3-jsdoc-value-face ((,class (:foreground ,yellow))))
559
+ `(js3-jsdoc-html-tag-name-face ((,class (:foreground ,blue))))
560
+ `(js3-jsdoc-html-tag-delimiter-face ((,class (:foreground ,green))))
561
+ `(js3-instance-member-face ((,class (:foreground ,blue))))
562
+ `(js3-private-function-call-face ((,class (:foreground ,red))))
563
+
564
+ ;; coffee-mode
565
+ `(coffee-mode-class-name ((,class (:foreground ,orange :weight bold))))
566
+ `(coffee-mode-function-param ((,class (:foreground ,purple))))
567
+
568
+ ;; elixir-mode
569
+ `(elixir-negation-face ((,class (:foreground ,red))))
570
+ `(elixir-attribute-face ((,class (:foreground ,purple))))
571
+ `(elixir-atom-face ((,class (:foreground ,aqua))))
572
+ `(elixir-ignored-var-face ((,class (:foreground ,comment))))
573
+
574
+ ;; nxml
575
+ `(nxml-name-face ((,class (:foreground unspecified :inherit font-lock-constant-face))))
576
+ `(nxml-attribute-local-name-face ((,class (:foreground unspecified :inherit font-lock-variable-name-face))))
577
+ `(nxml-ref-face ((,class (:foreground unspecified :inherit font-lock-preprocessor-face))))
578
+ `(nxml-delimiter-face ((,class (:foreground unspecified :inherit font-lock-keyword-face))))
579
+ `(nxml-delimited-data-face ((,class (:foreground unspecified :inherit font-lock-string-face))))
580
+ `(rng-error-face ((,class (:underline ,red))))
581
+
582
+ ;; RHTML
583
+ `(erb-delim-face ((,class (:background ,current-line))))
584
+ `(erb-exec-face ((,class (:background ,current-line :weight bold))))
585
+ `(erb-exec-delim-face ((,class (:background ,current-line))))
586
+ `(erb-out-face ((,class (:background ,current-line :weight bold))))
587
+ `(erb-out-delim-face ((,class (:background ,current-line))))
588
+ `(erb-comment-face ((,class (:background ,current-line :weight bold :slant italic))))
589
+ `(erb-comment-delim-face ((,class (:background ,current-line))))
590
+
591
+ ;; Message-mode
592
+ `(message-header-other ((,class (:foreground nil :background nil :weight normal))))
593
+ `(message-header-subject ((,class (:inherit message-header-other :weight bold :foreground ,yellow))))
594
+ `(message-header-to ((,class (:inherit message-header-other :weight bold :foreground ,orange))))
595
+ `(message-header-cc ((,class (:inherit message-header-to :foreground nil))))
596
+ `(message-header-name ((,class (:foreground ,blue :background nil))))
597
+ `(message-header-newsgroups ((,class (:foreground ,aqua :background nil :slant normal))))
598
+ `(message-separator ((,class (:foreground ,purple))))
599
+
600
+ ;; cfw emacs calendar
601
+ `(cfw:face-title ((,class (:background ,background :foreground ,"#424242" :height 1.3 :weight bold))))
602
+ `(cfw:face-today ((,class (:foreground ,foreground))))
603
+ `(cfw:face-day-title ((,class (:background ,current-line :foreground ,foreground))))
604
+ `(cfw:face-today-title ((,class (:background ,secondary-selection :foreground ,foreground))))
605
+ `(cfw:face-header ((,class (:background ,current-line :foreground ,foreground))))
606
+ `(cfw:face-sunday ((,class (:background ,current-line :foreground ,aqua :weight bold))))
607
+ `(cfw:face-saturday ((,class (:background ,current-line :foreground ,aqua :weight bold))))
608
+ `(cfw:face-select ((,class (:background ,selection :foreground ,foreground))))
609
+ `(cfw:face-toolbar ((,class (:background ,aqua :foreground ,background :weight bold))))
610
+ `(cfw:face-toolbar-button-off ((,class (:background ,aqua :foreground ,background :weight bold))))
611
+ `(cfw:face-toolbar-button-on ((,class (:background ,aqua :foreground ,secondary-selection :weight bold))))
612
+ `(cfw:face-holiday ((,class (:background ,current-line :foreground ,green :weight bold))))
613
+
614
+ ;; Jabber
615
+ `(jabber-chat-prompt-local ((,class (:foreground ,subtle))))
616
+ `(jabber-chat-prompt-foreign ((,class (:foreground ,blue))))
617
+ `(jabber-chat-prompt-system ((,class (:foreground ,orange :weight bold))))
618
+ `(jabber-chat-text-local ((,class (:foreground ,subtle))))
619
+ `(jabber-chat-text-foreign ((,class (:foreground ,foreground))))
620
+ `(jabber-chat-text-error ((,class (:foreground ,red))))
621
+
622
+ `(jabber-roster-user-online ((,class (:foreground ,green))))
623
+ `(jabber-roster-user-xa ((,class :foreground ,comment)))
624
+ `(jabber-roster-user-dnd ((,class :foreground ,yellow)))
625
+ `(jabber-roster-user-away ((,class (:foreground ,orange))))
626
+ `(jabber-roster-user-chatty ((,class (:foreground ,purple))))
627
+ `(jabber-roster-user-error ((,class (:foreground ,red))))
628
+ `(jabber-roster-user-offline ((,class (:foreground ,comment))))
629
+
630
+ `(jabber-rare-time-face ((,class (:foreground ,comment))))
631
+ `(jabber-activity-face ((,class (:foreground ,purple))))
632
+ `(jabber-activity-personal-face ((,class (:foreground ,aqua))))
633
+
634
+ ;; Company autocomplete
635
+ ;; `(company-echo ((,class ())))
636
+ ;; `(company-echo-common ((,class ())))
637
+ `(company-preview ((,class (:foreground ,comment :background ,inactive-gray))))
638
+ `(company-preview-common ((,class (:foreground ,comment :background ,inactive-gray)))) ; same background as highlight-line
639
+ ;; `(company-preview-search ((,class ())))
640
+ `(company-scrollbar-bg ((,class (:background "#F0F0F0"))))
641
+ `(company-scrollbar-fg ((,class (:background "#C0C0C0"))))
642
+ `(company-template-field ((,class (:background ,inactive-gray))))
643
+ `(company-tooltip ((,class (:weight bold :foreground, comment :background ,inactive-gray))))
644
+ `(company-tooltip-annotation ((,class (:weight normal :foreground ,comment :background ,inactive-gray))))
645
+ `(company-tooltip-annotation-selection ((,class (:weight normal :inherit company-tooltip-selection))))
646
+ `(company-tooltip-common ((,class (:weight normal :inherit company-tooltip))))
647
+ `(company-tooltip-common-selection ((,class (:weight normal :inherit company-tooltip-selection))))
648
+ ;; `(company-tooltip-mouse ((,class ())))
649
+ ;; `(company-tooltip-search ((,class ())))
650
+ `(company-tooltip-selection ((,class (:weight bold :foreground ,foreground :background ,far-background))))
651
+
652
+ ;; Powerline
653
+ `(powerline-active1 ((t (:foreground ,foreground :background ,inactive-gray))))
654
+ `(powerline-active2 ((t (:foreground ,foreground :background ,inactive-gray))))
655
+ `(powerline-inactive1 ((t (:foreground ,comment :background ,selection))))
656
+ `(powerline-inactive2 ((t (:foreground ,comment :background ,selection))))
657
+
658
+ ;; Spaceline
659
+ `(spaceline-python-venv ((t (:foreground ,aqua))))
660
+ `(spaceline-evil-normal ((t (:foreground ,background :background ,yellow :inherit mode-line))))
661
+ `(spaceline-evil-insert ((t (:foreground ,background :background ,green :inherit mode-line))))
662
+ `(spaceline-evil-visual ((t (:foreground ,background :background ,selection :inherit mode-line))))
663
+
664
+ ;; Spacemacs
665
+ `(spacemacs-normal-face ((t (:inherit spaceline-evil-normal))))
666
+ `(spacemacs-insert-face ((t (:inherit spaceline-evil-insert))))
667
+ `(spacemacs-visual-face ((t (:inherit spaceline-evil-visual))))
668
+
669
+ ;; Outline
670
+ `(outline-1 ((,class (:inherit nil :foreground ,"#424242"))))
671
+ `(outline-2 ((,class (:inherit nil :foreground ,"#646464"))))
672
+ `(outline-3 ((,class (:inherit nil :foreground ,"#2e7d32"))))
673
+ `(outline-4 ((,class (:inherit nil :foreground ,"#ef6c00"))))
674
+ `(outline-5 ((,class (:inherit nil :foreground ,"#0277bd"))))
675
+ `(outline-6 ((,class (:inherit nil :foreground ,"#0288d1"))))
676
+ `(outline-7 ((,class (:inherit nil :foreground ,"#689f38"))))
677
+ `(outline-8 ((,class (:inherit nil :foreground ,purple))))
678
+ `(outline-9 ((,class (:inherit nil :foreground ,"LightSteelBlue1"))))
679
+
680
+
681
+ ;; Ledger-mode
682
+ `(ledger-font-comment-face ((,class (:inherit font-lock-comment-face))))
683
+ `(ledger-font-occur-narrowed-face ((,class (:inherit font-lock-comment-face :invisible t))))
684
+ `(ledger-font-occur-xact-face ((,class (:inherit highlight))))
685
+ `(ledger-font-payee-cleared-face ((,class (:foreground ,green))))
686
+ `(ledger-font-payee-uncleared-face ((,class (:foreground ,aqua))))
687
+ `(ledger-font-posting-account-cleared-face ((,class (:foreground ,blue))))
688
+ `(ledger-font-posting-account-face ((,class (:foreground ,purple))))
689
+ `(ledger-font-posting-account-pending-face ((,class (:foreground ,yellow))))
690
+ `(ledger-font-xact-highlight-face ((,class (:inherit highlight))))
691
+ `(ledger-occur-narrowed-face ((,class (:inherit font-lock-comment-face :invisible t))))
692
+ `(ledger-occur-xact-face ((,class (:inherit highlight))))
693
+
694
+ ;; auctex
695
+ `(font-latex-bold-face ((t (:inherit bold :foreground ,foreground))))
696
+ `(font-latex-doctex-documentation-face ((t (:background unspecified))))
697
+ `(font-latex-doctex-preprocessor-face ((t (:inherit (font-latex-doctex-documentation-face
698
+ font-lock-builtin-face font-lock-preprocessor-face)))))
699
+ `(font-latex-italic-face ((t (:inherit italic :foreground ,foreground))))
700
+ `(font-latex-math-face ((t (:foreground ,blue))))
701
+ `(font-latex-sectioning-0-face ((t (:inherit outline-1 :height 1.4))))
702
+ `(font-latex-sectioning-1-face ((t (:inherit outline-2 :height 1.35))))
703
+ `(font-latex-sectioning-2-face ((t (:inherit outline-3 :height 1.3))))
704
+ `(font-latex-sectioning-3-face ((t (:inherit outline-4 :height 1.25))))
705
+ `(font-latex-sectioning-4-face ((t (:inherit outline-5 :height 1.2))))
706
+ `(font-latex-sectioning-5-face ((t (:inherit outline-6 :height 1.1))))
707
+ `(font-latex-sedate-face ((t (:foreground ,green))))
708
+ `(font-latex-slide-title-face ((t (:inherit font-lock-type-face :weight bold :height 1.2))))
709
+ `(font-latex-string-face ((t (:inherit font-lock-string-face))))
710
+ `(font-latex-subscript-face ((t (:height 0.8))))
711
+ `(font-latex-superscript-face ((t (:height 0.8))))
712
+ `(font-latex-warning-face ((t (:inherit font-lock-warning-face))))
713
+
714
+ ;; mu4e
715
+ `(mu4e-header-face ((,class (:foreground ,subtle :inherit nil))))
716
+ `(mu4e-header-highlight-face ((,class (:background ,current-line :underline nil :inherit region))))
717
+ `(mu4e-header-marks-face ((,class (:underline nil :foreground ,yellow))))
718
+ `(mu4e-flagged-face ((,class (:foreground ,orange :inherit nil))))
719
+ `(mu4e-forwarded-face ((,class (:foreground ,aqua :inherit nil))))
720
+ `(mu4e-replied-face ((,class (:foreground ,green :inherit nil))))
721
+ `(mu4e-unread-face ((,class (:foreground ,foreground :inherit nil))))
722
+ `(mu4e-cited-1-face ((,class (:inherit outline-1 :slant normal))))
723
+ `(mu4e-cited-2-face ((,class (:inherit outline-2 :slant normal))))
724
+ `(mu4e-cited-3-face ((,class (:inherit outline-3 :slant normal))))
725
+ `(mu4e-cited-4-face ((,class (:inherit outline-4 :slant normal))))
726
+ `(mu4e-cited-5-face ((,class (:inherit outline-5 :slant normal))))
727
+ `(mu4e-cited-6-face ((,class (:inherit outline-6 :slant normal))))
728
+ `(mu4e-cited-7-face ((,class (:inherit outline-7 :slant normal))))
729
+ `(mu4e-ok-face ((,class (:foreground ,green))))
730
+ `(mu4e-view-contact-face ((,class (:inherit nil :foreground ,yellow))))
731
+ `(mu4e-view-link-face ((,class (:inherit link :foreground ,blue))))
732
+ `(mu4e-view-url-number-face ((,class (:inherit nil :foreground ,aqua))))
733
+ `(mu4e-view-attach-number-face ((,class (:inherit nil :foreground ,orange))))
734
+ `(mu4e-highlight-face ((,class (:inherit highlight))))
735
+ `(mu4e-title-face ((,class (:inherit nil :foreground ,green))))
736
+
737
+ ;; Gnus
738
+ `(gnus-cite-1 ((,class (:inherit outline-1 :foreground nil))))
739
+ `(gnus-cite-2 ((,class (:inherit outline-2 :foreground nil))))
740
+ `(gnus-cite-3 ((,class (:inherit outline-3 :foreground nil))))
741
+ `(gnus-cite-4 ((,class (:inherit outline-4 :foreground nil))))
742
+ `(gnus-cite-5 ((,class (:inherit outline-5 :foreground nil))))
743
+ `(gnus-cite-6 ((,class (:inherit outline-6 :foreground nil))))
744
+ `(gnus-cite-7 ((,class (:inherit outline-7 :foreground nil))))
745
+ `(gnus-cite-8 ((,class (:inherit outline-8 :foreground nil))))
746
+ ;; there are several more -cite- faces...
747
+ `(gnus-header-content ((,class (:inherit message-header-other))))
748
+ `(gnus-header-subject ((,class (:inherit message-header-subject))))
749
+ `(gnus-header-from ((,class (:inherit message-header-other-face :weight bold :foreground ,orange))))
750
+ `(gnus-header-name ((,class (:inherit message-header-name))))
751
+ `(gnus-button ((,class (:inherit link :foreground nil))))
752
+ `(gnus-signature ((,class (:inherit font-lock-comment-face))))
753
+
754
+ `(gnus-summary-normal-unread ((,class (:foreground ,foreground :weight bold))))
755
+ `(gnus-summary-normal-read ((,class (:foreground ,comment :weight normal))))
756
+ `(gnus-summary-normal-ancient ((,class (:foreground ,aqua :weight normal))))
757
+ `(gnus-summary-normal-ticked ((,class (:foreground ,orange :weight normal))))
758
+ `(gnus-summary-low-unread ((,class (:foreground ,comment :weight normal))))
759
+ `(gnus-summary-low-read ((,class (:foreground ,comment :weight normal))))
760
+ `(gnus-summary-low-ancient ((,class (:foreground ,comment :weight normal))))
761
+ `(gnus-summary-high-unread ((,class (:foreground ,yellow :weight normal))))
762
+ `(gnus-summary-high-read ((,class (:foreground ,green :weight normal))))
763
+ `(gnus-summary-high-ancient ((,class (:foreground ,green :weight normal))))
764
+ `(gnus-summary-high-ticked ((,class (:foreground ,orange :weight normal))))
765
+ `(gnus-summary-cancelled ((,class (:foreground ,red :background nil :weight normal))))
766
+
767
+ `(gnus-group-mail-low ((,class (:foreground ,comment))))
768
+ `(gnus-group-mail-low-empty ((,class (:foreground ,comment))))
769
+ `(gnus-group-mail-1 ((,class (:foreground nil :weight normal :inherit outline-1))))
770
+ `(gnus-group-mail-2 ((,class (:foreground nil :weight normal :inherit outline-2))))
771
+ `(gnus-group-mail-3 ((,class (:foreground nil :weight normal :inherit outline-3))))
772
+ `(gnus-group-mail-4 ((,class (:foreground nil :weight normal :inherit outline-4))))
773
+ `(gnus-group-mail-5 ((,class (:foreground nil :weight normal :inherit outline-5))))
774
+ `(gnus-group-mail-6 ((,class (:foreground nil :weight normal :inherit outline-6))))
775
+ `(gnus-group-mail-1-empty ((,class (:inherit gnus-group-mail-1 :foreground ,comment))))
776
+ `(gnus-group-mail-2-empty ((,class (:inherit gnus-group-mail-2 :foreground ,comment))))
777
+ `(gnus-group-mail-3-empty ((,class (:inherit gnus-group-mail-3 :foreground ,comment))))
778
+ `(gnus-group-mail-4-empty ((,class (:inherit gnus-group-mail-4 :foreground ,comment))))
779
+ `(gnus-group-mail-5-empty ((,class (:inherit gnus-group-mail-5 :foreground ,comment))))
780
+ `(gnus-group-mail-6-empty ((,class (:inherit gnus-group-mail-6 :foreground ,comment))))
781
+ `(gnus-group-news-1 ((,class (:foreground nil :weight normal :inherit outline-5))))
782
+ `(gnus-group-news-2 ((,class (:foreground nil :weight normal :inherit outline-6))))
783
+ `(gnus-group-news-3 ((,class (:foreground nil :weight normal :inherit outline-7))))
784
+ `(gnus-group-news-4 ((,class (:foreground nil :weight normal :inherit outline-8))))
785
+ `(gnus-group-news-5 ((,class (:foreground nil :weight normal :inherit outline-1))))
786
+ `(gnus-group-news-6 ((,class (:foreground nil :weight normal :inherit outline-2))))
787
+ `(gnus-group-news-1-empty ((,class (:inherit gnus-group-news-1 :foreground ,comment))))
788
+ `(gnus-group-news-2-empty ((,class (:inherit gnus-group-news-2 :foreground ,comment))))
789
+ `(gnus-group-news-3-empty ((,class (:inherit gnus-group-news-3 :foreground ,comment))))
790
+ `(gnus-group-news-4-empty ((,class (:inherit gnus-group-news-4 :foreground ,comment))))
791
+ `(gnus-group-news-5-empty ((,class (:inherit gnus-group-news-5 :foreground ,comment))))
792
+ `(gnus-group-news-6-empty ((,class (:inherit gnus-group-news-6 :foreground ,comment))))
793
+
794
+ ;; emms
795
+ `(emms-playlist-selected-face ((,class (:foreground ,orange))))
796
+ `(emms-playlist-track-face ((,class (:foreground ,blue))))
797
+ `(emms-browser-track-face ((,class (:foreground ,blue))))
798
+ `(emms-browser-artist-face ((,class (:foreground ,red :height 1.3))))
799
+ `(emms-browser-composer-face ((,class (:inherit emms-browser-artist-face))))
800
+ `(emms-browser-performer-face ((,class (:inherit emms-browser-artist-face))))
801
+ `(emms-browser-album-face ((,class (:foreground ,green :height 1.2))))
802
+
803
+ ;; stripe-buffer
804
+ `(stripe-highlight ((,class (:background ,current-line))))
805
+ `(stripe-hl-line ((,class (:background ,selection :foreground ,foreground))))
806
+
807
+ ;; erc
808
+ `(erc-direct-msg-face ((,class (:foreground ,orange))))
809
+ `(erc-error-face ((,class (:foreground ,red))))
810
+ `(erc-header-face ((,class (:foreground ,foreground :background ,selection))))
811
+ `(erc-input-face ((,class (:foreground ,green))))
812
+ `(erc-keyword-face ((,class (:foreground ,yellow))))
813
+ `(erc-current-nick-face ((,class (:foreground ,green))))
814
+ `(erc-my-nick-face ((,class (:foreground ,green))))
815
+ `(erc-nick-default-face ((,class (:weight normal :foreground ,purple))))
816
+ `(erc-nick-msg-face ((,class (:weight normal :foreground ,yellow))))
817
+ `(erc-notice-face ((,class (:foreground ,comment))))
818
+ `(erc-pal-face ((,class (:foreground ,orange))))
819
+ `(erc-prompt-face ((,class (:foreground ,blue))))
820
+ `(erc-timestamp-face ((,class (:foreground ,aqua))))
821
+ `(erc-keyword-face ((,class (:foreground ,green))))
822
+
823
+ ;; erc-colorize
824
+ `(erc-distinct-1-face ((,class (:foreground ,"#E91E63"))))
825
+ `(erc-distinct-2-face ((,class (:foreground ,"#1565C0"))))
826
+ `(erc-distinct-3-face ((,class (:foreground ,"#827717"))))
827
+ `(erc-distinct-4-face ((,class (:foreground ,"#B388FF"))))
828
+ `(erc-distinct-5-face ((,class (:foreground ,"#EF6C00"))))
829
+ `(erc-distinct-6-face ((,class (:foreground ,"#26A69A"))))
830
+ `(erc-distinct-7-face ((,class (:foreground ,"#B71C1C"))))
831
+
832
+ ;; twittering-mode
833
+ `(twittering-username-face ((,class (:inherit erc-pal-face))))
834
+ `(twittering-uri-face ((,class (:foreground ,blue :inherit link))))
835
+ `(twittering-timeline-header-face ((,class (:foreground ,green :weight bold))))
836
+ `(twittering-timeline-footer-face ((,class (:inherit twittering-timeline-header-face))))
837
+
838
+ `(custom-variable-tag ((,class (:foreground ,blue))))
839
+ `(custom-group-tag ((,class (:foreground ,blue))))
840
+ `(custom-state ((,class (:foreground ,green))))
841
+
842
+ ;; ansi-term
843
+ `(term ((,class (:foreground nil :background nil :inherit default))))
844
+ `(term-color-black ((,class (:foreground ,foreground :background ,foreground))))
845
+ `(term-color-red ((,class (:foreground ,red :background ,red))))
846
+ `(term-color-green ((,class (:foreground ,green :background ,green))))
847
+ `(term-color-yellow ((,class (:foreground ,yellow :background ,yellow))))
848
+ `(term-color-blue ((,class (:foreground ,blue :background ,blue))))
849
+ `(term-color-magenta ((,class (:foreground ,purple :background ,purple))))
850
+ `(term-color-cyan ((,class (:foreground ,aqua :background ,aqua))))
851
+ `(term-color-white ((,class (:foreground ,background :background ,background))))
852
+
853
+ ;; elfeed
854
+ `(elfeed-log-date-face ((,class (:foreground ,aqua))))
855
+ `(elfeed-log-error-level-face ((,class (:foreground ,red))))
856
+ `(elfeed-log-info-level-face ((,class (:foreground ,blue))))
857
+ `(elfeed-log-warn-level-face ((,class (:foreground ,orange))))
858
+ `(elfeed-search-date-face ((,class (:foreground ,purple))))
859
+ `(elfeed-search-feed-face ((,class (:foreground ,yellow))))
860
+ `(elfeed-search-tag-face ((,class (:foreground ,green))))
861
+
862
+ ;; rpm-spec-mode
863
+ `(rpm-spec-dir-face ((,class (:foreground ,green))))
864
+ `(rpm-spec-doc-face ((,class (:foreground ,green))))
865
+ `(rpm-spec-ghost-face ((,class (:foreground ,red))))
866
+ `(rpm-spec-macro-face ((,class (:foreground ,yellow))))
867
+ `(rpm-spec-obsolete-tag-face ((,class (:foreground ,red))))
868
+ `(rpm-spec-package-face ((,class (:foreground ,red))))
869
+ `(rpm-spec-section-face ((,class (:foreground ,yellow))))
870
+ `(rpm-spec-tag-face ((,class (:foreground ,blue))))
871
+ `(rpm-spec-var-face ((,class (:foreground ,red)))))
872
+
873
+ (custom-theme-set-variables
874
+ 'material-light
875
+ `(fci-rule-color ,current-line)
876
+ `(vc-annotate-color-map
877
+ '((20 . ,red)
878
+ (40 . ,orange)
879
+ (60 . ,yellow)
880
+ (80 . ,green)
881
+ (100 . ,aqua)
882
+ (120 . ,blue)
883
+ (140 . ,purple)
884
+ (160 . ,red)
885
+ (180 . ,orange)
886
+ (200 . ,yellow)
887
+ (220 . ,green)
888
+ (240 . ,aqua)
889
+ (260 . ,blue)
890
+ (280 . ,purple)
891
+ (300 . ,red)
892
+ (320 . ,orange)
893
+ (340 . ,yellow)
894
+ (360 . ,green)))
895
+ `(vc-annotate-very-old-color nil)
896
+ `(vc-annotate-background nil)
897
+
898
+ ;; highlight-sexp-mode
899
+ `(hl-sexp-background-color ,"#efebe9")
900
+
901
+ `(ansi-color-names-vector (vector ,foreground ,red ,green ,yellow ,blue ,purple ,aqua ,background))
902
+ '(ansi-color-faces-vector [default bold shadow italic underline bold bold-italic bold])))
903
+
904
+ ;;;###autoload
905
+ (when (and (boundp 'custom-theme-load-path)
906
+ load-file-name)
907
+ ;; add theme folder to `custom-theme-load-path' when installing over MELPA
908
+ (add-to-list 'custom-theme-load-path
909
+ (file-name-as-directory (file-name-directory load-file-name))))
910
+
911
+ (provide-theme 'material-light)
912
+
913
+ ;; Local Variables:
914
+ ;; rainbow-mode: t
915
+ ;; hl-sexp-mode: nil
916
+ ;; End:
917
+
918
+ ;;; material-light-theme.el ends here