How to edit the highlight color in PyCharm of a tag?

Viewed 27

I am using PyCharm to edit a XML file, and the highlight color of the tag is pretty uncomfortable. The code is like:

<DumpRoot>

</DumpRoot>

And the effect is like:

this

How do I configure PyCharm so that I can change the color?

1 Answers

See the documentation Customize a color scheme.

The color can be changed by going to File > Settings > Editor > General > Color Sheme > XML and adjusting the color for Matched Tag in that window. As shown in the screenshot:

IDE settings page

Related