diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-08-18 20:12:45 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-08-18 20:12:45 -0400 |
commit | 5226c7c0169c61977d8914a5feb385bde36077ee (patch) | |
tree | cf84056c097ef414e262a2d01130e25a933a181b /etc/themes/tango-theme.el | |
parent | c7b98a1c197f91ca0dc85b4eab629b3ef5da7b09 (diff) | |
download | emacs-5226c7c0169c61977d8914a5feb385bde36077ee.tar.gz |
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.
Diffstat (limited to 'etc/themes/tango-theme.el')
-rw-r--r-- | etc/themes/tango-theme.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/themes/tango-theme.el b/etc/themes/tango-theme.el index 9d0f0aca94a..f504d764277 100644 --- a/etc/themes/tango-theme.el +++ b/etc/themes/tango-theme.el @@ -66,6 +66,9 @@ Semantic, and Ansi-Color faces are included.") ;; 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 @@ Semantic, and Ansi-Color faces are included.") `(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)))) |