From e64a9cd001b82d0f8238d41bb36e6c0c7b0449b3 Mon Sep 17 00:00:00 2001 From: Matthew Carter Date: Mon, 29 Jun 2015 23:28:22 -0400 Subject: [PATCH] Fix warning message with "default" background color, add mm-uu-extract color --- ahungry-theme.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ahungry-theme.el b/ahungry-theme.el index 533305dbb..788d58c89 100644 --- a/ahungry-theme.el +++ b/ahungry-theme.el @@ -5,7 +5,7 @@ ;; Author: Matthew Carter ;; Maintainer: Matthew Carter ;; 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")) @@ -36,6 +36,10 @@ ;;; 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 @@ (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 @@ -154,6 +158,7 @@ '(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)))) -- 2.39.2