如何在 VS Code 中自定义 Python 中 `True` 和 `False` 的颜色?

问题描述 投票:0回答:1

我想让 VS Code 以稍微不同的方式突出显示

True
False
值。我正在使用默认的 Dark Modern 主题。

python visual-studio-code
1个回答
0
投票

使用命令

>Inspect Editor Tokens and Scopes
检查True和False。

设置.json

{
    "editor.tokenColorCustomizations":
    {
        "textMateRules": [
            {
                "scope": "constant.language.python",
                "settings": {
                    "foreground": "#FFFF00"
                }
            }
        ]     
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.