diff --git a/src/theme.js b/src/theme.js index 20a3ca3..dec0e2e 100644 --- a/src/theme.js +++ b/src/theme.js @@ -382,7 +382,10 @@ function getTheme({ theme, name }) { }, }, { - "scope": "entity.name.function", + "scope": [ + "entity.name.function", + "support.function", + ], "settings": { foreground: lightDark(scale.purple[5], scale.purple[2]) } @@ -692,6 +695,22 @@ function getTheme({ theme, name }) { foreground: lightDark(scale.blue[8], scale.blue[1]), }, }, + { + scope: [ + "support.constant.property-value.css", + "constant.other.color.rgb-value", + "support.constant.color", + ], + settings: { + foreground: color.fg.default, + }, + }, + { + scope: ["entity.name.tag.wildcard"], + settings: { + foreground: lightDark(scale.blue[6], scale.blue[2]), + }, + }, ], }; }