如何实现粗斜体样式 vscode 主题 json 文件?



最近,我正在编辑一个VS Code主题.json文件。 我想为我的主题实现粗斜体样式,但我对这部分感到困惑:

{
"name": "Keywords",
"scope": "keyword",
"settings": {
"foreground": "#8A31B9",
"fontStyle": "bold"
}
},

"fontStyle": "bold",要么需要"bold",要么需要"italic".

我该怎么办?

在同一行中添加斜体和粗体。

{
"name": "Keywords",
"scope": "keyword",
"settings": {
"foreground": "#8A31B9",
"fontStyle": "bold italic"
}
},

最新更新