]> code.delx.au - gnu-emacs-elpa/commitdiff
Merge commit 'e64a9cd001b82d0f8238d41bb36e6c0c7b0449b3'
authorMatthew Carter <m@ahungry.com>
Tue, 30 Jun 2015 03:35:37 +0000 (23:35 -0400)
committerMatthew Carter <m@ahungry.com>
Tue, 30 Jun 2015 03:35:37 +0000 (23:35 -0400)
1  2 
packages/ahungry-theme/ahungry-theme.el

index c741176c258f5e1b288f8c7896037225467d1433,788d58c894e702b58316376d5c08c3a52c4cbb95..cca3bfb1aba5170cc15686acf8530a1335f5162b
@@@ -1,11 -1,11 +1,11 @@@
 -;;; ahungry-theme.el --- Ahungry color theme for Emacs.  Make sure to (load-theme 'ahungry).
 +;;; ahungry-theme.el --- Ahungry color theme for Emacs.  Make sure to (load-theme 'ahungry).  -*- lexical-binding:t -*-
  
  ;; Copyright (C) 2015  Free Software Foundation, Inc.
  
  ;; Author: Matthew Carter <m@ahungry.com>
  ;; Maintainer: Matthew Carter <m@ahungry.com>
  ;; URL: https://github.com/ahungry/color-theme-ahungry
- ;; Version: 1.0.6
+ ;; Version: 1.0.7
  ;; Keywords: ahungry palette color theme emacs color-theme deftheme
  ;; Package-Requires: ((emacs "24"))
  
  
  ;;; News:
  
+ ;;;; Changes since 1.0.6:
+ ;; - Remove warning producing call to "default" background color
+ ;; - Add a color update for mm-uu-extract
  ;;;; Changes since 1.0.5:
  ;; - Add a few colors for helm (the defaults did not work well with this theme)
  
@@@ -52,7 -56,7 +56,7 @@@
  (deftheme ahungry
    "Ahungry Theme")
  
- (let ((mainbg (if (display-graphic-p) "#222222" "default")))
+ (let ((mainbg (when (display-graphic-p) "#222222")));; "default")))
    (custom-theme-set-faces
     'ahungry ;; This is the theme name
     `(default ((t (:foreground "#ffffff" :background ,mainbg
     '(message-header-subject ((t (:foreground "#ffffff"))))
     '(message-header-to ((t (:foreground "#ffffff"))))
     '(message-header-cc ((t (:foreground "#ffffff"))))
+    '(mm-uu-extract ((t (:foreground "#0066ff"))))
     '(org-hide ((t (:foreground "#009933"))))
     '(org-level-1 ((t (:bold t :foreground "#4477ff" :height 1.5))))
     '(org-level-2 ((t (:bold nil :foreground "#ffc800" :height 1.2))))