diff --git a/themes/solarized-dark-theme.el b/themes/solarized-dark-theme.el
new file mode 100644
index 0000000..90a1f14
--- /dev/null
+++ b/themes/solarized-dark-theme.el
@@ -0,0 +1,7 @@
+(require 'solarized-core)
+
+(deftheme solarized-dark "The dark variant of the Solarized colour theme")
+
+(create-solarized-theme 'dark)
+
+(provide-theme 'solarized-dark)
diff --git a/themes/solarized-light-theme.el b/themes/solarized-light-theme.el
new file mode 100644
index 0000000..dde0a83
--- /dev/null
+++ b/themes/solarized-light-theme.el
@@ -0,0 +1,7 @@
+(require 'solarized-core)
+
+(deftheme solarized-light "The light variant of the Solarized colour theme")
+
+(create-solarized-theme 'light)
+
+(provide-theme 'solarized-light)
diff --git a/vendor/solarized-core.el b/vendor/solarized-core.el
new file mode 100644
index 0000000..f0c9c17
--- /dev/null
+++ b/vendor/solarized-core.el
@@ -0,0 +1,462 @@
+;;; solarized-core.el --- Solarized for Emacs.
+
+;; Copyright (C) 2011 Bozhidar Batsov
+
+;; Author: Bozhidar Batsov <bozhidar.batsov@gmail.com>
+;; URL: http://github.com/bbatsov/solarized-emacs
+;; Version: 0.1
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+;;
+;; A port of Solarized to Emacs.
+;;
+;;; Installation:
+;;
+;;   Drop the theme in a folder that is on `custom-theme-load-path'
+;; and enjoy!
+;;
+;; Don't forget that the theme requires Emacs 24.
+;;
+;;; Bugs
+;;
+;; None that I'm aware of.
+;;
+;;; Credits
+;;
+;; Ethan Schoonover created the original theme for vim on such this port
+;; is based.
+;;
+;;; Code
+
+
+(defun create-solarized-theme (variant)
+ (let* ((class '((class color) (min-colors 89)))
+      ;; Solarized palette
+       ;; colors with +x are lighter, colors with -x are darker
+
+       (base03    "#002b36")
+       (base02    "#073642")
+       ;; emphasized content
+       (base01    "#586e75")
+       ;; primary content
+       (base00    "#657b83")
+       (base0     "#839496")
+       ;; comments
+       (base1     "#93a1a1")
+       ;; background highlight light
+       (base2     "#eee8d5")
+       ;; background light
+       (base3     "#fdf6e3")
+       (yellow    "#b58900")
+       (orange    "#cb4b16")
+       (red       "#dc322f")
+       (magenta   "#d33682")
+       (violet    "#6c71c4")
+       (blue      "#268bd2")
+       (cyan      "#2aa198")
+       (green     "#859900")
+
+       (solarized-fg (if (eq variant 'light) base00 base0))
+       (solarized-bg (if (eq variant 'light) base3 base03))
+       (solarized-hl (if (eq variant 'light) base2 base02))
+       (solarized-emph (if (eq variant 'light) base01 base1))
+       (solarized-comments (if (eq variant 'light) base1 base01)))
+  (custom-theme-set-faces
+   (if (eq variant 'light) 'solarized-light 'solarized-dark)
+   '(button ((t (:underline t))))
+   `(link ((,class (:foreground ,yellow :underline t :weight bold))))
+   `(link-visited ((,class (:foreground ,yellow :underline t :weight normal))))
+
+   ;;; basic coloring
+   `(default ((,class (:foreground ,solarized-fg :background ,solarized-bg))))
+   `(cursor ((,class (:foreground ,solarized-fg))))
+   `(escape-glyph-face ((,class (:foreground ,red))))
+   `(fringe ((,class (:foreground ,solarized-fg :background ,solarized-bg))))
+   `(header-line ((,class (:foreground ,yellow
+                                       :background ,solarized-hl
+                                       :box (:line-width -1 :style released-button)))))
+   `(highlight ((,class (:background ,solarized-hl))))
+
+   ;;; compilation
+   `(compilation-column-face ((,class (:foreground ,yellow))))
+   `(compilation-enter-directory-face ((,class (:foreground ,green))))
+   `(compilation-error-face ((,class (:foreground ,red :weight bold :underline t))))
+   `(compilation-face ((,class (:foreground ,solarized-fg))))
+   `(compilation-info-face ((,class (:foreground ,blue))))
+   `(compilation-info ((,class (:foreground ,green :underline t))))
+   `(compilation-leave-directory-face ((,class (:foreground ,green))))
+   `(compilation-line-face ((,class (:foreground ,yellow))))
+   `(compilation-line-number ((,class (:foreground ,yellow))))
+   `(compilation-message-face ((,class (:foreground ,blue))))
+   `(compilation-warning-face ((,class (:foreground ,yellow :weight bold :underline t))))
+
+   ;;; grep
+   `(grep-context-face ((,class (:foreground ,solarized-fg))))
+   `(grep-error-face ((,class (:foreground ,red :weight bold :underline t))))
+   `(grep-hit-face ((,class (:foreground ,blue))))
+   `(grep-match-face ((,class (:foreground ,orange :weight bold))))
+   `(match ((,class (:background ,solarized-hl :foreground ,orange :weight bold))))
+
+   ;; faces used by isearch
+   `(isearch ((,class (:foreground ,yellow :background ,solarized-hl))))
+   `(isearch-fail ((,class (:foreground ,solarized-fg :background ,red))))
+   `(lazy-highlight ((,class (:foreground ,yellow :background ,solarized-hl))))
+
+   `(menu ((,class (:foreground ,solarized-fg :background ,solarized-bg))))
+   `(minibuffer-prompt ((,class (:foreground ,yellow))))
+   `(mode-line
+     ((,class (:foreground ,green
+                           :background ,solarized-hl
+                           :box (:line-width -1 :style released-button)))))
+   `(mode-line-buffer-id ((,class (:foreground ,yellow :weight bold))))
+   `(mode-line-inactive
+     ((,class (:foreground ,green
+                           :background ,solarized-bg
+                           :box (:line-width -1 :style released-button)))))
+   `(region ((,class (:background ,solarized-hl))))
+   `(secondary-selection ((,class (:background ,solarized-bg))))
+   `(trailing-whitespace ((,class (:background ,red))))
+   `(vertical-border ((,class (:foreground ,solarized-fg))))
+
+   ;;; font lock
+   `(font-lock-builtin-face ((,class (:foreground ,blue))))
+   `(font-lock-comment-face ((,class (:foreground ,solarized-comments))))
+   `(font-lock-comment-delimiter-face ((,class (:foreground ,solarized-comments))))
+   `(font-lock-constant-face ((,class (:foreground ,green))))
+   `(font-lock-doc-face ((,class (:foreground ,green))))
+   `(font-lock-doc-string-face ((,class (:foreground ,blue))))
+   `(font-lock-function-name-face ((,class (:foreground ,blue))))
+   `(font-lock-keyword-face ((,class (:foreground ,yellow :weight bold))))
+   `(font-lock-negation-char-face ((,class (:foreground ,solarized-fg))))
+   `(font-lock-preprocessor-face ((,class (:foreground ,blue))))
+   `(font-lock-string-face ((,class (:foreground ,red))))
+   `(font-lock-type-face ((,class (:foreground ,blue))))
+   `(font-lock-variable-name-face ((,class (:foreground ,orange))))
+   `(font-lock-warning-face ((,class (:foreground ,yellow :weight bold :underline t))))
+
+   `(c-annotation-face ((,class (:inherit font-lock-constant-face))))
+
+   ;;; external
+
+   ;; diff
+   `(diff-added ((,class (:foreground ,green))))
+   `(diff-changed ((,class (:foreground ,yellow))))
+   `(diff-removed ((,class (:foreground ,red))))
+   `(diff-header ((,class (:background ,solarized-bg))))
+   `(diff-file-header
+     ((,class (:background ,solarized-bg :foreground ,solarized-fg :bold t))))
+
+   ;; eshell
+   `(eshell-prompt ((,class (:foreground ,yellow :weight bold))))
+   `(eshell-ls-archive ((,class (:foreground ,red :weight bold))))
+   `(eshell-ls-backup ((,class (:inherit font-lock-comment))))
+   `(eshell-ls-clutter ((,class (:inherit font-lock-comment))))
+   `(eshell-ls-directory ((,class (:foreground ,blue :weight bold))))
+   `(eshell-ls-executable ((,class (:foreground ,red :weight bold))))
+   `(eshell-ls-unreadable ((,class (:foreground ,solarized-fg))))
+   `(eshell-ls-missing ((,class (:inherit font-lock-warning))))
+   `(eshell-ls-product ((,class (:inherit font-lock-doc))))
+   `(eshell-ls-special ((,class (:foreground ,yellow :weight bold))))
+   `(eshell-ls-symlink ((,class (:foreground ,cyan :weight bold))))
+
+   ;; flymake
+   `(flymake-errline ((,class (:foreground ,red :weight bold :underline t))))
+   `(flymake-warnline ((,class (:foreground ,yellow :weight bold :underline t))))
+
+   ;; flyspell
+   `(flyspell-duplicate ((,class (:foreground ,yellow :weight bold :underline t))))
+   `(flyspell-incorrect ((,class (:foreground ,red :weight bold :underline t))))
+
+   ;; erc
+   `(erc-action-face ((,class (:inherit erc-default-face))))
+   `(erc-bold-face ((,class (:weight bold))))
+   `(erc-current-nick-face ((,class (:foreground ,blue :weight bold))))
+   `(erc-dangerous-host-face ((,class (:inherit font-lock-warning))))
+   `(erc-default-face ((,class (:foreground ,solarized-fg))))
+   `(erc-direct-msg-face ((,class (:inherit erc-default))))
+   `(erc-error-face ((,class (:inherit font-lock-warning))))
+   `(erc-fool-face ((,class (:inherit erc-default))))
+   `(erc-highlight-face ((,class (:inherit hover-highlight))))
+   `(erc-input-face ((,class (:foreground ,yellow))))
+   `(erc-keyword-face ((,class (:foreground ,blue :weight bold))))
+   `(erc-nick-default-face ((,class (:foreground ,yellow :weight bold))))
+   `(erc-my-nick-face ((,class (:foreground ,red :weigth bold))))
+   `(erc-nick-msg-face ((,class (:inherit erc-default))))
+   `(erc-notice-face ((,class (:foreground ,green))))
+   `(erc-pal-face ((,class (:foreground ,orange :weight bold))))
+   `(erc-prompt-face ((,class (:foreground ,orange :background ,solarized-bg :weight bold))))
+   `(erc-timestamp-face ((,class (:foreground ,green))))
+   `(erc-underline-face ((t (:underline t))))
+
+   ;; gnus
+   `(gnus-group-mail-1-face ((,class (:bold t :inherit gnus-group-mail-1-empty))))
+   `(gnus-group-mail-1-empty-face ((,class (:inherit gnus-group-news-1-empty))))
+   `(gnus-group-mail-2-face ((,class (:bold t :inherit gnus-group-mail-2-empty))))
+   `(gnus-group-mail-2-empty-face ((,class (:inherit gnus-group-news-2-empty))))
+   `(gnus-group-mail-3-face ((,class (:bold t :inherit gnus-group-mail-3-empty))))
+   `(gnus-group-mail-3-empty-face ((,class (:inherit gnus-group-news-3-empty))))
+   `(gnus-group-mail-4-face ((,class (:bold t :inherit gnus-group-mail-4-empty))))
+   `(gnus-group-mail-4-empty-face ((,class (:inherit gnus-group-news-4-empty))))
+   `(gnus-group-mail-5-face ((,class (:bold t :inherit gnus-group-mail-5-empty))))
+   `(gnus-group-mail-5-empty-face ((,class (:inherit gnus-group-news-5-empty))))
+   `(gnus-group-mail-6-face ((,class (:bold t :inherit gnus-group-mail-6-empty))))
+   `(gnus-group-mail-6-empty-face ((,class (:inherit gnus-group-news-6-empty))))
+   `(gnus-group-mail-low-face ((,class (:bold t :inherit gnus-group-mail-low-empty))))
+   `(gnus-group-mail-low-empty-face ((,class (:inherit gnus-group-news-low-empty))))
+   `(gnus-group-news-1-face ((,class (:bold t :inherit gnus-group-news-1-empty))))
+   `(gnus-group-news-2-face ((,class (:bold t :inherit gnus-group-news-2-empty))))
+   `(gnus-group-news-3-face ((,class (:bold t :inherit gnus-group-news-3-empty))))
+   `(gnus-group-news-4-face ((,class (:bold t :inherit gnus-group-news-4-empty))))
+   `(gnus-group-news-5-face ((,class (:bold t :inherit gnus-group-news-5-empty))))
+   `(gnus-group-news-6-face ((,class (:bold t :inherit gnus-group-news-6-empty))))
+   `(gnus-group-news-low-face ((,class (:bold t :inherit gnus-group-news-low-empty))))
+   `(gnus-header-content-face ((,class (:inherit message-header-other))))
+   `(gnus-header-from-face ((,class (:inherit message-header-from))))
+   `(gnus-header-name-face ((,class (:inherit message-header-name))))
+   `(gnus-header-newsgroups-face ((,class (:inherit message-header-other))))
+   `(gnus-header-subject-face ((,class (:inherit message-header-subject))))
+   `(gnus-summary-cancelled-face ((,class (:foreground ,orange))))
+   `(gnus-summary-high-ancient-face ((,class (:foreground ,blue))))
+   `(gnus-summary-high-read-face ((,class (:foreground ,green :weight bold))))
+   `(gnus-summary-high-ticked-face ((,class (:foreground ,orange :weight bold))))
+   `(gnus-summary-high-unread-face ((,class (:foreground ,solarized-fg :weight bold))))
+   `(gnus-summary-low-ancient-face ((,class (:foreground ,blue))))
+   `(gnus-summary-low-read-face ((t (:foreground ,green))))
+   `(gnus-summary-low-ticked-face ((,class (:foreground ,orange :weight bold))))
+   `(gnus-summary-low-unread-face ((,class (:foreground ,solarized-fg))))
+   `(gnus-summary-normal-ancient-face ((,class (:foreground ,blue))))
+   `(gnus-summary-normal-read-face ((,class (:foreground ,green))))
+   `(gnus-summary-normal-ticked-face ((,class (:foreground ,orange :weight bold))))
+   `(gnus-summary-normal-unread-face ((,class (:foreground ,solarized-fg))))
+   `(gnus-summary-selected-face ((,class (:foreground ,yellow :weight bold))))
+   `(gnus-cite-1-face ((,class (:foreground ,blue))))
+   `(gnus-cite-10-face ((,class (:foreground ,yellow))))
+   `(gnus-cite-11-face ((,class (:foreground ,yellow))))
+   `(gnus-cite-2-face ((,class (:foreground ,blue))))
+   `(gnus-cite-3-face ((,class (:foreground ,blue))))
+   `(gnus-cite-4-face ((,class (:foreground ,green))))
+   `(gnus-cite-5-face ((,class (:foreground ,green))))
+   `(gnus-cite-6-face ((,class (:foreground ,green))))
+   `(gnus-cite-7-face ((,class (:foreground ,red))))
+   `(gnus-cite-8-face ((,class (:foreground ,red))))
+   `(gnus-cite-9-face ((,class (:foreground ,red))))
+   `(gnus-group-news-1-empty-face ((,class (:foreground ,yellow))))
+   `(gnus-group-news-2-empty-face ((,class (:foreground ,green))))
+   `(gnus-group-news-3-empty-face ((,class (:foreground ,green))))
+   `(gnus-group-news-4-empty-face ((,class (:foreground ,blue))))
+   `(gnus-group-news-5-empty-face ((,class (:foreground ,blue))))
+   `(gnus-group-news-6-empty-face ((,class (:foreground ,solarized-bg))))
+   `(gnus-group-news-low-empty-face ((,class (:foreground ,solarized-bg))))
+   `(gnus-signature-face ((,class (:foreground ,yellow))))
+   `(gnus-x-face ((,class (:background ,solarized-fg :foreground ,solarized-bg))))
+
+   ;; hl-line-mode
+   `(hl-line-face ((,class (:background ,solarized-bg))))
+
+   ;; ido-mode
+   `(ido-first-match ((,class (:foreground ,yellow :weight bold))))
+   `(ido-only-match ((,class (:foreground ,orange :weight bold))))
+   `(ido-subdir ((,class (:foreground ,yellow))))
+
+   ;; linum-mode
+   `(linum ((,class (:foreground ,solarized-fg :background ,solarized-bg))))
+
+   ;; magit
+   `(magit-section-title ((,class (:foreground ,yellow :weight bold))))
+   `(magit-branch ((,class (:foreground ,orange :weight bold))))
+
+   ;; message-mode
+   `(message-cited-text-face ((,class (:inherit font-lock-comment))))
+   `(message-header-name-face ((,class (:foreground ,green))))
+   `(message-header-other-face ((,class (:foreground ,green))))
+   `(message-header-to-face ((,class (:foreground ,yellow :weight bold))))
+   `(message-header-from-face ((,class (:foreground ,yellow :weight bold))))
+   `(message-header-cc-face ((,class (:foreground ,yellow :weight bold))))
+   `(message-header-newsgroups-face ((,class (:foreground ,yellow :weight bold))))
+   `(message-header-subject-face ((,class (:foreground ,orange :weight bold))))
+   `(message-header-xheader-face ((,class (:foreground ,green))))
+   `(message-mml-face ((,class (:foreground ,yellow :weight bold))))
+   `(message-separator-face ((,class (:inherit font-lock-comment))))
+
+   ;; mew
+   `(mew-face-header-subject ((,class (:foreground ,orange))))
+   `(mew-face-header-from ((,class (:foreground ,yellow))))
+   `(mew-face-header-date ((,class (:foreground ,green))))
+   `(mew-face-header-to ((,class (:foreground ,red))))
+   `(mew-face-header-key ((,class (:foreground ,green))))
+   `(mew-face-header-private ((,class (:foreground ,green))))
+   `(mew-face-header-important ((,class (:foreground ,blue))))
+   `(mew-face-header-marginal ((,class (:foreground ,solarized-fg :weight bold))))
+   `(mew-face-header-warning ((,class (:foreground ,red))))
+   `(mew-face-header-xmew ((,class (:foreground ,green))))
+   `(mew-face-header-xmew-bad ((,class (:foreground ,red))))
+   `(mew-face-body-url ((,class (:foreground ,orange))))
+   `(mew-face-body-comment ((,class (:foreground ,solarized-fg :slant italic))))
+   `(mew-face-body-cite1 ((,class (:foreground ,green))))
+   `(mew-face-body-cite2 ((,class (:foreground ,blue))))
+   `(mew-face-body-cite3 ((,class (:foreground ,orange))))
+   `(mew-face-body-cite4 ((,class (:foreground ,yellow))))
+   `(mew-face-body-cite5 ((,class (:foreground ,red))))
+   `(mew-face-mark-review ((,class (:foreground ,blue))))
+   `(mew-face-mark-escape ((,class (:foreground ,green))))
+   `(mew-face-mark-delete ((,class (:foreground ,red))))
+   `(mew-face-mark-unlink ((,class (:foreground ,yellow))))
+   `(mew-face-mark-refile ((,class (:foreground ,green))))
+   `(mew-face-mark-unread ((,class (:foreground ,red))))
+   `(mew-face-eof-message ((,class (:foreground ,green))))
+   `(mew-face-eof-part ((,class (:foreground ,yellow))))
+
+   ;; nav
+   `(nav-face-heading ((,class (:foreground ,yellow))))
+   `(nav-face-button-num ((,class (:foreground ,cyan))))
+   `(nav-face-dir ((,class (:foreground ,green))))
+   `(nav-face-hdir ((,class (:foreground ,red))))
+   `(nav-face-file ((,class (:foreground ,solarized-fg))))
+   `(nav-face-hfile ((,class (:foreground ,red))))
+
+   ;; org-mode
+   `(org-agenda-date-today
+     ((,class (:foreground "white" :slant italic :weight bold))) t)
+   `(org-agenda-structure
+     ((,class (:inherit font-lock-comment-face))))
+   `(org-archived ((,class (:foreground ,solarized-fg :weight bold))))
+   `(org-checkbox ((,class (:background ,solarized-bg :foreground "white"
+                                   :box (:line-width 1 :style released-button)))))
+   `(org-date ((,class (:foreground ,blue :underline t))))
+   `(org-deadline-announce ((,class (:foreground ,red))))
+   `(org-done ((,class (:bold t :weight bold :foreground ,green))))
+   `(org-formula ((,class (:foreground ,yellow))))
+   `(org-headline-done ((,class (:foreground ,green))))
+   `(org-hide ((,class (:foreground ,solarized-bg))))
+   `(org-level-1 ((,class (:foreground ,orange))))
+   `(org-level-2 ((,class (:foreground ,green))))
+   `(org-level-3 ((,class (:foreground ,blue))))
+   `(org-level-4 ((,class (:foreground ,yellow))))
+   `(org-level-5 ((,class (:foreground ,cyan))))
+   `(org-level-6 ((,class (:foreground ,green))))
+   `(org-level-7 ((,class (:foreground ,red))))
+   `(org-level-8 ((,class (:foreground ,blue))))
+   `(org-link ((,class (:foreground ,yellow :underline t))))
+   `(org-scheduled ((,class (:foreground ,green))))
+   `(org-scheduled-previously ((,class (:foreground ,red))))
+   `(org-scheduled-today ((,class (:foreground ,blue))))
+   `(org-special-keyword ((,class (:foreground ,yellow))))
+   `(org-table ((,class (:foreground ,green))))
+   `(org-tag ((,class (:bold t :weight bold))))
+   `(org-time-grid ((,class (:foreground ,orange))))
+   `(org-todo ((,class (:bold t :foreground ,red :weight bold))))
+   `(org-upcoming-deadline ((,class (:inherit font-lock-keyword-face))))
+   `(org-warning ((,class (:bold t :foreground ,red :weight bold))))
+
+   ;; outline
+   `(outline-8 ((,class (:inherit default))))
+   `(outline-7 ((,class (:inherit outline-8 :height 1.0))))
+   `(outline-6 ((,class (:inherit outline-7 :height 1.0))))
+   `(outline-5 ((,class (:inherit outline-6 :height 1.0))))
+   `(outline-4 ((,class (:inherit outline-5 :height 1.0))))
+   `(outline-3 ((,class (:inherit outline-4 :height 1.0))))
+   `(outline-2 ((,class (:inherit outline-3 :height 1.0))))
+   `(outline-1 ((,class (:inherit outline-2 :height 1.0))))
+
+   ;; rainbow-delimiters
+   `(rainbow-delimiters-depth-1-face ((,class (:foreground ,cyan))))
+   `(rainbow-delimiters-depth-2-face ((,class (:foreground ,yellow))))
+   `(rainbow-delimiters-depth-3-face ((,class (:foreground ,blue))))
+   `(rainbow-delimiters-depth-4-face ((,class (:foreground ,red))))
+   `(rainbow-delimiters-depth-5-face ((,class (:foreground ,orange))))
+   `(rainbow-delimiters-depth-6-face ((,class (:foreground ,blue))))
+   `(rainbow-delimiters-depth-7-face ((,class (:foreground ,green))))
+   `(rainbow-delimiters-depth-8-face ((,class (:foreground ,red))))
+   `(rainbow-delimiters-depth-9-face ((,class (:foreground ,yellow))))
+   `(rainbow-delimiters-depth-10-face ((,class (:foreground ,green))))
+   `(rainbow-delimiters-depth-11-face ((,class (:foreground ,blue))))
+   `(rainbow-delimiters-depth-12-face ((,class (:foreground ,red))))
+
+   ;; rpm-mode
+   `(rpm-spec-dir-face ((,class (:foreground ,green))))
+   `(rpm-spec-doc-face ((,class (:foreground ,green))))
+   `(rpm-spec-ghost-face ((,class (:foreground ,red))))
+   `(rpm-spec-macro-face ((,class (:foreground ,yellow))))
+   `(rpm-spec-obsolete-tag-face ((,class (:foreground ,red))))
+   `(rpm-spec-package-face ((,class (:foreground ,red))))
+   `(rpm-spec-section-face ((,class (:foreground ,yellow))))
+   `(rpm-spec-tag-face ((,class (:foreground ,blue))))
+   `(rpm-spec-var-face ((,class (:foreground ,red))))
+
+   ;; show-paren
+   `(show-paren-mismatch ((,class (:foreground ,red :background ,solarized-bg :weight bold))))
+   `(show-paren-match ((,class (:foreground ,blue :background ,solarized-bg :weight bold))))
+
+   ;; SLIME
+   `(slime-repl-inputed-output-face ((,class (:foreground ,red))))
+
+   ;; whitespace-mode
+   `(whitespace-space ((,class (:background ,solarized-bg :foreground ,solarized-comments))))
+   `(whitespace-hspace ((,class (:background ,solarized-bg :foreground ,solarized-bg))))
+   `(whitespace-tab ((,class (:background ,solarized-bg :foreground ,red))))
+   `(whitespace-newline ((,class (:foreground ,solarized-bg))))
+   `(whitespace-trailing ((,class (:foreground ,red :background ,solarized-bg))))
+   `(whitespace-line ((,class (:background ,solarized-bg :foreground ,magenta))))
+   `(whitespace-space-before-tab ((,class (:background ,orange :foreground ,orange))))
+   `(whitespace-indentation ((,class (:background ,yellow, :foreground ,red))))
+   `(whitespace-empty ((,class (:background ,yellow :foreground ,red))))
+   `(whitespace-space-after-tab ((,class (:background ,yellow :foreground ,red))))
+
+   ;; wanderlust
+   `(wl-highlight-folder-few-face ((,class (:foreground ,red))))
+   `(wl-highlight-folder-many-face ((,class (:foreground ,red))))
+   `(wl-highlight-folder-path-face ((,class (:foreground ,orange))))
+   `(wl-highlight-folder-unread-face ((,class (:foreground ,blue))))
+   `(wl-highlight-folder-zero-face ((,class (:foreground ,solarized-fg))))
+   `(wl-highlight-folder-unknown-face ((,class (:foreground ,blue))))
+   `(wl-highlight-message-citation-header ((,class (:foreground ,red))))
+   `(wl-highlight-message-cited-text-1 ((,class (:foreground ,red))))
+   `(wl-highlight-message-cited-text-2 ((,class (:foreground ,green))))
+   `(wl-highlight-message-cited-text-3 ((,class (:foreground ,blue))))
+   `(wl-highlight-message-cited-text-4 ((,class (:foreground ,blue))))
+   `(wl-highlight-message-header-contents-face ((,class (:foreground ,green))))
+   `(wl-highlight-message-headers-face ((,class (:foreground ,red))))
+   `(wl-highlight-message-important-header-contents ((,class (:foreground ,green))))
+   `(wl-highlight-message-header-contents ((,class (:foreground ,green))))
+   `(wl-highlight-message-important-header-contents2 ((,class (:foreground ,green))))
+   `(wl-highlight-message-signature ((,class (:foreground ,green))))
+   `(wl-highlight-message-unimportant-header-contents ((,class (:foreground ,solarized-fg))))
+   `(wl-highlight-summary-answered-face ((,class (:foreground ,blue))))
+   `(wl-highlight-summary-disposed-face ((,class (:foreground ,solarized-fg
+                                                         :slant italic))))
+   `(wl-highlight-summary-new-face ((,class (:foreground ,blue))))
+   `(wl-highlight-summary-normal-face ((,class (:foreground ,solarized-fg))))
+   `(wl-highlight-summary-thread-top-face ((,class (:foreground ,yellow))))
+   `(wl-highlight-thread-indent-face ((,class (:foreground ,magenta))))
+   `(wl-highlight-summary-refiled-face ((,class (:foreground ,solarized-fg))))
+   `(wl-highlight-summary-displaying-face ((,class (:underline t :weight bold))))
+
+   ;; which-func-mode
+   `(which-func ((,class (:foreground ,green))))))
+
+ ;; some theme variables
+ (custom-theme-set-variables
+ (if (eq variant 'light) 'solarized-light 'solarized-dark)
+ '(ansi-color-names-vector [solarized-bg red green yellow
+                                        blue magenta cyan solarized-fg])))
+
+;; Local Variables:
+;; no-byte-compile: t
+;; End:
+
+(provide 'solarized-core)
+
+;;; solarized-core.el ends here.