tango2.vim (1954B)
1 " ============================================================================= 2 " Name: Tango2 3 " Purpose: Another colour scheme using the Tango colour palette 4 " Maintainer: Pranesh Srinivasan 5 " Last Modified: Saturday 04 October 2008 02:06:26 AM IST 6 " ============================================================================= 7 8 " Inspired from some Gnome renditions of the Tango colour scheme. 9 10 " ============================================================================= 11 " Preamble 12 " ============================================================================= 13 14 set background=dark 15 16 hi clear 17 18 if exists("syntax-on") 19 syntax reset 20 endif 21 22 let colors_name = "tango2" 23 24 " ============================================================================= 25 " Vim >= 7.0 specific colours 26 " ============================================================================= 27 28 if version >= 700 29 " No support for cursor line yet 30 " hi CursorLine term=underline cterm=underline guibg=#111133 31 " hi CursorColoumn 32 " hi MatchParen 33 " hi Pmenu 34 " hi PmenuSel 35 endif 36 37 " ============================================================================= 38 " General colours 39 " ============================================================================= 40 41 hi Normal guibg=#2E3436 guifg=#eeeeec 42 hi Cursor gui=none guibg=White guifg=Black 43 44 hi Folded guibg=#4D585B guibg=#d2d2d2 45 " No fold column support yet 46 " hi FoldColumn guifg=Orange guibg=DarkBlue 47 " ============================================================================= 48 " Syntax highlighting 49 " ============================================================================= 50 51 hi Comment gui=italic guifg=#6d7e8a ctermfg=Grey 52 hi Todo term=bold guifg=#EBC450 53 hi Constant guifg=#8ae234 54 hi Type guifg=#8AE234 55 hi Function gui=bold guifg=#9BCF8D 56 hi Statement guifg=#729FCF 57 hi Identifier guifg=#AD7FA8 58 hi PreProc guifg=#e9ba6e 59 hi Special term=underline guifg=#5EAFE5 60 61 hi Search guibg=#81ABBD 62 " hi QtClass guifg=Orange ctermfg=LightBlue