Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions colors/inkpot.vim
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ if has("gui_running")
hi doxygenSmallSpecial gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenSpecial gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenComment gui=NONE guifg=#ad7b20 guibg=NONE
hi doxygenBody gui=NONE guifg=LightBlue guibg=NONE
hi doxygenSpecial gui=NONE guifg=#fdab60 guibg=NONE
hi doxygenSpecialMultilineDesc gui=NONE guifg=#ad600b guibg=NONE
hi doxygenSpecialOnelineDesc gui=NONE guifg=#ad600b guibg=NONE
Expand Down Expand Up @@ -203,6 +204,11 @@ else
exec "hi Underlined cterm=BOLD ctermfg=" . <SID>X(77) . " ctermbg=" . "NONE"
exec "hi TaglistTagName cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . "NONE"

exec "hi doxygenBrief cterm=BOLD ctermfg=Cyan ctermbg=NONE"
exec "hi doxygenParamName cterm=BOLD ctermfg=LightGrey ctermbg=NONE"
exec "hi doxygenBody cterm=NONE ctermfg=LightBlue ctermbg=NONE"
exec "hi doxygenSpecialOnelineDesc cterm=NONE ctermfg=DarkCyan ctermbg=NONE"

if v:version >= 700
exec "hi Pmenu cterm=NONE ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(82)
exec "hi PmenuSel cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(38)
Expand Down