X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/dd975f04da80c99b07419a6a33541bece0bbd69a..23a624ca1d40fa9cefd7229ac6152b79278a6517:/packages/ahungry-theme/ahungry-theme.el diff --git a/packages/ahungry-theme/ahungry-theme.el b/packages/ahungry-theme/ahungry-theme.el index d17cee7ca..533305dbb 100644 --- a/packages/ahungry-theme/ahungry-theme.el +++ b/packages/ahungry-theme/ahungry-theme.el @@ -1,11 +1,11 @@ -;;; ahungry-theme.el --- Ahungry color theme for Emacs. +;;; ahungry-theme.el --- Ahungry color theme for Emacs. Make sure to (load-theme 'ahungry). ;; Copyright (C) 2015 Free Software Foundation, Inc. ;; Author: Matthew Carter ;; Maintainer: Matthew Carter ;; URL: https://github.com/ahungry/color-theme-ahungry -;; Version: 1.0.3 +;; Version: 1.0.6 ;; Keywords: ahungry palette color theme emacs color-theme deftheme ;; Package-Requires: ((emacs "24")) @@ -34,6 +34,19 @@ ;; transparent background. If you load it from a GUI, it will default ;; to a dark background. +;;; News: + +;;;; Changes since 1.0.5: +;; - Add a few colors for helm (the defaults did not work well with this theme) + +;;;; 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 @@ -173,12 +186,21 @@ '(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 "#ff0099" :italic t :bold t :background "#f2e997")))) + '(helm-match ((t (:foreground "gold1")))) + '(helm-visible-mark ((t (:background "#f2e997" :foreground "#ff0099" :bold nil :italic nil)))) ) (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