Skip to content

Commit

Permalink
Fixing gitdiff colors in github256 theme
Browse files Browse the repository at this point in the history
  • Loading branch information
spicycode committed Oct 8, 2009
1 parent 8ce7946 commit ecc9a7f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .vim/colors/github256.vim
Expand Up @@ -288,8 +288,11 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("Cursor", "", "000000", "")
call <SID>X("CursorLine", "", "ffffcc", "none")
call <SID>X("Directory", "4183c4", "", "")
call <SID>X("DiffAdd", "000000", "ddffdd", "")
call <SID>X("DiffDelete", "000000", "ffdddd", "")
" call <SID>X("DiffAdd", "2E2E2E", "9CF9B1", "")
" call <SID>X("DiffDelete", "2E2E2E", "FFA296", "")
highlight DiffAdded guifg=#2E2E2E guibg=#9CF9B1
highlight DiffRemoved guifg=#2E2E2E guibg=#FFA296

call <SID>X("DiffText", "", "666666", "")
call <SID>X("ErrorMsg", "a61717", "e3d2d2", "bold")
call <SID>X("VertSplit", "666666", "eaeaea", "")
Expand Down

0 comments on commit ecc9a7f

Please sign in to comment.