aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-04-30 23:19:18 +0200
committerGravatar Tom Willemse2013-04-30 23:19:18 +0200
commite911da9d55c1c0e18be9b6b6a3a97c5227abdeaa (patch)
treefd835524a4534fdb65cb21f73c7a9b6701c87d08
downloadmisty-theme-e911da9d55c1c0e18be9b6b6a3a97c5227abdeaa.tar.gz
misty-theme-e911da9d55c1c0e18be9b6b6a3a97c5227abdeaa.zip
Initial commitHEADmaster
-rw-r--r--.gitignore1
-rw-r--r--README.org10
-rw-r--r--misty-theme.el269
3 files changed, 280 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c531d98
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.elc
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..23ce786
--- /dev/null
+++ b/README.org
@@ -0,0 +1,10 @@
+* Misty theme
+
+ My cat is named Misty and I was just working on a random new theme,
+ which was =new-theme= for a while. I couldn't think of a name so I
+ named it after her.
+
+** Installation
+
+ To install place it somewhere in your ~custom-theme-load-path~ and
+ then ~load-theme~.
diff --git a/misty-theme.el b/misty-theme.el
new file mode 100644
index 0000000..56cb5e1
--- /dev/null
+++ b/misty-theme.el
@@ -0,0 +1,269 @@
+;;; misty-theme.el --- Theme named after my cat
+
+;; Copyright (C) 2012,2013 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: faces
+;; Version: 5.5.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:
+
+;; Just a theme named after my cat. She doesn't actually look like
+;; this.
+
+;;; Code:
+
+(deftheme misty
+ "Created 2012-09-24")
+
+(let ((lblack "#111111") (dblack "#ededed")
+ (lwhite "#404040") (dwhite "#bfbfbf")
+ (lred "#805353") (dred "#bf7d7d")
+ (lorange "#806d53") (dorange "#bfa47d")
+ (lyellow "#778053") (dyellow "#b2bf7d")
+ (lgreen "#638053") (dgreen "#8abf6d")
+ (lturquoise "#538065") (dturquoise "#7dbf97")
+ (lcyan "#538080") (dcyan "#7dbfbf")
+ (lblue "#536a80") (dblue "#6d97bf")
+ (lpurple "#5c5380") (dpurple "#8a7dbf")
+ (lmagenta "#775380") (dmagenta "#b27dbf")
+ (lpink "#805371") (dpink "#bf6da4"))
+ (custom-theme-set-faces
+ 'misty
+
+ `(compilation-info ((t (:foreground ,lblue :inherit unspecified))))
+ `(cursor ((t (:background ,lwhite))))
+ `(default ((t (:background ,dwhite :foreground ,lblack))))
+ `(diff-added ((t (:background ,dgreen :inherit unspecified))))
+ `(diff-changed ((t (:background ,dyellow))))
+ `(diff-file-header ((t (:foreground ,lblue :background unspecified :weight bold))))
+ `(diff-function ((t (:slant italic :inherit unspecified :foreground ,lpurple))))
+ `(diff-header ((t (:background unspecified :foreground ,lcyan))))
+ `(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 (:foreground ,lturquoise :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))))
+ `(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 ,lmagenta :weight bold :inherit unspecified))))
+ `(font-lock-comment-face ((t (:foreground ,lmagenta :slant italic))))
+ `(font-lock-constant-face ((t (:foreground ,lred))))
+ `(font-lock-doc-face ((t (:foreground ,lgreen :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 (:foreground ,lwhite :background ,dblue :box (:line-width 2 :color ,dblue :style released-button)))))
+ `(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-emphasis-highlight-words ((t (:foreground ,lblack :background ,dyellow))))
+ `(gnus-group-mail-1 ((t (:foreground ,lblack :weight bold))))
+ `(gnus-group-mail-1-empty ((t (:foreground ,lblack))))
+ `(gnus-group-mail-2 ((t (:foreground ,lblack :weight bold))))
+ `(gnus-group-mail-2-empty ((t (:foreground ,lblack))))
+ `(gnus-group-mail-3 ((t (:foreground ,lblack :weight bold))))
+ `(gnus-group-mail-3-empty ((t (:foreground ,lblack))))
+ `(gnus-group-mail-low ((t (:foreground ,lblack :weight bold))))
+ `(gnus-group-mail-low-empty ((t (:foreground ,lblack))))
+ `(gnus-group-news-1 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-1-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-2 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-2-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-3 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-3-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-4 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-4-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-5 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-5-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-6 ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-6-empty ((t (:foreground ,lwhite))))
+ `(gnus-group-news-low ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-group-news-low-empty ((t (:foreground ,lwhite))))
+ `(gnus-header-content ((t (:foreground ,lblack :slant italic))))
+ `(gnus-header-name ((t (:foreground ,lpurple))))
+ `(gnus-header-subject ((t (:foreground ,lred))))
+ `(gnus-signature ((t (:foreground ,lblack :slant normal))))
+ `(gnus-splash ((t (:foreground ,lwhite))))
+ `(gnus-summary-cancelled ((t (:foreground ,lblack :background unspecified :strike-through ,lblack))))
+ `(gnus-summary-high-ancient ((t (:foreground ,lyellow :weight bold))))
+ `(gnus-summary-high-read ((t (:foreground ,lwhite :weight bold))))
+ `(gnus-summary-high-ticked ((t (:foreground ,lblue :weight bold))))
+ `(gnus-summary-high-undownloaded ((t (:foreground ,lred :weight bold))))
+ `(gnus-summary-high-unread ((t (:foreground ,lblack :weight bold))))
+ `(gnus-summary-low-ancient ((t (:foreground ,lyellow :slant italic))))
+ `(gnus-summary-low-read ((t (:foreground ,lwhite :slant italic))))
+ `(gnus-summary-low-ticked ((t (:foreground ,lblue :slant italic))))
+ `(gnus-summary-low-undownloaded ((t (:foreground ,lred :slant italic))))
+ `(gnus-summary-low-unread ((t (:foreground ,lblack :slant italic))))
+ `(gnus-summary-normal-ancient ((t (:foreground ,lyellow))))
+ `(gnus-summary-normal-read ((t (:foreground ,lwhite))))
+ `(gnus-summary-normal-ticked ((t (:foreground ,lblue))))
+ `(gnus-summary-normal-undownloaded ((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-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-error ((t (:foreground ,lred :slant italic))))
+ `(jabber-roster-user-offline ((t (:foreground ,lblack :slant italic))))
+ `(jabber-roster-user-online ((t (:foreground ,lblue))))
+ `(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))))
+ `(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 ,dblack :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 ,dwhite))))
+ `(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
+ 'misty
+ '(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 'misty)
+;;; misty-theme.el ends here
+
+;; Local Variables:
+;; eval: (rainbow-mode 1)
+;; End: