简体   繁体   中英

How can I change the color of <> tags on Visual Studio Code?

I recently changed my color theme in VisualStudio Code, I like everything from the theme except for the light purple color of the <> tags, they clash with the pink. How can I change them so they're a different color, preferable just a darker purple. Btw the theme im using is called Tokyo Night Storm.

Here's an image showing how the angle brackets are currently colored:
<> 标签

I tried going into my settings.json couldn't find exactly what to write.

Use the Developer: Inspect Editor Tokens and Scopes action to open the Scope Inspector . Then click on the token you want to inspect. Then find out its textmate scopes. In this case, the opening angle bracket is:

punctuation.definition.tag.begin.html
meta.tag.structure.html.start.html
text.html.derivative

Pick an appropriate textmate scope, and then use it in a token colour customization like so:

"editor.tokenColorCustomizations": {
    "[Tokyo Night Storm]": {
        "textMateRules": [{
            "scope":"punctuation.definition.tag.begin.html",
            "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
            }
        },{
            "scope":"punctuation.definition.tag.end.html",
            "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
            }
        }],
    }
},

See also the docs for creating your own colour theme .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM