Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
First commit
  • Loading branch information
wfarr committed Sep 26, 2008
0 parents commit ddd9521
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions color-theme-tango-2.el
@@ -0,0 +1,63 @@
(defun color-theme-tango-2 ()
"A color theme based on Tango Palette."
(interactive)
(color-theme-install
'(color-theme-tango-2
((background-color . "#111111")
(background-mode . dark)
(border-color . "#888a85")
(cursor-color . "#d3d7cf")
(foreground-color . "#eeeeec")
(mouse-color . "#eeeeec"))

((help-highlight-face . underline)
(ibuffer-dired-buffer-face . font-lock-function-name-face)
(ibuffer-help-buffer-face . font-lock-comment-face)
(ibuffer-hidden-buffer-face . font-lock-warning-face)
(ibuffer-occur-match-face . font-lock-warning-face)
(ibuffer-read-only-buffer-face . font-lock-type-face)
(ibuffer-special-buffer-face . font-lock-keyword-face)
(ibuffer-title-face . font-lock-type-face))

(font-lock-builtin-face ((t (:foreground "#729fcf"))))
(font-lock-comment-face ((t (:foreground "#888a85"))))
(font-lock-constant-face ((t (:foreground "#ad7fa8"))))
(font-lock-doc-face ((t (:foreground "#888a85"))))
(font-lock-function-name-face ((t (:foreground "#729fcf"))))
(font-lock-keyword-face ((t (:foreground "#fcaf3e"))))
(font-lock-string-face ((t (:foreground "#73d216"))))
(font-lock-type-face ((t (:foreground "#c17d11"))))
(font-lock-variable-name-face ((t (:foreground "#fce94f"))))
(font-lock-warning-face ((t (:bold t :foreground "#cc0000"))))

(border ((t (:background "#888a85"))))
(fringe ((t (:background "grey10"))))
(mode-line ((t (:foreground "#eeeeec" :background "#333333"))))
(mode-line-inactive ((t (:foreground "#cccddd" :background "#222222"))))
(region ((t (:background "#555753"))))

(org-date ((t (:foreground "LightSteelBlue" :underline t))))
(org-hide ((t (:foreground "#2e3436"))))
(org-todo ((t (:inherit font-lock-keyword-face :bold t))))
(org-level-1 ((t (:inherit font-lock-function-name-face))))
(org-level-2 ((t (:inherit font-lock-variable-name-face))))
(org-level-3 ((t (:inherit font-lock-keyword-face))))
(org-level-4 ((t (:inherit font-lock-string-face))))
(org-level-5 ((t (:inherit font-lock-constant-face))))

(comint-highlight-input ((t (:italic t :bold t))))
(comint-highlight-prompt ((t (:foreground "#8ae234"))))
(isearch ((t (:background "#f57900" :foreground "#2e3436"))))
(isearch-lazy-highlight-face ((t (:foreground "#2e3436" :background "#e9b96e"))))
(paren-face-match ((t (:inherit show-paren-match-face))))
(paren-face-match-light ((t (:inherit show-paren-match-face))))
(paren-face-mismatch ((t (:inherit show-paren-mismatch-face))))
(persp-selected-face ((t (:foreground "#729fcf"))))
(show-paren-match-face ((t (:background "#729fcf" :foreground "#eeeeec"))))
(show-paren-mismatch-face ((t (:background "#ad7fa8" :foreground "#2e3436"))))
(minibuffer-prompt ((t (:foreground "#729fcf"))))
(info-xref ((t (:foreground "#729fcf"))))
(info-xref-visited ((t (:foreground "#ad7fa8"))))
)))

(provide 'color-theme-tango-2)

0 comments on commit ddd9521

Please sign in to comment.