" Vim color file " carvedwood v0.1 " Maintainer: Shawn Axsom " [axs221.1l.com] " carvedwood - " a cool blue version of my color scheme modified from my desertocean scheme into a brown " and green scheme, easier on the eyes and optimized for more important syntax " to stand out the most (eg comments and values are dark and dull while " statements are bright). " cool help screens " :he group-name " :he highlight-groups " :he cterm-colors set background=dark if version > 580 " no guarantees for version 5.8 and below, but this makes it stop " complaining hi clear if exists("syntax_on") syntax reset endif endif let g:colors_name="carvedwoodcool" hi Normal guibg=#05181c guifg=#aa9aa3 hi NonText guibg=#1c3447 guifg=#382920 hi Folded guibg=#4a4f4d guifg=#BBDDCC hi FoldColumn guibg=#3a4a5a guifg=#00CCFF hi LineNr guibg=#153040 guifg=#D0C5c0 hi StatusLine guibg=#d0a59a guifg=#102015 gui=none hi StatusLineNC guibg=#937b7a guifg=#373334 gui=none " syntax highlighting hi Comment guifg=#2d303d hi Title guifg=#60b0ea hi Underlined guifg=#80aae0 hi Statement guifg=#f0caba hi Type guifg=#c09a8a hi Constant guifg=#55464a hi PreProc guifg=#aa7065 gui=none hi Identifier guifg=#d07a70 hi Special guifg=#556065 hi Ignore guifg=grey40 hi Todo guifg=orangered guibg=yellow2 hi Error guibg=#e04462 "end syntax highlighting " highlight groups hi Cursor guibg=#104550 guifg=#6aa09a "hi CursorIM hi Directory guifg=#bbd0df "hi DiffAdd "hi DiffChange "hi DiffDelete "hi DiffText "hi ErrorMsg hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none hi ModeMsg guifg=#00AACC hi MoreMsg guifg=SeaGreen hi Question guifg=#AABBCC hi Search guibg=#5a6d7d guifg=#bac5d0 hi IncSearch guifg=#50606d guibg=#cddaf0 hi SpecialKey guifg=#90703B hi Visual guifg=#008FBF guibg=#33DFEF "hi VisualNOS hi WarningMsg guifg=salmon "hi WildMenu "hi Menu "hi Scrollbar guibg=grey30 guifg=tan "hi Tooltip " color terminal definitions hi SpecialKey ctermfg=darkgreen hi NonText cterm=bold ctermfg=darkblue hi Directory ctermfg=darkcyan hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1 hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green hi Search cterm=NONE ctermfg=grey ctermbg=blue hi MoreMsg ctermfg=darkgreen hi ModeMsg cterm=NONE ctermfg=brown hi LineNr ctermfg=3 hi Question ctermfg=green hi StatusLine cterm=bold,reverse hi StatusLineNC cterm=reverse hi VertSplit cterm=reverse hi Title ctermfg=5 hi Visual cterm=reverse hi VisualNOS cterm=bold,underline hi WarningMsg ctermfg=1 hi WildMenu ctermfg=0 ctermbg=3 hi Folded ctermfg=darkgrey ctermbg=NONE hi FoldColumn ctermfg=darkgrey ctermbg=NONE hi DiffAdd ctermbg=4 hi DiffChange ctermbg=5 hi DiffDelete cterm=bold ctermfg=4 ctermbg=6 hi DiffText cterm=bold ctermbg=1 hi Comment ctermfg=darkcyan hi Constant ctermfg=brown hi Special ctermfg=5 hi Identifier ctermfg=6 hi Statement ctermfg=3 hi PreProc ctermfg=5 hi Type ctermfg=2 hi Underlined cterm=underline ctermfg=5 hi Ignore cterm=bold ctermfg=7 hi Ignore ctermfg=darkgrey hi Error cterm=bold ctermfg=7 ctermbg=1 "vim: sw=4