X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/ebe6a059fe6882f70cddcb336969de05c26e9d21..23e802231b7602905181e2be04b17737b823f5a7:/ahungry-theme.el diff --git a/ahungry-theme.el b/ahungry-theme.el index 4789c0ee0..2b52fc4b9 100644 --- a/ahungry-theme.el +++ b/ahungry-theme.el @@ -1,7 +1,15 @@ -;;; ahungry-theme.el --- Ahungry color theme for Emacs. +;;; ahungry-theme.el --- Ahungry color theme for Emacs. Make sure to (load-theme 'ahungry). -;; color theme ahungry - A bright and bold color theme for GNU Emacs -;; Copyright (C) 2013, 2014, 2015 Matthew Carter +;; Copyright (C) 2015 Free Software Foundation, Inc. + +;; Author: Matthew Carter +;; Maintainer: Matthew Carter +;; URL: https://github.com/ahungry/color-theme-ahungry +;; Version: 1.0.5 +;; Keywords: ahungry palette color theme emacs color-theme deftheme +;; Package-Requires: ((emacs "24")) + +;; This file is part of GNU Emacs. ;;; License: @@ -18,12 +26,6 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . -;; Author: Matthew Carter -;; Keywords: ahungry palette color theme emacs color-theme deftheme -;; URL: https://github.com/ahungry/color-theme-ahungry -;; Version: 1.0.3 -;; Package-Requires: ((emacs "24")) - ;;; Commentary: ;; Bright and bold color theme for GNU Emacs. @@ -32,6 +34,16 @@ ;; transparent background. If you load it from a GUI, it will default ;; to a dark background. +;;; News: + +;;;; Changes since 1.0.4: +;; - Don't circumvent normal autoloads functionality, use the comment load method + +;;;; Changes since 1.0.3: +;; - Manually include an autoloads file to make sure +;; custom-theme-load-path is filled out +;; - Update description to make mention of (load-theme 'ahungry) for new users + ;;; Code: (deftheme ahungry @@ -159,9 +171,9 @@ '(org-agenda-date-weekend ((t (:weight normal :foreground "#005fff")))) '(org-agenda-date-today ((t (:weight bold :foreground "#ffc800")))) '(org-agenda-done ((t (:weight normal :foreground "#00aa33")))) - '(org-block-begin-line ((t (:foreground "#bbbbbb" :background "#330066")))) - '(org-block-background ((t (:background "#003366")))) - '(org-block-end-line ((t (:foreground "#bbbbbb" :background "#330066")))) + '(org-block-begin-line ((t (:foreground "#bbbbbb" :background "#333333")))) + '(org-block-background ((t (:background "#333333")))) + '(org-block-end-line ((t (:foreground "#bbbbbb" :background "#333333")))) '(org-document-title ((t (:weight bold :foreground "#0077cc")))) '(org-document-info ((t (:weight normal :foreground "#0077cc")))) '(org-warning ((t (:weight normal :foreground "#ee0033")))) @@ -171,12 +183,20 @@ '(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")))) + '(helm-selection ((t (:foreground "#0022ff" :bold t :background "#77ff00")))) + '(helm-match ((t (:foreground "gold1")))) ) (custom-theme-set-variables 'ahungry '(red "#ffffff")) ) +;;;###autoload +(when (and load-file-name (boundp 'custom-theme-load-path)) + (add-to-list + 'custom-theme-load-path + (file-name-as-directory (file-name-directory load-file-name)))) + (provide-theme 'ahungry) ;;; ahungry-theme.el ends here