R
R
romaro2021-04-24 02:04:33
Visual Studio Code
romaro, 2021-04-24 02:04:33

Is there a plugin to easily edit the VS Code theme?

For example, I need to change the highlighting of some control statements (if-else, etc.). Now I have to fix it in Settings.json:

"editor.tokenColorCustomizations": {
        "[Default Dark+]": {
            "textMateRules": [
                {
                    "scope": "variable.scss",
                    "settings": {
                        "foreground": "#4be772",
                        "fontStyle": "bold"
                    }
                },
                {
                    "scope": "keyword.control",
                    "settings": {
                        "foreground": "#b80d85",
                        "fontStyle": "bold"
                    }
                },
            ],
        },
    },


Is there a plugin that simplifies this setup?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question