Created
October 8, 2010 07:09
-
-
Save sofish/616458 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim colour scheme | |
" Maintainer: Georg Dahn | |
" Last Change: 26 April 2006 | |
" Version: 1.6 | |
" | |
" This color scheme has both light and dark styles with harmonic colors | |
" easy to distinguish. Terminals are not supported, therefore you should | |
" only try it if you use the GUI version of Vim. | |
" | |
" You can choose the style by adding one of the following lines to your | |
" vimrc or gvimrc file before sourcing the color scheme: | |
" | |
" let g:sienna_style = 'dark' | |
" let g:sienna_style = 'light' | |
" | |
" If none of above lines is given, the light style is choosen. | |
" | |
" You can switch between these styles by using the :Colo command, like | |
" :Colo dark or :Colo light (many thanks to Pan Shizhu). | |
if exists("g:sienna_style") | |
let s:sienna_style = g:sienna_style | |
else | |
let s:sienna_style = 'light' | |
endif | |
execute "command! -nargs=1 Colo let g:sienna_style = \"<args>\" | colo sienna" | |
if s:sienna_style == 'dark' | |
set background=dark | |
elseif s:sienna_style == 'light' | |
set background=light | |
else | |
finish | |
endif | |
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
let g:colors_name = 'sienna' | |
if s:sienna_style == 'dark' | |
hi Normal gui=none guifg=Grey85 guibg=Grey15 | |
hi Cursor guifg=Black guibg=Grey85 | |
hi LineNr gui=none guifg=#333333 guibg=#f6f6f6 | |
hi NonText gui=bold guifg=#E1F8CE guibg=#E1F8CE | |
hi SpecialKey gui=none guifg=#A91B63 | |
hi Title gui=bold guifg=Grey85 | |
hi Visual guifg=fg guibg=LightSalmon1 | |
hi FoldColumn gui=none guifg=Black guibg=Wheat3 | |
hi Folded gui=none guifg=White guibg=Wheat4 | |
hi StatusLine gui=bold guifg=Black guibg=Grey85 | |
hi StatusLineNC gui=none guifg=#f5f5f5 guibg=#AAAAAA | |
hi VertSplit gui=none guifg=White guibg=#AAAAAA | |
hi Wildmenu gui=bold guifg=White guibg=#478D13 | |
hi Pmenu guibg=Grey55 guifg=Black gui=none | |
hi PmenuSbar guibg=Grey40 guifg=fg gui=none | |
hi PmenuSel guibg=Yellow2 guifg=fg gui=none | |
hi PmenuThumb guibg=Grey80 guifg=bg gui=none | |
hi IncSearch gui=none guifg=Grey15 guibg=Grey85 | |
hi Search gui=none guifg=Black guibg=Yellow2 | |
hi MoreMsg gui=bold guifg=PaleGreen2 | |
hi Question gui=bold guifg=PaleGreen2 | |
hi WarningMsg gui=bold guifg=Red | |
hi Comment gui=italic guifg=#228B22 | |
hi Error gui=none guifg=White guibg=Red2 | |
hi Identifier gui=none guifg=LightSalmon2 | |
hi Special gui=none guifg=#A91B63 | |
hi PreProc gui=none guifg=#A91B63 | |
hi Todo gui=bold guifg=Black guibg=Yellow2 | |
hi Type gui=none guifg=#A91B63 | |
hi Underlined gui=underline guifg=DodgerBlue | |
hi Boolean gui=bold guifg=PaleGreen2 | |
hi Constant gui=none guifg=PaleGreen2 | |
hi Number gui=bold guifg=PaleGreen2 | |
hi String gui=none guifg=PaleGreen2 | |
hi Label gui=bold,underline guifg=LightSalmon2 | |
hi Statement gui=bold guifg=LightSalmon2 | |
hi htmlBold gui=bold | |
hi htmlItalic gui=italic | |
hi htmlUnderline gui=underline | |
hi htmlBoldItalic gui=bold,italic | |
hi htmlBoldUnderline gui=bold,underline | |
hi htmlBoldUnderlineItalic gui=bold,underline,italic | |
hi htmlUnderlineItalic gui=underline,italic | |
elseif s:sienna_style == 'light' | |
hi Normal gui=none guifg=Black guibg=#E1F8CE | |
hi Cursor guifg=White guibg=#478D13 | |
hi LineNr gui=none guifg=#333333 guibg=#f6f6f6 | |
hi NonText gui=bold guifg=#E1F8CE guibg=#E1F8CE | |
hi SpecialKey gui=none guifg=#A91B63 | |
hi Title gui=bold guifg=Black | |
hi Visual gui=bold guifg=Black guibg=Sienna1 | |
hi FoldColumn gui=none guifg=Black guibg=Wheat2 | |
hi Folded gui=none guifg=Black guibg=Wheat1 | |
hi StatusLine gui=bold guifg=White guibg=#478D13 | |
hi StatusLineNC gui=none guifg=White guibg=#AAAAAA | |
hi VertSplit gui=none guifg=White guibg=#AAAAAA | |
hi Wildmenu gui=bold guifg=Black guibg=#e8edef | |
hi Pmenu guibg=Grey65 guifg=Black gui=none | |
hi PmenuSbar guibg=Grey50 guifg=fg gui=none | |
hi PmenuSel guibg=Yellow guifg=fg gui=none | |
hi PmenuThumb guibg=Grey75 guifg=fg gui=none | |
hi IncSearch gui=none guifg=White guibg=#478D13 | |
hi Search gui=none guifg=Black guibg=Yellow | |
hi MoreMsg gui=bold guifg=ForestGreen | |
hi Question gui=bold guifg=ForestGreen | |
hi WarningMsg gui=bold guifg=Red | |
hi Comment gui=italic guifg=#228B22 | |
hi Error gui=none guifg=White guibg=Red | |
hi Identifier gui=none guifg=Sienna4 | |
hi Special gui=none guifg=#A91B63 | |
hi PreProc gui=none guifg=#A91B63 | |
hi Todo gui=bold guifg=Black guibg=Yellow | |
hi Type gui=none guifg=#A91B63 | |
hi Underlined gui=underline guifg=Blue | |
hi Boolean gui=bold guifg=ForestGreen | |
hi Constant gui=none guifg=ForestGreen | |
hi Number gui=bold guifg=ForestGreen | |
hi String gui=none guifg=ForestGreen | |
hi Label gui=bold,underline guifg=Sienna4 | |
hi Statement gui=bold guifg=Sienna4 | |
hi htmlBold gui=bold | |
hi htmlItalic gui=italic | |
hi htmlUnderline gui=underline | |
hi htmlBoldItalic gui=bold,italic | |
hi htmlBoldUnderline gui=bold,underline | |
hi htmlBoldUnderlineItalic gui=bold,underline,italic | |
hi htmlUnderlineItalic gui=underline,italic | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment