diff options
author | Tassilo Horn <tassilo@member.fsf.org> | 2011-01-12 17:19:36 +0100 |
---|---|---|
committer | Tassilo Horn <tassilo@member.fsf.org> | 2011-01-12 17:19:36 +0100 |
commit | 1b71db167e19ecf32b563dda6dd6e2b92b450b79 (patch) | |
tree | 5b68ce5f342231c0e27708cebc331ee58c212071 /etc/themes | |
parent | 03d32f1b2263270b75a0b3324c52c39965345665 (diff) | |
download | emacs-1b71db167e19ecf32b563dda6dd6e2b92b450b79.tar.gz |
Better diff faces on dark background.
Diffstat (limited to 'etc/themes')
-rw-r--r-- | etc/themes/tsdh-dark-theme.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/themes/tsdh-dark-theme.el b/etc/themes/tsdh-dark-theme.el index 4fe86987d87..cc1e86b3306 100644 --- a/etc/themes/tsdh-dark-theme.el +++ b/etc/themes/tsdh-dark-theme.el @@ -25,12 +25,12 @@ (custom-theme-set-faces 'tsdh-dark '(default ((t (:background "gray20" :foreground "white smoke")))) - '(diff-added ((t (:inherit diff-changed :background "light green")))) - '(diff-changed ((t (:background "light steel blue")))) + '(diff-added ((t (:inherit diff-changed :background "dark green")))) + '(diff-changed ((t (:background "midnight blue")))) '(diff-indicator-added ((t (:inherit diff-indicator-changed)))) '(diff-indicator-changed ((t (:weight bold)))) '(diff-indicator-removed ((t (:inherit diff-indicator-changed)))) - '(diff-removed ((t (:inherit diff-changed :background "sandy brown")))) + '(diff-removed ((t (:inherit diff-changed :background "dark red")))) '(dired-directory ((t (:inherit font-lock-function-name-face :weight bold)))) '(hl-line ((t (:background "grey28")))) '(message-header-subject ((t (:foreground "SkyBlue")))) |