]> code.delx.au - gnu-emacs-elpa/blob - ahungry-theme.el
Clean up with flycheck-package recommendations
[gnu-emacs-elpa] / ahungry-theme.el
1 ;;; ahungry-theme.el --- Ahungry color theme for Emacs.
2
3 ;; color theme ahungry - A bright and bold color theme for GNU Emacs
4 ;; Copyright (C) 2013 Matthew Carter
5 ;;
6 ;; This program is free software: you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation, either version 3 of the License, or
9 ;; (at your option) any later version.
10 ;;
11 ;; This program is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;; GNU General Public License for more details.
15 ;;
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 ;; Author: Matthew Carter <m@ahungry.com>
20 ;; Keywords: ahungry palette color theme emacs color-theme deftheme
21 ;; Url: https://github.com/ahungry/color-theme-ahungry
22 ;; Version: 1.0.1
23
24 ;;; Commentary:
25
26 ;; This file is NOT part of GNU Emacs.
27
28 ;;; Code:
29
30 (deftheme ahungry
31 "Ahungry Theme")
32
33 (let ((mainbg (if (display-graphic-p) "#222222" "default")))
34 (custom-theme-set-faces
35 'ahungry ;; This is the theme name
36 `(default ((t (:foreground "#ffffff" :background ,mainbg
37 :family "Terminus" :foundry "xos4"
38 :slant normal :weight normal
39 :height 100 :width normal))))
40 '(cursor ((t (:background "#fce94f" :foreground "#ffffff"))))
41 '(highlight ((t (:background "brown4" :foreground nil))))
42 '(border ((t (:background "#888a85"))))
43 '(fringe ((t (:background "grey10"))))
44 '(mode-line ((t (:foreground "#0022ff" :bold t :background "#77ff00"
45 :box (:line-width 1 :color nil :style released-button)))))
46 '(mode-line-inactive ((t (:foreground "#444444" :background "#66ff33"))))
47 '(mode-line-buffer-id ((t (:bold t :foreground "#ffffff" :background "#0055ff"))))
48 '(region ((t (:background "#444444"))))
49 '(link ((t (:underline t :foreground "lime"))))
50 '(custom-link ((t (:inherit 'link))))
51 '(match ((t (:bold t :background "#e9b96e" :foreground "#2e3436"))))
52 '(tool-tips ((t (:inherit 'variable-pitch :foreground "black" :background "lightyellow"))))
53 '(tooltip ((t (:inherit 'variable-pitch :foreground "black" :background "lightyellow"))))
54 '(bold ((t (:bold t :underline nil :background nil))))
55 '(italic ((t (:italic t :underline nil :background nil))))
56 '(font-lock-builtin-face ((t (:foreground "#0055ff"))))
57 '(font-lock-comment-face ((t (:foreground "#888a85" :bold nil :italic t))))
58 '(font-lock-constant-face ((t (:foreground "#fff900"))))
59 '(font-lock-doc-face ((t (:foreground "#777700" :bold t :italic t))))
60 '(font-lock-keyword-face ((t (:foreground "#3cff00" :bold t))))
61 '(font-lock-string-face ((t (:foreground "#ff0077" :italic nil :bold nil))))
62 '(font-lock-type-face ((t (:foreground "#deff00" :bold t))))
63 '(font-lock-variable-name-face ((t (:foreground "#5500ff" :bold t))))
64 '(font-lock-warning-face ((t (:bold t :foreground "#ff0000"))))
65 '(font-lock-function-name-face ((t (:foreground "#ffee00" :bold t))))
66 '(comint-highlight-input ((t (:italic t :bold t))))
67 '(comint-highlight-prompt ((t (:foreground "#8ae234"))))
68 '(diff-header ((t (:background "gray30"))))
69 '(diff-index ((t (:foreground "#edd400" :bold t))))
70 '(diff-file-header ((t (:foreground "#eeeeec" :bold t))))
71 '(diff-hunk-header ((t (:foreground "#edd400"))))
72 '(diff-added ((t (:background "default" :foreground "#00ff00" :weight normal))))
73 '(diff-removed ((t (:background "default" :foreground "#ff0000" :weight normal))))
74 '(diff-context ((t (:foreground "#888a85"))))
75 '(diff-refine-change ((t (:bold t :background "gray30"))))
76 '(isearch ((t (:background "#f57900" :foreground "#2e3436"))))
77 '(isearch-lazy-highlight-face ((t (:foreground "#2e3436" :background "#e9b96e"))))
78 '(show-paren-match-face ((t (:foreground "#2e3436" :background "#73d216"))))
79 '(show-paren-mismatch-face ((t (:background "#999999" :foreground "#2e3436"))))
80 '(info-xref ((t (:foreground "#729fcf"))))
81 '(info-xref-visited ((t (:foreground "#999999"))))
82 '(diary-face ((t (:bold t :foreground "IndianRed"))))
83 '(message-cited-text ((t (:foreground "#ffc800"))))
84 '(gnus-cite-1 ((t (:foreground "#999999"))))
85 '(gnus-cite-2 ((t (:foreground "#cba559"))))
86 '(gnus-cite-3 ((t (:foreground "#83ae92"))))
87 '(gnus-cite-4 ((t (:foreground "#6898a7"))))
88 '(gnus-cite-face-1 ((t (:foreground "#999999"))))
89 '(gnus-cite-face-2 ((t (:foreground "#cba559"))))
90 '(gnus-cite-face-3 ((t (:foreground "#83ae92"))))
91 '(gnus-cite-face-4 ((t (:foreground "#6898a7"))))
92 '(gnus-group-mail-1-empty ((t (:foreground "light cyan"))))
93 '(gnus-group-mail-1 ((t (:bold t :foreground "light cyan"))))
94 '(gnus-group-mail-2-empty ((t (:foreground "turquoise"))))
95 '(gnus-group-mail-2 ((t (:bold t :foreground "turquoise"))))
96 '(gnus-group-mail-3-empty ((t (:foreground "#729fcf"))))
97 '(gnus-group-mail-3 ((t (:bold t :foreground "#ffc800"))))
98 '(gnus-group-mail-low-empty ((t (:foreground "#005fff"))))
99 '(gnus-group-mail-low ((t (:bold t :foreground "#005fff"))))
100 '(gnus-group-news-1-empty ((t (:foreground "light cyan"))))
101 '(gnus-group-news-1 ((t (:bold t :foreground "light cyan"))))
102 '(gnus-group-news-2-empty ((t (:foreground "turquoise"))))
103 '(gnus-group-news-2 ((t (:bold t :foreground "turquoise"))))
104 '(gnus-group-news-3-empty ((t (:foreground "#729fcf"))))
105 '(gnus-group-news-3 ((t (:bold t :foreground "#ffc800"))))
106 '(gnus-group-news-low-empty ((t (:foreground "#005fff"))))
107 '(gnus-group-news-low ((t (:bold t :foreground "#005fff"))))
108 '(gnus-header-name ((t (:bold t :foreground "#729fcf"))))
109 '(gnus-header-from ((t (:bold t :foreground "#ffc800"))))
110 '(gnus-header-subject ((t (:foreground "#ffc800"))))
111 '(gnus-header-content ((t (:italic t :foreground "#8ae234"))))
112 '(gnus-header-newsgroups ((t (:italic t :bold t :foreground "LightSkyBlue3"))))
113 '(gnus-signature ((t (:italic t :foreground "dark grey"))))
114 '(gnus-summary-cancelled ((t (:background "black" :foreground "yellow"))))
115 '(gnus-summary-high-ancient ((t (:bold t :foreground "rotal blue"))))
116 '(gnus-summary-high-read ((t (:bold t :foreground "lime green"))))
117 '(gnus-summary-high-ticked ((t (:bold t :foreground "#f68585"))))
118 '(gnus-summary-high-unread ((t (:bold t :foreground "white"))))
119 '(gnus-summary-low-ancient ((t (:italic t :foreground "lime green"))))
120 '(gnus-summary-low-read ((t (:italic t :foreground "royal blue"))))
121 '(gnus-summary-low-ticked ((t (:italic t :foreground "dark red"))))
122 '(gnus-summary-low-unread ((t (:italic t :foreground "white"))))
123 '(gnus-summary-normal-ancient ((t (:foreground "royal blue"))))
124 '(gnus-summary-normal-read ((t (:foreground "lime green"))))
125 '(gnus-summary-normal-ticked ((t (:foreground "indian red"))))
126 '(gnus-summary-normal-unread ((t (:foreground "white"))))
127 '(gnus-summary-selected ((t (:background "brown4" :foreground "white"))))
128 '(message-header-name ((t (:foreground "#f68585"))))
129 '(message-header-newsgroups ((t (:italic t :bold t :foreground "LightSkyBlue3"))))
130 '(message-header-other ((t (:foreground "LightSkyBlue3"))))
131 '(message-header-xheader ((t (:foreground "DodgerBlue3"))))
132 '(message-header-subject ((t (:foreground "white"))))
133 '(message-header-to ((t (:foreground "white"))))
134 '(message-header-cc ((t (:foreground "white"))))
135 '(org-hide ((t (:foreground "#2e3436"))))
136 '(org-level-1 ((t (:bold t :foreground "#4477ff" :height 1.5))))
137 '(org-level-2 ((t (:bold nil :foreground "#ffc800" :height 1.2))))
138 '(org-level-3 ((t (:bold t :foreground "#6ac214" :height 1.0))))
139 '(org-level-4 ((t (:bold nil :foreground "#f68585" :height 1.0))))
140 '(org-date ((t (:underline t :foreground "magenta3"))))
141 '(org-footnote ((t (:underline t :foreground "magenta3"))))
142 '(org-link ((t (:foreground "skyblue2" :background "#2e3436"))))
143 '(org-special-keyword ((t (:foreground "brown"))))
144 '(org-verbatim ((t (:foreground "#eeeeec" :underline t :slant italic))))
145 '(org-block ((t (:foreground "#bbbbbc"))))
146 '(org-quote ((t (:inherit org-block :slant italic))))
147 '(org-verse ((t (:inherit org-block :slant italic))))
148 '(org-todo ((t (:bold t :foreground "Red"))))
149 '(org-done ((t (:bold t :foreground "ForestGreen"))))
150 '(org-agenda-structure ((t (:weight bold :foreground "#f68585"))))
151 '(org-agenda-date ((t (:foreground "#6ac214"))))
152 '(org-agenda-date-weekend ((t (:weight normal :foreground "#005fff"))))
153 '(org-agenda-date-today ((t (:weight bold :foreground "#ffc800"))))
154 '(org-block-begin-line ((t (:foreground "#888a85" :background "#252b2b"))))
155 '(org-block-background ((t (:background "#252b2b"))))
156 '(org-block-end-line ((t (:foreground "#888a85" :background "#252b2b"))))
157 '(org-document-title ((t (:weight bold :foreground "#0077cc"))))
158 '(org-document-info ((t (:weight normal :foreground "#0077cc"))))
159 '(magit-header ((t (:foreground "#ffc800"))))
160 '(magit-diff-add ((t (:foreground "#00ff00"))))
161 '(magit-diff-del ((t (:foreground "#ff0000"))))
162 '(magit-item-highlight ((t (:background "#111111" :slant normal :weight extra-bold :inverse-video nil))))
163 '(minibuffer-prompt ((t (:foreground "#0055ff" :bold t))))
164 '(web-mode-html-tag-bracket-face ((t (:foreground "#666666"))))
165 )
166 (custom-theme-set-variables
167 'ahungry
168 '(red "#ffffff"))
169 )
170
171 (provide-theme 'ahungry)
172
173 ;;; ahungry-theme.el ends here