olive.vim (3715B)
1 " Vim color file 2 " Maintainer: Charles <cherry_avium@yahoo.com> 3 " Last Change: 11 June 2004 4 " URL: http:// 5 6 " cool help screens 7 " :he group-name 8 " :he highlight-groups 9 " :he cterm-colors 10 11 set background=dark 12 hi clear 13 if exists("syntax_on") 14 syntax reset 15 endif 16 let g:colors_name="olive" 17 18 "======================================================= 19 hi Normal guifg=#D9D9C3 guibg=#333300 20 hi Cursor guifg=black guibg=white 21 hi CursorIM guifg=black guibg=green 22 hi Directory guifg=gold gui=underline 23 "hi DiffAdd 24 "hi DiffChange 25 "hi DiffDelete 26 "hi DiffText 27 hi ErrorMsg guibg=indianred 28 "hi VertSplit guifg=gold 29 hi Folded guifg=khaki guibg=darkolivegreen gui=underline 30 hi FoldColumn guifg=khaki guibg=darkolivegreen gui=none 31 hi IncSearch guifg=black guibg=khaki 32 hi LineNr guifg=gray80 33 hi ModeMsg guifg=greenyellow gui=bold 34 hi MoreMsg guifg=greenyellow gui=bold 35 "hi NonText guibg=black 36 hi Question guifg=yellowgreen gui=NONE 37 hi Search guifg=black guibg=khaki gui=NONE 38 hi SpecialKey guifg=black guibg=darkkhaki 39 hi StatusLine guifg=palegoldenrod guibg=#808000 gui=none 40 hi StatusLineNC guifg=gray guibg=darkolivegreen gui=none 41 hi Title guifg=gold gui=bold 42 hi Visual guifg=black guibg=darkkhaki gui=NONE 43 "hi VisualNOS 44 hi WarningMsg guifg=palevioletred 45 "hi WildMenu 46 "hi Menu 47 "hi Scrollbar 48 "hi Tooltip 49 50 51 " ============================================================ 52 " syntax highlighting groups 53 " ============================================================ 54 hi Comment guifg=darkkhaki guibg=#4C4C00 gui=underline 55 56 hi Constant guifg=navajowhite 57 hi String guifg=greenyellow 58 "hi Character 59 "hi Number 60 "hi Boolean 61 "hi Float 62 63 hi Identifier guifg=lightsteelblue 64 " hi Function guibg=gray60 65 66 hi Statement guifg=darkseagreen gui=bold 67 "hi Conditional 68 "hi Repeat 69 "hi Label 70 hi Operator guifg=gold 71 "hi Keyword 72 "hi Exception 73 74 hi PreProc guifg=sandybrown gui=bold 75 "hi Include 76 "hi Define 77 "hi Macro 78 "hi PreCondit 79 80 hi Type guifg=goldenrod 81 "hi StorageClass 82 "hi Structure 83 "hi Typedef 84 85 hi Special guifg=navajowhite gui=underline 86 "hi SpecialChar 87 "hi Tag 88 "hi Delimiter 89 "hi SpecialComment 90 "hi Debug 91 92 hi Underlined gui=underline 93 94 hi Ignore guifg=black 95 96 hi Error guifg=white 97 98 hi Todo guifg=black guibg=gold gui=NONE 99 100 " ================================================================= 101 " Language specific color 102 " ================================================================= 103 104 " C / C++ 105 hi cIncluded guifg=yellowgreen 106 107 " HTML 108 hi Title guifg=palegoldenrod 109 110 " VIM 111 hi VimError guifg=red gui=bold 112 hi VimOption guifg=gold 113 114 " TeX / LaTeX 115 hi texSection guifg=greenyellow 116 " tex between { and } 117 hi texMatcher guifg=yellowgreen gui=none 118 hi texMath gui=none 119