Home > OS >  Changing the color of django specific tag braces in visual studio code
Changing the color of django specific tag braces in visual studio code

Time:05-16

Using the instructions in enter image description here

However, in the screenshot, you can see that the only tag that has changed color is the "{% url %}" tag, and not hte bright yellow "{% %}" tags.

How can I change these specific tags to match the url? I'm at a loss as I've changed the template scope setting for the given value, but it's only changing the URL tags.

CodePudding user response:

Be sure to check that you don't have Bracket Pair Colorization enabled, as this will overwrite any custom colours you have defined!

Go to your settings, and search for "Bracket Pair Colorization" to make sure you have it disabled, as disabling this might solve your issue!

Screenshot of the setting radio button

  • Related