;;; yoshi-theme.el --- Theme named after my cat ;; Copyright (C) 2012,2013 Tom Willemsen ;; Author: Tom Willemsen ;; Keywords: faces ;; Version: 5.6.0 ;; 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 . ;;; Commentary: ;; Just a theme named after my cat. He doesn't actually look like ;; this. ;;; Code: (deftheme yoshi "Created 2012-09-24") (let ((lblack "#ededed") (mblack "#666666") (dblack "#111111") (lwhite "#bfbfbf") (mwhite "#999999") (dwhite "#404040") (lred "#bf7d7d") (dred "#402929") (lorange "#bfa47d") (dorange "#403729") (lyellow "#b2bf7d") (dyellow "#3b4029") (lgreen "#8abf6d") (dgreen "#2d4029") (lturquoise "#7dbf97") (dturquoise "#294032") (lcyan "#7dbfbf") (dcyan "#294040") (lblue "#6d97bf") (dblue "#293240") (lpurple "#8a7dbf") (dpurple "#2d2940") (lmagenta "#b27dbf") (dmagenta "#3b2940") (lpink "#bf6da4") (dpink "#402937")) (custom-theme-set-faces 'yoshi `(compilation-info ((t (:foreground ,lblue :inherit unspecified)))) `(cursor ((t (:background ,mwhite)))) `(default ((t (:background ,dblack :foreground ,lwhite)))) `(diff-added ((t (:background ,dgreen :inherit unspecified)))) `(diff-changed ((t (:background ,dorange)))) `(diff-file-header ((t (:foreground ,lblack :background unspecified)))) `(diff-function ((t (:inherit unspecified :foreground ,lorange)))) `(diff-header ((t (:background ,dwhite)))) `(diff-hl-change ((t (:foreground ,lyellow :background unspecified :inherit diff-changed)))) `(diff-hl-delete ((t (:foreground ,lred :inherit diff-removed)))) `(diff-hl-insert ((t (:foreground ,lgreen :inherit diff-added)))) `(diff-hunk-header ((t (:inherit unspecified :weight bold)))) `(diff-indicator-added ((t (:foreground ,lgreen :weight bold :inherit unspecified)))) `(diff-indicator-changed ((t (:foreground ,lyellow :weight bold :inherit unspecified )))) `(diff-indicator-removed ((t (:foreground ,lred :weight bold :inherit unspecified)))) `(diff-refine-added ((t (:foreground ,lgreen :background unspecified :inherit unspecified)))) `(diff-refine-change ((t (:foreground ,lyellow :background unspecified)))) `(diff-refine-removed ((t (:foreground ,lred :background unspecified :inherit unspecified)))) `(diff-removed ((t (:background ,dred :inherit unspecified)))) `(erc-current-nick-face ((t (:foreground ,lred :weight bold)))) `(erc-input-face ((t (:inherit shadow)))) `(erc-my-nick-face ((t (:inherit erc-current-nick-face)))) `(erc-notice-face ((t (:foreground ,lblue :weight normal)))) `(erc-prompt-face ((t (:foreground ,lblack :weight bold)))) `(erc-timestamp-face ((t (:foreground ,mwhite :weight normal)))) `(error ((t (:foreground ,lred :weight unspecified)))) `(flycheck-error-face ((t (:inherit unspecified :underline (:color ,lred :style wave))))) `(flycheck-warning-face ((t (:inherit unspecified :underline (:color ,lorange :style wave))))) `(flymake-errline ((t (:background unspecified :underline (:color ,lred :style wave))))) `(flymake-infoline ((t (:background unspecified :underline (:color ,lblue :style wave))))) `(flymake-warnline ((t (:background unspecified :underline (:color ,lorange :style wave))))) `(flyspell-duplicate ((t (:inherit unspecified :underline (:color ,lorange :style wave))))) `(flyspell-incorrect ((t (:inherit unspecified :underline (:color ,lred :style wave))))) `(font-lock-builtin-face ((t (:foreground ,lcyan)))) `(font-lock-comment-delimiter-face ((t (:foreground ,mwhite :weight bold :inherit unspecified)))) `(font-lock-comment-face ((t (:foreground ,mwhite :slant italic)))) `(font-lock-constant-face ((t (:foreground ,lred)))) `(font-lock-doc-face ((t (:foreground ,mwhite :inherit unspecified)))) `(font-lock-function-name-face ((t (:foreground ,lpurple)))) `(font-lock-keyword-face ((t (:foreground ,lyellow)))) `(font-lock-negation-char-face ((t (:foreground ,lred)))) `(font-lock-regexp-grouping-backslash ((t (:foreground ,lred)))) `(font-lock-regexp-grouping-construct ((t (:foreground ,lpink)))) `(font-lock-string-face ((t (:foreground ,lturquoise)))) `(font-lock-type-face ((t (:foreground ,lorange)))) `(font-lock-variable-name-face ((t (:foreground ,lblue)))) `(font-lock-warning-face ((t (:underline (:color ,lorange) :inherit unspecified)))) `(fringe ((t (:background unspecified :inherit default)))) `(gnus-button ((t (:weight bold)))) `(gnus-cite-1 ((t (:foreground ,lred)))) `(gnus-cite-10 ((t (:foreground ,lpink)))) `(gnus-cite-11 ((t (:foreground ,lblack)))) `(gnus-cite-2 ((t (:foreground ,lorange)))) `(gnus-cite-3 ((t (:foreground ,lyellow)))) `(gnus-cite-4 ((t (:foreground ,lgreen)))) `(gnus-cite-5 ((t (:foreground ,lturquoise)))) `(gnus-cite-6 ((t (:foreground ,lcyan)))) `(gnus-cite-7 ((t (:foreground ,lblue)))) `(gnus-cite-8 ((t (:foreground ,lpurple)))) `(gnus-cite-9 ((t (:foreground ,lmagenta)))) `(gnus-header-content ((t (:foreground ,mwhite :slant italic)))) `(gnus-header-from ((t (:weight bold)))) `(gnus-header-name ((t (:foreground ,lblue :weight bold)))) `(gnus-header-newsgroups ((t (:foreground ,lblack :weight bold)))) `(gnus-header-subject ((t (:foreground ,lyellow)))) `(gnus-signature ((t (:foreground ,mblack :slant italic)))) `(gnus-splash ((t (:foreground ,lwhite)))) `(gnus-summary-cancelled ((t (:foreground ,lyellow :background ,dwhite)))) `(gnus-summary-high-ancient ((t (:inherit gnus-summary-normal-ancient :weight bold)))) `(gnus-summary-high-read ((t (:inherit gnus-summary-normal-read :weight bold)))) `(gnus-summary-high-ticked ((t (:inherit gnus-summary-normal-ticked :weight bold)))) `(gnus-summary-high-unread ((t (:inherit gnus-summary-normal-unread :weight bold)))) `(gnus-summary-low-ancient ((t (:inherit gnus-summary-normal-ancient :slant italic)))) `(gnus-summary-low-read ((t (:inherit gnus-summary-normal-read :slant italic)))) `(gnus-summary-low-ticked ((t (:inherit gnus-summary-normal-ticked :slant italic)))) `(gnus-summary-low-unread ((t (:inherit gnus-summary-normal-unread :slant italic)))) `(gnus-summary-normal-ancient ((t (:foreground ,lcyan)))) `(gnus-summary-normal-read ((t (:foreground ,lgreen)))) `(gnus-summary-normal-ticked ((t (:foreground ,lred)))) `(gnus-summary-normal-unread ((t (:foreground ,lblack)))) `(gnus-summary-selected ((t (:background ,dblue :weight bold)))) `(highlight ((t (:background ,dwhite )))) `(highlight-80+ ((t (:underline (:color ,lred :style wave) :background unspecified)))) `(identica-stripe-face ((t (:background ,dwhite)))) `(identica-uri-face ((t (:foreground ,lorange :underline t)))) `(identica-username-face ((t (:foreground ,lblue :weight bold :underline unspecified)))) `(ido-subdir ((t (:foreground ,lred)))) `(italic ((t (:slant italic)))) `(jabber-activity-face ((t (:foreground ,lred :weight unspecified)))) `(jabber-activity-personal-face ((t (:foreground ,lblue :weight unspecified)))) `(jabber-chat-error ((t (:foreground ,lred :weight bold)))) `(jabber-chat-prompt-foreign ((t (:foreground ,lred :slant italic)))) `(jabber-chat-prompt-local ((t (:foreground ,lblue :slant italic)))) `(jabber-chat-prompt-system ((t (:foreground ,lgreen :slant italic)))) `(jabber-rare-time-face ((t (:foreground ,lwhite :underline t)))) `(jabber-roster-user-away ((t (:foreground ,lgreen :slant italic)))) `(jabber-roster-user-chatty ((t (:foreground ,lpink)))) `(jabber-roster-user-dnd ((t (:foreground ,lred :weight unspecified :slant unspecified)))) `(jabber-roster-user-error ((t (:foreground ,lred :slant unspecified :weight bold)))) `(jabber-roster-user-offline ((t (:foreground ,mwhite :slant italic)))) `(jabber-roster-user-online ((t (:foreground ,lblue)))) `(jabber-roster-user-xa ((t (:foreground ,lmagenta)))) `(isearch ((t (:background ,dyellow :foreground unspecified)))) `(isearch-fail ((t (:background ,dred)))) `(js2-external-variable ((t (:foreground ,lmagenta)))) `(link ((t (:foreground ,lorange :underline t)))) `(link-visited ((t (:foreground ,lmagenta :underline t)))) `(magit-branch ((t (:foreground ,lpink :weight bold :inherit unspecified)))) `(magit-item-highlight ((t (:slant italic :inherit unspecified)))) `(magit-log-sha1 ((t (:foreground ,lmagenta)))) `(magit-section-title ((t (:foreground ,lturquoise :inherit unspecified)))) `(markdown-header-face-1 ((t (:inherit org-level-1)))) `(markdown-header-face-2 ((t (:inherit org-level-2)))) `(markdown-header-face-3 ((t (:inherit org-level-3)))) `(markdown-header-face-4 ((t (:inherit org-level-4)))) `(markdown-header-face-5 ((t (:inherit org-level-5)))) `(markdown-header-face-6 ((t (:inherit org-level-6)))) `(message-header-cc ((t (:foreground ,mwhite)))) `(message-header-name ((t (:inherit gnus-header-name)))) `(message-header-newsgroups ((t (:foreground ,mwhite :weight bold)))) `(message-header-other ((t (:inherit gnus-header-content)))) `(message-header-subject ((t (:inherit gnus-header-subject)))) `(message-header-to ((t (:foreground ,mwhite :weight bold)))) `(message-header-xheader ((t (:foreground ,mblack)))) `(message-mml ((t (:foreground ,lgreen)))) `(message-separator ((t (:foreground ,lblue)))) `(minibuffer-prompt ((t (:foreground ,lblue)))) `(mode-line ((t (:background ,dblue :foreground ,lblack :box (:color ,dwhite :line-width 1 :style nil))))) `(mode-line-buffer-id ((t (:foreground ,lpurple :weight bold)))) `(mode-line-inactive ((t (:weight normal :background ,dwhite :foreground ,lwhite :box (:color ,dwhite :line-width 1 :style nil) :inherit unspecified)))) `(org-agenda-calendar-sexp ((t (:foreground ,lyellow)))) `(org-agenda-current-time ((t (:foreground ,lorange :weight bold)))) `(org-agenda-date ((t (:foreground ,dcyan)))) `(org-agenda-date-today ((t (:foreground ,lcyan :slant italic)))) `(org-agenda-date-weekend ((t (:foreground ,lcyan)))) `(org-agenda-structure ((t (:foreground ,lblue)))) `(org-checkbox-statistics-done ((t (:foreground ,dcyan)))) `(org-checkbox-statistics-todo ((t (:foreground ,lcyan)))) `(org-date ((t (:foreground ,lpink :underline unspecified)))) `(org-document-title ((t (:foreground ,lorange :height 1.5)))) `(org-headline-done ((t (:foreground ,lblack :strike-through t)))) `(org-level-1 ((t (:foreground ,lred)))) `(org-level-2 ((t (:foreground ,lorange)))) `(org-level-3 ((t (:foreground ,lyellow)))) `(org-level-4 ((t (:foreground ,lgreen)))) `(org-level-5 ((t (:foreground ,lturquoise)))) `(org-level-6 ((t (:foreground ,lcyan)))) `(org-level-7 ((t (:foreground ,lblue)))) `(org-level-8 ((t (:foreground ,lpurple)))) `(org-scheduled ((t (:foreground ,dorange)))) `(org-scheduled-previously ((t (:foreground ,lred :bold t)))) `(org-scheduled-today ((t (:foreground ,lorange :slant italic)))) `(org-time-grid ((t (:foreground ,lorange)))) `(outline-1 ((t (:inherit org-level-1)))) `(outline-2 ((t (:inherit org-level-2)))) `(outline-3 ((t (:inherit org-level-3)))) `(outline-4 ((t (:inherit org-level-4)))) `(outline-5 ((t (:inherit org-level-5)))) `(outline-6 ((t (:inherit org-level-6)))) `(outline-7 ((t (:inherit org-level-7)))) `(outline-8 ((t (:inherit org-level-8)))) `(pp^L-highlight ((t (:box unspecified :foreground ,lblack)))) `(rainbow-delimiters-depth-1-face ((t (:foreground ,lred)))) `(rainbow-delimiters-depth-10-face ((t (:foreground ,lpink)))) `(rainbow-delimiters-depth-2-face ((t (:foreground ,lorange)))) `(rainbow-delimiters-depth-3-face ((t (:foreground ,lyellow)))) `(rainbow-delimiters-depth-4-face ((t (:foreground ,lgreen)))) `(rainbow-delimiters-depth-5-face ((t (:foreground ,lturquoise)))) `(rainbow-delimiters-depth-6-face ((t (:foreground ,lcyan)))) `(rainbow-delimiters-depth-7-face ((t (:foreground ,lblue)))) `(rainbow-delimiters-depth-8-face ((t (:foreground ,lpurple)))) `(rainbow-delimiters-depth-9-face ((t (:foreground ,lmagenta)))) `(rainbow-delimiters-unmatched-face ((t (:background ,dred :foreground unspecified)))) `(rebase-mode-description-face ((t (:foreground ,lblack)))) `(region ((t (:background ,dblue)))) `(rst-level-1 ((t (:background unspecified)))) `(rst-level-2 ((t (:background unspecified)))) `(rst-level-3 ((t (:background unspecified)))) `(rst-level-4 ((t (:background unspecified)))) `(rst-level-5 ((t (:background unspecified)))) `(rst-level-6 ((t (:background unspecified)))) `(sh-heredoc ((t (:foreground ,lorange)))) `(shadow ((t (:foreground ,mwhite)))) `(show-paren-match ((t (:background ,dwhite :weight bold)))) `(show-paren-mismatch ((t (:background unspecified :foreground ,lred)))) `(slime-repl-input-face ((t (:foreground ,lblack)))) `(slime-repl-inputed-output-face ((t (:foreground ,lblack)))) `(slime-repl-output-face ((t (:foreground ,lwhite)))) `(slime-repl-prompt-face ((t (:foreground ,lblue)))) `(success ((t (:foreground ,lgreen :weight bold)))) `(term-color-black ((t (:background ,dblack :foreground ,lblack)))) `(term-color-blue ((t (:background ,dblue :foreground ,lblue)))) `(term-color-cyan ((t (:background ,dcyan :foreground ,lcyan)))) `(term-color-green ((t (:background ,dgreen :foreground ,lgreen)))) `(term-color-magenta ((t (:background ,dmagenta :foreground ,lmagenta)))) `(term-color-red ((t (:background ,dred :foreground ,lred)))) `(term-color-white ((t (:background ,dwhite :foreground ,lwhite)))) `(term-color-yellow ((t (:background ,dyellow :foreground ,lyellow)))) `(texinfo-heading ((t (:foreground ,lpink :inherit unspecified :height 1.3)))) `(which-func ((t (:foreground ,lblue)))) ) (custom-theme-set-variables 'yoshi '(rainbow-delimiters-max-face-count 10) `(fci-rule-color ,dred)) ;;;###autoload (and load-file-name (boundp 'custom-theme-load-path) (add-to-list 'custom-theme-load-path (file-name-as-directory (file-name-directory load-file-name))))) (provide-theme 'yoshi) ;;; yoshi-theme.el ends here ;; Local Variables: ;; eval: (rainbow-mode 1) ;; End: