Merge branch 'master' of https://github.com/mads379/emacs-color-theme-solarized into mads379-master

This commit is contained in:
Greg Pfeil 2011-05-18 07:55:48 -04:00
commit 4a597821a5
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,5 @@
(require 'solarized-definitions)
(deftheme solarized-dark solarized-description)
(create-solarized-theme dark)

View File

@ -100,6 +100,7 @@ will use the 256 degraded color mode."
((t (:foreground ,base0 :background ,base03 :inverse-video t))))
(escape-glyph-face ((t (:foreground ,red))))
(fringe ((t (:foreground ,base01 :background ,base02))))
(linum ((t (:foreground ,base01 :background ,base02))))
(header-line ((t (:foreground ,base0 :background ,base2))))
(highlight ((t (:background ,base02))))
(hl-line ((t (:background ,base02))))
@ -148,6 +149,10 @@ will use the 256 degraded color mode."
(diff-file-header
((t (:background ,base1 :foreground ,base01 :weight ,bold))))
(diff-refine-change ((t (:background ,base1))))
;; IDO
(ido-only-match ((t (:foreground ,green))))
(ido-subdir ((t (:foreground ,blue))))
(ido-first-match ((t (:foreground ,green :weight ,bold))))
;; emacs-wiki
(emacs-wiki-bad-link-face
((t (:foreground ,red :underline ,underline))))

View File

@ -1,3 +1,5 @@
(require 'solarized-definitions)
(deftheme solarized-light solarized-description)
(create-solarized-theme light)