Make diff-mode not look like my cat barfed on the screen after eating a mouse. (including define the face "shadow")

This commit is contained in:
Luke Shumaker 2011-10-16 18:07:23 -04:00
parent 26260c07e2
commit f4dac1be74
1 changed files with 9 additions and 7 deletions

View File

@ -96,6 +96,7 @@ will use the 256 degraded color mode."
(rotatef base00 base0))
`((;; basic
(default ((t (:foreground ,base0 ,:background ,base03))))
(shadow ((t (:foreground, base01))))
(cursor
((t (:foreground ,base0 :background ,base03 :inverse-video t))))
(escape-glyph-face ((t (:foreground ,red))))
@ -142,13 +143,14 @@ will use the 256 degraded color mode."
(custom-state ((t (:foreground ,green))))
(custom-variable-tag ((t (:foreground ,orange :weight ,bold))))
;; diff
(diff-added ((t (:foreground ,green :inverse-video t))))
(diff-changed ((t (:foreground ,yellow :inverse-video t))))
(diff-removed ((t (:foreground ,red :inverse-video t))))
(diff-header ((t (:background ,base01))))
(diff-file-header
((t (:background ,base1 :foreground ,base01 :weight ,bold))))
(diff-refine-change ((t (:background ,base1))))
(diff-changed ((t (:foreground ,yellow))))
(diff-added ((t (:foreground ,cyan))))
(diff-removed ((t (:foreground ,red))))
(diff-header ((t (:background ,base02))))
(diff-file-header ((t (:background ,base02
:foreground ,base01
:weight ,bold))))
(diff-refine-change ((t (:background ,base02))))
;; IDO
(ido-only-match ((t (:foreground ,green))))
(ido-subdir ((t (:foreground ,blue))))