As you can see, DiffChange option, which highlights the whole line with changes has color DiffRedDark, and DiffText option, which highlits the exact part of line that changed has color DiffRedLight
|
call <sid>hi('DiffChange', {}, s:cdDiffRedDark, 'none', {}) |
|
call <sid>hi('DiffDelete', {}, s:cdDiffRedLight, 'none', {}) |
|
call <sid>hi('DiffText', {}, s:cdDiffRedLight, 'none', {}) |
But definitions of these colors refers to the same xterm 256 colors which makes exact diff impossible to find in line
|
let s:cdDiffRedDark = {'gui': '#4B1818', 'cterm': s:cterm08, 'cterm256': '52'} |
|
let s:cdDiffRedLight = {'gui': '#6F1313', 'cterm': s:cterm08, 'cterm256': '52'} |
As you can see,
DiffChangeoption, which highlights the whole line with changes has colorDiffRedDark, andDiffTextoption, which highlits the exact part of line that changed has colorDiffRedLightvim-code-dark/colors/codedark.vim
Lines 144 to 146 in 7fe0dc6
But definitions of these colors refers to the same xterm 256 colors which makes exact diff impossible to find in line
vim-code-dark/colors/codedark.vim
Lines 95 to 96 in 7fe0dc6