Visual Studio代码主题编辑PHP

2022-02-28 00:00:00 visual-studio-code themes php

我正在从Notepad++切换到VS代码

目前困扰我的首要问题是,在文件中,PHP标记与DIV元素具有相同的颜色编码。我想把PHP标签的颜色改成红色。

仅使用默认VS黑暗主题。

TIA


解决方案

您也可以在用户设置中进行此更改。我包括了一些我用来加粗函数、关键字等的附加定制。这些类型的更改应该放在用户设置文件中,而不是自定义特定的主题文件中-因为您的更改将在升级主题时丢失。

    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": [
                    "punctuation.section.embedded.begin.php",
                    "punctuation.section.embedded.end.php"
                ],
                "settings": {
                    "foreground": "#ff0000"
                }
            },
            {
                "scope": "keyword",
                "settings": {
                    "fontStyle": "bold"
                }
            },
            {
                "scope": "storage",
                "settings": {
                    "fontStyle": "bold"
                }
            },
            {
                "scope": "constant.language",
                "settings": {
                    "fontStyle": "bold"
                }
            },
            {
                "scope": "support.class.builtin",
                "settings": {
                    "fontStyle": "bold"
                }
            }
        ]
    }

相关文章