# HG changeset patch # User locojaydev # Date 1351450286 14400 # Node ID 90bd08591da2085afd5d7963a72a01b36b0c2d43 # Parent 0883cc27f9f8e4bc88b5e5655565effb3f8f0220 adding python lime colors for import try catch ... ipython notebook colors diff -r 0883cc27f9f8 -r 90bd08591da2 contrib/badwolf-theme.el --- a/contrib/badwolf-theme.el Tue Oct 16 18:17:19 2012 -0400 +++ b/contrib/badwolf-theme.el Sun Oct 28 14:51:26 2012 -0400 @@ -33,12 +33,16 @@ (custom-theme-set-faces 'badwolf `(default ((t (:inherit nil :foreground ,bwc-plain :background ,bwc-blackestgravel)))) - ;;`(cursor ((t (:background ,bwc-tardis)))) - `(region ((t (:foreground nil :background ,bwc-darkgravel )))) + `(cursor ((t (:background ,bwc-tardis)))) + `(region ((t (:foreground nil :background ,bwc-mediumgravel )))) `(fringe ((t (:background ,bwc-blackestgravel)))) - `(highlight ((t (:background ,bwc-dalespale)))) - `(hl-line ((t (:foreground nil :background ,bwc-darkgravel)))) + `(minibuffer-prompt ((t (:foreground ,bwc-lime)))) + `(link ((t (:foreground ,bwc-lightgravel :underline t)))) + `(link-visited ((t (:inherit link :foreground ,bwc-orange)))) + + `(highlight ((t (:foreground ,bwc-coal :background ,bwc-dalespale)))) + `(hl-line ((t (:inherit nil :background ,bwc-darkgravel)))) `(linum ((t (:foreground ,bwc-mediumgravel)))) @@ -77,6 +81,18 @@ `(rainbow-delimiters-depth-10-face ((t (:foreground ,bwc-coffee)))) `(rainbow-delimiters-depth-11-face ((t (:foreground ,bwc-dirtyblonde)))) - ))) + + )) + + (custom-set-faces + `(ein:cell-input-area ((t (:background ,bwc-blackestgravel :inherit nil)))) + `(ein:cell-input-prompt ((t (:foreground ,bwc-orange :background nil :inherit nil)))) + `(ein:cell-output-prompt ((t (:foreground ,bwc-taffy :background nil :inherit nil)))) + '(mumamo-background-chunk-major ((((class color) (min-colors 88) (background dark)) nil))) + ) + + + (font-lock-add-keywords 'python-mode `(("\\<\\(import\\||from\\|except\\|finally\\|try\\|from\\|\\)\\>" 1 '(:foreground ,bwc-lime ) t))) + ) (provide-theme 'badwolf)