fisheva / Eva-Theme

A comfortable and semantic theme.
https://marketplace.visualstudio.com/items?itemName=fisheva.eva-theme
MIT License
452 stars 38 forks source link

注释斜体可否为可选项? #61

Closed hjlong00 closed 2 years ago

hjlong00 commented 2 years ago

你好,很喜欢这个主体,很好看。 但能否增加注释字体斜体的可选项? 或有可以更改的方法提供?

fisheva commented 2 years ago
WX20210829-193108@2x WX20210829-193130@2x

有斜体模式呀

hjlong00 commented 2 years ago

额。我意思是不要斜体, 使用 eva dark模式的时候, 注释都是斜体,我想要正的

fisheva commented 2 years ago

将下面这段复制进 VSCode的 setting.json里

    "editor.tokenColorCustomizations": {
        //使所有主题注释都使用常规字体
        "comments": {
            "fontStyle": "",
        },
        //也可单独设置某个主题下的注释改为常规字体
        "[Eva Dark]": {
            "comments": {
                "fontStyle": "",
            }
        },
        "[Eva Light]": {
            "comments": {
                "fontStyle": "",
            }
        },
    },

参考链接 https://geek-docs.com/vscode/vscode-tutorials/vscode-modify-editor-color-matching.html

hjlong00 commented 2 years ago

可以了 太感谢了