]> code.delx.au - gnu-emacs-elpa/blobdiff - ahungry-theme.el
Clean up with flycheck-package recommendations
[gnu-emacs-elpa] / ahungry-theme.el
index c4cc28339e54dca4c41af0789847b9078fa2fbab..07b1fcdc5fc76da038e3e1d570c81416f164a7a7 100644 (file)
@@ -1,28 +1,32 @@
-;; ahungry-theme.el --- Ahungry color theme for Emacs.
+;;; ahungry-theme.el --- Ahungry color theme for Emacs.
 
 ;; color theme ahungry - A bright and bold color theme for GNU Emacs
 ;; Copyright (C) 2013 Matthew Carter
 ;;
 ;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU Affero General Public License as published by
+;; it under the terms of the GNU General Public License as published by
 ;; the Free Software Foundation, either version 3 of the License, or
 ;; (at your option) any later version.
 ;;
 ;; This program is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU Affero General Public License for more details.
+;; GNU General Public License for more details.
 ;;
-;; You should have received a copy of the GNU Affero General Public License
+;; You should have received a copy of the GNU General Public License
 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-;; Author: Matthew Carter
-;; Keywords: ahungry palette color theme emacs deftheme
-;; URL: https://github.com/ahungry/color-theme-ahungry
-;; Version: 1.0.0
+;; Author: Matthew Carter <m@ahungry.com>
+;; Keywords: ahungry palette color theme emacs color-theme deftheme
+;; Url: https://github.com/ahungry/color-theme-ahungry
+;; Version: 1.0.1
+
+;;; Commentary:
 
 ;; This file is NOT part of GNU Emacs.
 
+;;; Code:
+
 (deftheme ahungry
   "Ahungry Theme")
 
    '(font-lock-function-name-face ((t (:foreground "#ffee00" :bold t))))
    '(comint-highlight-input ((t (:italic t :bold t))))
    '(comint-highlight-prompt ((t (:foreground "#8ae234"))))
+   '(diff-header ((t (:background "gray30"))))
+   '(diff-index ((t (:foreground "#edd400" :bold t))))
+   '(diff-file-header ((t (:foreground "#eeeeec" :bold t))))
+   '(diff-hunk-header ((t (:foreground "#edd400"))))
+   '(diff-added ((t (:background "default" :foreground "#00ff00" :weight normal))))
+   '(diff-removed ((t (:background "default" :foreground "#ff0000" :weight normal))))
+   '(diff-context ((t (:foreground "#888a85"))))
+   '(diff-refine-change ((t (:bold t :background "gray30"))))
    '(isearch ((t (:background "#f57900" :foreground "#2e3436"))))
    '(isearch-lazy-highlight-face ((t (:foreground "#2e3436" :background "#e9b96e"))))
    '(show-paren-match-face ((t (:foreground "#2e3436" :background "#73d216"))))
    '(message-header-to ((t (:foreground "white"))))
    '(message-header-cc ((t (:foreground "white"))))
    '(org-hide ((t (:foreground "#2e3436"))))
-   '(org-level-1 ((t (:bold t :foreground "#005fff" :height 1.5))))
+   '(org-level-1 ((t (:bold t :foreground "#4477ff" :height 1.5))))
    '(org-level-2 ((t (:bold nil :foreground "#ffc800" :height 1.2))))
    '(org-level-3 ((t (:bold t :foreground "#6ac214" :height 1.0))))
    '(org-level-4 ((t (:bold nil :foreground "#f68585" :height 1.0))))
    '(org-document-info ((t (:weight normal :foreground "#0077cc"))))
    '(magit-header ((t (:foreground "#ffc800"))))
    '(magit-diff-add ((t (:foreground "#00ff00"))))
+   '(magit-diff-del ((t (:foreground "#ff0000"))))
    '(magit-item-highlight ((t (:background "#111111" :slant normal :weight extra-bold :inverse-video nil))))
    '(minibuffer-prompt ((t (:foreground "#0055ff" :bold t))))
    '(web-mode-html-tag-bracket-face ((t (:foreground "#666666"))))
   )
 
 (provide-theme 'ahungry)
+
+;;; ahungry-theme.el ends here