aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorChong Yidong2011-08-18 20:12:45 -0400
committerChong Yidong2011-08-18 20:12:45 -0400
commit5226c7c0169c61977d8914a5feb385bde36077ee (patch)
treecf84056c097ef414e262a2d01130e25a933a181b /etc
parentc7b98a1c197f91ca0dc85b4eab629b3ef5da7b09 (diff)
downloademacs-5226c7c0169c61977d8914a5feb385bde36077ee.tar.gz
emacs-5226c7c0169c61977d8914a5feb385bde36077ee.zip
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')
-rw-r--r--etc/ChangeLog8
-rw-r--r--etc/themes/dichromacy-theme.el6
-rw-r--r--etc/themes/tango-dark-theme.el4
-rw-r--r--etc/themes/tango-theme.el4
-rw-r--r--etc/themes/wheatgrass-theme.el4
5 files changed, 21 insertions, 5 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 0e31638a9af..c2f7e3cb0d2 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,11 @@
12011-08-19 Chong Yidong <cyd@stupidchicken.com>
2
3 * themes/dichromacy-theme.el:
4 * themes/wheatgrass-theme.el:
5 * themes/tango-theme.el:
6 * themes/tango-dark-theme.el: Add error, warning, and success
7 faces.
8
12011-08-15 Carsten Dominik <carsten.dominik@gmail.com> 92011-08-15 Carsten Dominik <carsten.dominik@gmail.com>
2 10
3 * refcards/orgcard.tex: Document `org-copy-visible'. 11 * refcards/orgcard.tex: Document `org-copy-visible'.
diff --git a/etc/themes/dichromacy-theme.el b/etc/themes/dichromacy-theme.el
index 31f27d9fb8a..3c260118b26 100644
--- a/etc/themes/dichromacy-theme.el
+++ b/etc/themes/dichromacy-theme.el
@@ -60,6 +60,10 @@ Ansi-Color faces are included.")
60 ;; Escape and prompt faces 60 ;; Escape and prompt faces
61 `(minibuffer-prompt ((,class (:weight bold :foreground ,blue)))) 61 `(minibuffer-prompt ((,class (:weight bold :foreground ,blue))))
62 `(escape-glyph ((,class (:foreground ,vermillion)))) 62 `(escape-glyph ((,class (:foreground ,vermillion))))
63 `(error ((,class (:weight bold :slant italic
64 :foreground ,vermillion))))
65 `(warning ((,class (:foreground ,orange))))
66 `(success ((,class (:foreground ,bluegreen))))
63 ;; Font lock faces 67 ;; Font lock faces
64 `(font-lock-builtin-face ((,class (:foreground ,blue)))) 68 `(font-lock-builtin-face ((,class (:foreground ,blue))))
65 `(font-lock-comment-face ((,class (:slant italic :foreground ,bluegreen)))) 69 `(font-lock-comment-face ((,class (:slant italic :foreground ,bluegreen))))
@@ -69,8 +73,6 @@ Ansi-Color faces are included.")
69 `(font-lock-string-face ((,class (:foreground ,bluegray)))) 73 `(font-lock-string-face ((,class (:foreground ,bluegray))))
70 `(font-lock-type-face ((,class (:weight bold :foreground ,blue)))) 74 `(font-lock-type-face ((,class (:weight bold :foreground ,blue))))
71 `(font-lock-variable-name-face ((,class (:weight bold :foreground ,orange)))) 75 `(font-lock-variable-name-face ((,class (:weight bold :foreground ,orange))))
72 `(font-lock-warning-face ((,class (:weight bold :slant italic
73 :foreground ,vermillion))))
74 ;; Button and link faces 76 ;; Button and link faces
75 `(link ((,class (:underline t :foreground ,blue)))) 77 `(link ((,class (:underline t :foreground ,blue))))
76 `(link-visited ((,class (:underline t :foreground ,redpurple)))) 78 `(link-visited ((,class (:underline t :foreground ,redpurple))))
diff --git a/etc/themes/tango-dark-theme.el b/etc/themes/tango-dark-theme.el
index 403370c90cb..8f91d35e6a1 100644
--- a/etc/themes/tango-dark-theme.el
+++ b/etc/themes/tango-dark-theme.el
@@ -75,6 +75,9 @@ Semantic, and Ansi-Color faces are included.")
75 ;; Escape and prompt faces 75 ;; Escape and prompt faces
76 `(minibuffer-prompt ((,class (:foreground ,cham-0)))) 76 `(minibuffer-prompt ((,class (:foreground ,cham-0))))
77 `(escape-glyph ((,class (:foreground ,butter-3)))) 77 `(escape-glyph ((,class (:foreground ,butter-3))))
78 `(error ((,class (:foreground ,red-0))))
79 `(warning ((,class (:foreground ,orange-1))))
80 `(success ((,class (:foreground ,cham-1))))
78 ;; Font lock faces 81 ;; Font lock faces
79 `(font-lock-builtin-face ((,class (:foreground ,plum-1)))) 82 `(font-lock-builtin-face ((,class (:foreground ,plum-1))))
80 `(font-lock-comment-face ((,class (:foreground ,cham-2)))) 83 `(font-lock-comment-face ((,class (:foreground ,cham-2))))
@@ -84,7 +87,6 @@ Semantic, and Ansi-Color faces are included.")
84 `(font-lock-string-face ((,class (:foreground ,choc-1)))) 87 `(font-lock-string-face ((,class (:foreground ,choc-1))))
85 `(font-lock-type-face ((,class (:foreground ,blue-0)))) 88 `(font-lock-type-face ((,class (:foreground ,blue-0))))
86 `(font-lock-variable-name-face ((,class (:foreground ,orange-1)))) 89 `(font-lock-variable-name-face ((,class (:foreground ,orange-1))))
87 `(font-lock-warning-face ((,class (:foreground ,red-0))))
88 ;; Button and link faces 90 ;; Button and link faces
89 `(link ((,class (:underline t :foreground ,blue-1)))) 91 `(link ((,class (:underline t :foreground ,blue-1))))
90 `(link-visited ((,class (:underline t :foreground ,blue-2)))) 92 `(link-visited ((,class (:underline t :foreground ,blue-2))))
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.")
66 ;; Escape and prompt faces 66 ;; Escape and prompt faces
67 `(minibuffer-prompt ((,class (:weight bold :foreground ,blue-3)))) 67 `(minibuffer-prompt ((,class (:weight bold :foreground ,blue-3))))
68 `(escape-glyph ((,class (:foreground ,red-3)))) 68 `(escape-glyph ((,class (:foreground ,red-3))))
69 `(error ((,class (:foreground ,red-3))))
70 `(warning ((,class (:foreground ,orange-3))))
71 `(success ((,class (:foreground ,cham-3))))
69 ;; Font lock faces 72 ;; Font lock faces
70 `(font-lock-builtin-face ((,class (:foreground ,plum-2)))) 73 `(font-lock-builtin-face ((,class (:foreground ,plum-2))))
71 `(font-lock-comment-face ((,class (:slant italic :foreground ,alum-5)))) 74 `(font-lock-comment-face ((,class (:slant italic :foreground ,alum-5))))
@@ -75,7 +78,6 @@ Semantic, and Ansi-Color faces are included.")
75 `(font-lock-string-face ((,class (:foreground ,plum-3)))) 78 `(font-lock-string-face ((,class (:foreground ,plum-3))))
76 `(font-lock-type-face ((,class (:foreground ,blue-3)))) 79 `(font-lock-type-face ((,class (:foreground ,blue-3))))
77 `(font-lock-variable-name-face ((,class (:foreground ,orange-4)))) 80 `(font-lock-variable-name-face ((,class (:foreground ,orange-4))))
78 `(font-lock-warning-face ((,class (:foreground ,red-2))))
79 ;; Button and link faces 81 ;; Button and link faces
80 `(link ((,class (:underline t :foreground ,blue-3)))) 82 `(link ((,class (:underline t :foreground ,blue-3))))
81 `(link-visited ((,class (:underline t :foreground ,blue-2)))) 83 `(link-visited ((,class (:underline t :foreground ,blue-2))))
diff --git a/etc/themes/wheatgrass-theme.el b/etc/themes/wheatgrass-theme.el
index 9f8772c4d6e..63ebc247b9d 100644
--- a/etc/themes/wheatgrass-theme.el
+++ b/etc/themes/wheatgrass-theme.el
@@ -30,6 +30,9 @@ of green, brown, and blue.")
30 'wheatgrass 30 'wheatgrass
31 `(default ((,class (:foreground "wheat" :background "black")))) 31 `(default ((,class (:foreground "wheat" :background "black"))))
32 `(cursor ((,class (:foreground "black" :background "thistle")))) 32 `(cursor ((,class (:foreground "black" :background "thistle"))))
33 `(error ((,class (:foreground "salmon1"))))
34 `(warning ((,class (:foreground "orange"))))
35 `(success ((,class (:foreground "yellow green"))))
33 ;; Highlighting faces 36 ;; Highlighting faces
34 `(highlight ((,class (:foreground "white" :background "dark green")))) 37 `(highlight ((,class (:foreground "white" :background "dark green"))))
35 `(region ((,class (:foreground "white" :background "dark green")))) 38 `(region ((,class (:foreground "white" :background "dark green"))))
@@ -45,7 +48,6 @@ of green, brown, and blue.")
45 `(font-lock-string-face ((,class (:foreground "dark khaki")))) 48 `(font-lock-string-face ((,class (:foreground "dark khaki"))))
46 `(font-lock-type-face ((,class (:foreground "aquamarine")))) 49 `(font-lock-type-face ((,class (:foreground "aquamarine"))))
47 `(font-lock-variable-name-face ((,class (:foreground "yellow green")))) 50 `(font-lock-variable-name-face ((,class (:foreground "yellow green"))))
48 `(font-lock-warning-face ((,class (:foreground "salmon1"))))
49 ;; Button and link faces 51 ;; Button and link faces
50 `(link ((,class (:underline t :foreground "cyan")))) 52 `(link ((,class (:underline t :foreground "cyan"))))
51 `(link-visited ((,class (:underline t :foreground "dark cyan")))) 53 `(link-visited ((,class (:underline t :foreground "dark cyan"))))