diff --git a/solarized-dark-theme.el b/solarized-dark-theme.el index cc3604a..423b75a 100644 --- a/solarized-dark-theme.el +++ b/solarized-dark-theme.el @@ -1,3 +1,5 @@ (require 'solarized-definitions) +(deftheme solarized-dark solarized-description) + (create-solarized-theme dark) diff --git a/solarized-definitions.el b/solarized-definitions.el index 2e1518e..67c4076 100644 --- a/solarized-definitions.el +++ b/solarized-definitions.el @@ -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)))) diff --git a/solarized-light-theme.el b/solarized-light-theme.el index a104887..ed8f8c7 100644 --- a/solarized-light-theme.el +++ b/solarized-light-theme.el @@ -1,3 +1,5 @@ (require 'solarized-definitions) +(deftheme solarized-light solarized-description) + (create-solarized-theme light)