emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105495: Adapt themes to new error/wa


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105495: Adapt themes to new error/warning/success faces.
Date: Thu, 18 Aug 2011 20:12:45 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105495
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Thu 2011-08-18 20:12:45 -0400
message:
  Adapt themes to new error/warning/success faces.
  
  * etc/themes/dichromacy-theme.el:
  * etc/themes/wheatgrass-theme.el:
  * etc/themes/tango-theme.el:
  * etc/themes/tango-dark-theme.el: Add error, warning, and success faces.
modified:
  etc/ChangeLog
  etc/themes/dichromacy-theme.el
  etc/themes/tango-dark-theme.el
  etc/themes/tango-theme.el
  etc/themes/wheatgrass-theme.el
=== modified file 'etc/ChangeLog'
--- a/etc/ChangeLog     2011-08-16 07:13:02 +0000
+++ b/etc/ChangeLog     2011-08-19 00:12:45 +0000
@@ -1,3 +1,11 @@
+2011-08-19  Chong Yidong  <address@hidden>
+
+       * themes/dichromacy-theme.el:
+       * themes/wheatgrass-theme.el:
+       * themes/tango-theme.el:
+       * themes/tango-dark-theme.el: Add error, warning, and success
+       faces.
+
 2011-08-15  Carsten Dominik  <address@hidden>
 
        * refcards/orgcard.tex: Document `org-copy-visible'.

=== modified file 'etc/themes/dichromacy-theme.el'
--- a/etc/themes/dichromacy-theme.el    2011-07-07 01:48:14 +0000
+++ b/etc/themes/dichromacy-theme.el    2011-08-19 00:12:45 +0000
@@ -60,6 +60,10 @@
    ;; Escape and prompt faces
    `(minibuffer-prompt ((,class (:weight bold :foreground ,blue))))
    `(escape-glyph ((,class (:foreground ,vermillion))))
+   `(error ((,class (:weight bold :slant italic
+                            :foreground ,vermillion))))
+   `(warning ((,class (:foreground ,orange))))
+   `(success ((,class (:foreground ,bluegreen))))
    ;; Font lock faces
    `(font-lock-builtin-face ((,class (:foreground ,blue))))
    `(font-lock-comment-face ((,class (:slant italic :foreground ,bluegreen))))
@@ -69,8 +73,6 @@
    `(font-lock-string-face ((,class (:foreground ,bluegray))))
    `(font-lock-type-face ((,class (:weight bold :foreground ,blue))))
    `(font-lock-variable-name-face ((,class (:weight bold :foreground 
,orange))))
-   `(font-lock-warning-face ((,class (:weight bold :slant italic
-                                     :foreground ,vermillion))))
    ;; Button and link faces
    `(link ((,class (:underline t :foreground ,blue))))
    `(link-visited ((,class (:underline t :foreground ,redpurple))))

=== modified file 'etc/themes/tango-dark-theme.el'
--- a/etc/themes/tango-dark-theme.el    2011-07-07 01:48:14 +0000
+++ b/etc/themes/tango-dark-theme.el    2011-08-19 00:12:45 +0000
@@ -75,6 +75,9 @@
    ;; Escape and prompt faces
    `(minibuffer-prompt ((,class (:foreground ,cham-0))))
    `(escape-glyph ((,class (:foreground ,butter-3))))
+   `(error ((,class (:foreground ,red-0))))
+   `(warning ((,class (:foreground ,orange-1))))
+   `(success ((,class (:foreground ,cham-1))))
    ;; Font lock faces
    `(font-lock-builtin-face ((,class (:foreground ,plum-1))))
    `(font-lock-comment-face ((,class (:foreground ,cham-2))))
@@ -84,7 +87,6 @@
    `(font-lock-string-face ((,class (:foreground ,choc-1))))
    `(font-lock-type-face ((,class (:foreground ,blue-0))))
    `(font-lock-variable-name-face ((,class (:foreground ,orange-1))))
-   `(font-lock-warning-face ((,class (:foreground ,red-0))))
    ;; Button and link faces
    `(link ((,class (:underline t :foreground ,blue-1))))
    `(link-visited ((,class (:underline t :foreground ,blue-2))))

=== modified file 'etc/themes/tango-theme.el'
--- a/etc/themes/tango-theme.el 2011-07-07 01:48:14 +0000
+++ b/etc/themes/tango-theme.el 2011-08-19 00:12:45 +0000
@@ -66,6 +66,9 @@
    ;; Escape and prompt faces
    `(minibuffer-prompt ((,class (:weight bold :foreground ,blue-3))))
    `(escape-glyph ((,class (:foreground ,red-3))))
+   `(error ((,class (:foreground ,red-3))))
+   `(warning ((,class (:foreground ,orange-3))))
+   `(success ((,class (:foreground ,cham-3))))
    ;; Font lock faces
    `(font-lock-builtin-face ((,class (:foreground ,plum-2))))
    `(font-lock-comment-face ((,class (:slant italic :foreground ,alum-5))))
@@ -75,7 +78,6 @@
    `(font-lock-string-face ((,class (:foreground ,plum-3))))
    `(font-lock-type-face ((,class (:foreground ,blue-3))))
    `(font-lock-variable-name-face ((,class (:foreground ,orange-4))))
-   `(font-lock-warning-face ((,class (:foreground ,red-2))))
    ;; Button and link faces
    `(link ((,class (:underline t :foreground ,blue-3))))
    `(link-visited ((,class (:underline t :foreground ,blue-2))))

=== modified file 'etc/themes/wheatgrass-theme.el'
--- a/etc/themes/wheatgrass-theme.el    2011-07-07 01:48:14 +0000
+++ b/etc/themes/wheatgrass-theme.el    2011-08-19 00:12:45 +0000
@@ -30,6 +30,9 @@
    'wheatgrass
    `(default ((,class (:foreground "wheat" :background "black"))))
    `(cursor ((,class (:foreground "black" :background "thistle"))))
+   `(error ((,class (:foreground "salmon1"))))
+   `(warning ((,class (:foreground "orange"))))
+   `(success ((,class (:foreground "yellow green"))))
    ;; Highlighting faces
    `(highlight ((,class (:foreground "white" :background "dark green"))))
    `(region ((,class (:foreground "white" :background "dark green"))))
@@ -45,7 +48,6 @@
    `(font-lock-string-face ((,class (:foreground "dark khaki"))))
    `(font-lock-type-face ((,class (:foreground "aquamarine"))))
    `(font-lock-variable-name-face ((,class (:foreground "yellow green"))))
-   `(font-lock-warning-face ((,class (:foreground "salmon1"))))
    ;; Button and link faces
    `(link ((,class (:underline t :foreground "cyan"))))
    `(link-visited ((,class (:underline t :foreground "dark cyan"))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]