Skip to content

Commit

Permalink
Merge pull request #43 from Frankcs96/fix-xml-colorscheme
Browse files Browse the repository at this point in the history
fix(xml): fix xml colorscheme
  • Loading branch information
Mofiqul authored Mar 1, 2022
2 parents f6c5d02 + 3875ac0 commit add5229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/vscode/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ theme.load_syntax = function()
typescriptPromiseMethod = { c.vscYellow, nil, 'none', nil },

-- XML
xmlTag = { c.vscBlueGreen, nil, 'none', nil },
xmlTagName = { c.vscBlueGreen, nil, 'none', nil },
xmlEndTag = { c.vscBlueGreen, nil, 'none', nil },
xmlTag = { c.vscBlue, nil, 'none', nil },
xmlTagName = { c.vscBlue, nil, 'none', nil },
xmlEndTag = { c.vscBlue, nil, 'none', nil },

-- Ruby
rubyClassNameTag = { c.vscBlueGreen, nil, 'none', nil },
Expand Down

0 comments on commit add5229

Please sign in to comment.