--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/colors/badwolf.vim Sat Feb 04 01:34:10 2012 -0500
@@ -0,0 +1,359 @@
+" _ _ _ __
+" | |__ __ _ __| | __ _____ | |/ _|
+" | '_ \ / _` |/ _` | \ \ /\ / / _ \| | |_
+" | |_) | (_| | (_| | \ V V / (_) | | _|
+" |_.__/ \__,_|\__,_| \_/\_/ \___/|_|_|
+"
+" I am the Bad Wolf. I create myself.
+" I take the words. I scatter them in time and space.
+" A message to lead myself here.
+"
+" A Vim colorscheme pieced together by Steve Losh.
+" Available at http://stevelosh.com/projects/badwolf/
+"
+" Why? {{{
+"
+" After using Molokai for quite a long time, I started longing for
+" a replacement.
+"
+" I love Molokai's high contrast and gooey, saturated tones, but it can be
+" a little inconsistent at times.
+"
+" Also it's winter here in Rochester, so I wanted a color scheme that's a bit
+" warmer. A little less blue and a bit more red.
+"
+" And so Bad Wolf was born. I'm no designer, but designers have been scattering
+" beautiful colors through time and space long before I came along. I took
+" advantage of that and reused some of my favorites to lead me to this scheme.
+"
+" }}}
+
+" Preamble {{{
+
+set background=dark
+
+" hi clear
+
+if exists("syntax_on")
+ syntax reset
+endif
+
+let colors_name = "badwolf"
+
+" }}}
+
+" Palette {{{
+
+let s:bwc = {}
+
+" The most basic of all our colors is a slightly tweaked version of the Molokai
+" Normal text.
+let s:bwc.plain = 'f8f6f2'
+
+" Pure and simple.
+let s:bwc.snow = 'ffffff'
+let s:bwc.coal = '000000'
+
+" All of the Gravel colors are based on a brown from Clouds Midnight.
+let s:bwc.brightgravel = 'd9cec3'
+let s:bwc.lightgravel = '998f84'
+let s:bwc.gravel = '857f78'
+let s:bwc.mediumgravel = '666462'
+let s:bwc.deepgravel = '45413b'
+let s:bwc.deepergravel = '35322d'
+let s:bwc.darkgravel = '242321'
+let s:bwc.blackgravel = '1c1b1a'
+
+" A color sampled from a highlight in a photo of a glass of Dale's Pale Ale on
+" my desk.
+let s:bwc.dalespale = 'fade3e'
+
+" A beautiful tan from Tomorrow Night.
+let s:bwc.dirtyblonde = 'f4cf86'
+
+" Delicious, chewy red from Made of Code for the poppiest highlights.
+let s:bwc.taffy = 'ff2c4b'
+
+" The star of the show comes straight from Made of Code.
+let s:bwc.tardis = '0a9dff'
+
+" This one's from Mustang, not Florida!
+let s:bwc.orange = 'ffa724'
+
+" A limier version of Mustang's horsefood, to ward off scurvy.
+" It actually turned out pretty close to Molokai's green. Huh.
+let s:bwc.lime = 'a1e022'
+
+" Rose's dress in The Idiot's Lantern.
+let s:bwc.dress = 'ff99b3'
+
+" A slightly brightened up version of Tomorrow Night's Aqua color.
+let s:bwc.plankton = '4fe0c3'
+
+" Saturated gravel (originally from Clouds Midnight).
+let s:bwc.mud = 'ff6b40'
+let s:bwc.mud = 'b38650'
+
+" }}}
+
+" Highlighting Function {{{
+function! HL(group, fg, ...)
+ " Arguments: group, guifg, guibg, gui, guisp
+
+ let histring = 'hi ' . a:group . ' '
+
+ if strlen(a:fg)
+ if a:fg == 'fg'
+ let histring .= 'guifg=fg '
+ else
+ let histring .= 'guifg=#' . get(s:bwc, a:fg, '') . ' '
+ endif
+ endif
+
+ if a:0 >= 1 && strlen(a:1)
+ if a:1 == 'bg'
+ let histring .= 'guibg=bg '
+ else
+ let histring .= 'guibg=#' . get(s:bwc, a:1, '') . ' '
+ endif
+ endif
+
+ if a:0 >= 2 && strlen(a:2)
+ let histring .= 'gui=' . a:2 . ' '
+ endif
+
+ if a:0 >= 3 && strlen(a:3)
+ let histring .= 'guisp=#' . get(s:bwc, a:3, '') . ' '
+ endif
+
+ " echom histring
+
+ execute histring
+endfunction
+" }}}
+
+" General {{{
+
+call HL('Normal', 'plain', 'blackgravel')
+
+call HL('LineNr', 'mediumgravel', 'bg')
+call HL('Folded', 'mediumgravel', 'bg', 'none')
+
+call HL('VertSplit', 'lightgravel', 'bg', 'none')
+
+call HL('CursorLine', '', 'darkgravel')
+call HL('CursorColumn', '', 'darkgravel')
+call HL('ColorColumn', '', 'darkgravel')
+
+call HL('MatchParen', 'dalespale', 'bg', 'bold')
+
+call HL('NonText', 'deepgravel', 'bg')
+call HL('SpecialKey', 'deepgravel', 'bg')
+
+call HL('Visual', '', 'deepgravel')
+call HL('VisualNOS', '', 'deepgravel')
+
+call HL('Search', 'coal', 'dalespale', 'bold')
+call HL('IncSearch', 'coal', 'tardis', 'bold')
+
+call HL('SignColumn', '', 'blackgravel')
+
+call HL('Underlined', 'fg', '', 'underline')
+
+call HL('StatusLine', 'coal', 'tardis', 'bold')
+call HL('StatusLineNC', 'snow', 'deepgravel', 'bold')
+
+" " }}}
+" Cursor {{{
+
+call HL('Cursor', 'coal', 'tardis', 'bold')
+call HL('vCursor', 'coal', 'tardis', 'bold')
+call HL('iCursor', 'coal', 'tardis', 'none')
+
+" }}}
+" Syntax highlighting {{{
+
+call HL('Special', 'plain')
+
+call HL('Comment', 'gravel')
+call HL('Todo', 'snow', 'bg', 'bold')
+
+call HL('String', 'dirtyblonde')
+call HL('Statement', 'taffy', '', 'bold')
+call HL('Operator', 'taffy', '', 'none')
+
+call HL('Identifier', 'orange', '', 'none')
+
+call HL('PreProc', 'lime', '', 'none')
+
+call HL('Constant', 'dress', '', 'bold')
+call HL('Character', 'dress', '', 'bold')
+call HL('Boolean', 'dress', '', 'bold')
+
+call HL('Number', 'mud', '', 'bold')
+call HL('Float', 'mud', '', 'bold')
+
+call HL('Type', 'dress', '', 'none')
+
+" hi Error guifg=#960050 guibg=#1E0010
+" hi Keyword guifg=#ff3853
+" hi Conditional guifg=#F92672 gui=bold
+" hi Debug guifg=#BCA3A3 gui=bold
+" hi Define guifg=#66D9EF
+" hi Delimiter guifg=#8F8F8F
+" hi Exception guifg=#A6E22E gui=bold
+" hi Function guifg=#ffffff gui=bold ctermfg=255
+" hi Ignore guifg=#808080 guibg=bg
+" hi Label guifg=#E6DB74 gui=none
+" hi Macro guifg=#C4BE89 gui=italic
+" hi PreCondit guifg=#A6E22E gui=bold
+
+" }}}
+" Interesting Words {{{
+
+" These are only used if you're me or have copied the <leader>hNUM mappings
+" from my Vimrc.
+hi InterestingWord1 guifg=#000000 guibg=#FFA700
+hi InterestingWord2 guifg=#000000 guibg=#53FF00
+hi InterestingWord3 guifg=#000000 guibg=#FF74F8
+
+" }}}
+" EasyMotion {{{
+
+call HL('EasyMotionTarget', 'tardis', 'bg', 'bold')
+call HL('EasyMotionShade', 'deepgravel', 'bg')
+
+" }}}
+" Filetype-specific {{{
+
+" Python {{{
+hi def link pythonOperator Operator
+call HL('pythonBuiltin', 'dress')
+call HL('pythonEscape', 'dress')
+call HL('pythonException', 'lime', '', 'bold')
+call HL('pythonExceptions', 'lime', '', 'none')
+" }}}
+" HTML {{{
+call HL('htmlTagName', 'taffy', '', 'bold')
+call HL('htmlLink', 'lightgravel', '', 'underline')
+" hi htmlTag guifg=#947b5b
+" hi htmlTagName guifg=#ff3853 gui=bold
+" hi htmlArg guifg=#c0a7c7
+" hi htmlString guifg=#e6db74
+" }}}
+" Django Templates {{{
+call HL('djangoArgument', 'dirtyblonde', '',)
+call HL('djangoTagBlock', 'lime', '')
+" hi djangoStatement guifg=#ff3853 gui=bold
+" hi djangoVarBlock guifg=#f4cf86
+" }}}
+" Clojure {{{
+call HL('clojureSpecial', 'taffy', '', '')
+call HL('clojureDefn', 'taffy', '', '')
+call HL('clojureDefine', 'taffy', '', '')
+call HL('clojureMacro', 'taffy', '', '')
+call HL('clojureCond', 'taffy', '', '')
+
+call HL('clojureKeyword', 'orange', '', 'none')
+
+call HL('clojureFunc', 'dress', '', 'none')
+call HL('clojureRepeat', 'dress', '', 'none')
+
+call HL('clojureParen0', 'lightgravel', '', 'none')
+
+call HL('clojureAnonArg', 'snow', '', 'bold')
+" }}}
+" Markdown {{{
+call HL('markdownHeadingRule', 'lightgravel', '', 'bold')
+call HL('markdownHeadingDelimiter', 'lightgravel', '', 'bold')
+call HL('markdownOrderedListMarker', 'lightgravel', '', 'bold')
+call HL('markdownListMarker', 'lightgravel', '', 'bold')
+call HL('markdownH1', 'orange', '', 'bold')
+call HL('markdownH2', 'lime', '', 'bold')
+call HL('markdownH3', 'lime', '', 'none')
+call HL('markdownH4', 'lime', '', 'none')
+call HL('markdownH5', 'lime', '', 'none')
+call HL('markdownH6', 'lime', '', 'none')
+call HL('markdownLinkText', 'plankton', '', 'underline')
+call HL('markdownIdDeclaration', 'plankton')
+call HL('markdownAutomaticLink', 'plankton', '', 'bold')
+call HL('markdownUrl', 'plankton', '', 'bold')
+call HL('markdownUrldelimiter', 'lightgravel', '', 'bold')
+call HL('markdownLinkDelimiter', 'lightgravel', '', 'bold')
+call HL('markdownLinkTextDelimiter', 'lightgravel', '', 'bold')
+call HL('markdownCodeDelimiter', 'lightgravel', '', 'bold')
+call HL('markdownCode', 'dirtyblonde', '', 'none')
+" }}}
+" Vim {{{
+call HL('VimCommentTitle', 'lightgravel', '', 'bold')
+
+call HL('VimMapMod', 'dress', '', 'none')
+call HL('VimMapModKey', 'dress', '', 'none')
+call HL('VimNotation', 'dress', '', 'none')
+call HL('VimBracket', 'dress', '', 'none')
+" }}}
+
+" }}}
+" Completion Menu {{{
+
+call HL('Pmenu', 'plain', 'deepergravel')
+call HL('PmenuSel', 'coal', 'tardis', 'bold')
+call HL('PmenuSbar', '', 'deepergravel')
+call HL('PmenuThumb', 'brightgravel')
+
+" }}}
+" Makegreen {{{
+
+" hi GreenBar term=reverse ctermfg=white ctermbg=green guifg=coal guibg=#9edf1c
+" hi RedBar term=reverse ctermfg=white ctermbg=red guifg=white guibg=#C50048
+
+" }}}
+" Diffs {{{
+
+" hi DiffAdd guibg=#1e4313
+" hi DiffChange guifg=#89807D guibg=#322F2D
+" hi DiffDelete guifg=#ff0088 guibg=#1B1E1F
+" hi DiffText guibg=#4A4340 gui=italic,bold
+
+" }}}
+" Spelling {{{
+
+if has("spell")
+ call HL('SpellCap', 'dalespale', '', 'undercurl,bold', 'dalespale')
+ call HL('SpellBad', '', '', 'undercurl', 'dalespale')
+ call HL('SpellLocal', '', '', 'undercurl', 'dalespale')
+ call HL('SpellRare', '', '', 'undercurl', 'dalespale')
+endif
+
+" }}}
+
+" Other {{{
+
+call HL('Directory', 'dirtyblonde', '', 'bold')
+
+call HL('Title', 'lime')
+
+" hi Repeat guifg=#F92672 gui=bold
+" hi Question guifg=#66D9EF
+" hi SpecialKey guifg=#66D9EF gui=italic
+" hi ErrorMsg guifg=#F92672 guibg=#232526 gui=bold
+" hi ModeMsg guifg=#E6DB74
+" hi MoreMsg guifg=#E6DB74
+
+" hi IndentGuides guibg=#373737
+" hi SpecialChar guifg=#F92672 gui=bold
+" hi SpecialChar guifg=#F92672 gui=bold
+" hi SpecialComment guifg=#465457 gui=bold
+" hi Special guifg=#66D9EF guibg=bg gui=italic
+" hi SpecialKey guifg=#888A85 gui=italic
+" hi Statement guifg=#F92672 gui=bold
+" hi StatusLine guifg=#262626 guibg=fg
+" hi StatusLineNC guifg=#262626 guibg=#080808
+" hi StorageClass guifg=#FD971F gui=italic
+" hi Structure guifg=#66D9EF
+" hi Tag guifg=#F92672 gui=italic
+" hi Title guifg=#ef5939
+" hi WarningMsg guifg=#FFFFFF guibg=#333333 gui=bold
+" hi WildMenu guifg=#66D9EF guibg=#000000
+" }}}
+