Skip to content

Commit

Permalink
Merge pull request #1 from kaicataldo/main
Browse files Browse the repository at this point in the history
Change HTML syntax to better match Material Theme (kaicataldo#51)
  • Loading branch information
lmlorca committed Aug 2, 2020
2 parents ec9c95a + 66d7c70 commit 716f8a2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions colors/material.vim
Original file line number Diff line number Diff line change
Expand Up @@ -325,12 +325,19 @@ call s:SetHighlight('lessFunction', s:blue, '', '')
call s:SetHighlight('lessVariable', s:purple, '', '')

" HTML
call s:SetHighlight('htmlTagName', s:pink, '', '')
call s:SetHighlight('htmlEndTag', s:cyan, '', '')
call s:SetHighlight('htmlLink', s:green, '', '')
call s:SetHighlight('htmlTag', s:cyan, '', '')
call s:SetHighlight('htmlTitle', s:fg, '', '')
call s:SetHighlight('htmlSpecialTagName', s:yellow, '', '')
call s:SetHighlight('htmlArg', s:purple, '', 'italic')
call s:SetHighlight('htmlTitle', s:fg, '', '')
call s:SetHighlight('htmlLink', s:fg, '', '')
call s:SetHighlight('htmlH1', s:fg, '', '')
call s:SetHighlight('htmlH2', s:fg, '', '')
call s:SetHighlight('htmlH3', s:fg, '', '')
call s:SetHighlight('htmlH4', s:fg, '', '')
call s:SetHighlight('htmlH5', s:fg, '', '')
call s:SetHighlight('htmlH6', s:fg, '', '')

" XML
call s:SetHighlight('xmlAttrib', s:purple, '', 'italic')
Expand Down

0 comments on commit 716f8a2

Please sign in to comment.