如何在 Visual Studio 代码扩展中设置颜色
How to set colors in a Visual Studio Code extension
我正在通过 TextEditor.setDecorations()
在 VS Code 插件中设置文本背景颜色。为此,我使用 ThemableDecorationRenderOptions
对象并将其 backgroundcolor
值设置为字符串。 (抱歉,我不能使用主题颜色。)但我不知道 backgroundcolor
的可能值 - 除了像 "red"
或 "lightgreen"
这样的值显然有效。
有没有对颜色字符串格式的描述?
颜色是正常的 CSS 颜色。网上有很多资源可以解释它们。
我正在通过 TextEditor.setDecorations()
在 VS Code 插件中设置文本背景颜色。为此,我使用 ThemableDecorationRenderOptions
对象并将其 backgroundcolor
值设置为字符串。 (抱歉,我不能使用主题颜色。)但我不知道 backgroundcolor
的可能值 - 除了像 "red"
或 "lightgreen"
这样的值显然有效。
有没有对颜色字符串格式的描述?
颜色是正常的 CSS 颜色。网上有很多资源可以解释它们。