diff --git a/CHANGELOG.md b/CHANGELOG.md index 8492f0c8..e7d78ae5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # CHANGELOG +## 3.13.22 | 2022.04.21 +- Change `invalid.deprecated.entity.other.attribute-name.html` highlight color + ## 3.13.21 | 2022.04.14 - Change `invalid.illegal.unrecognized-tag.html` highlight color diff --git a/package.json b/package.json index e9019be3..d709441d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "material-theme", "displayName": "One Dark Pro", "description": "Atom‘s iconic One Dark theme for Visual Studio Code", - "version": "3.13.21", + "version": "3.13.22", "publisher": "zhuangtongfa", "license": "MIT", "bugs": { diff --git a/src/themes/themeData.ts b/src/themes/themeData.ts index bb168af2..5f2bd119 100644 --- a/src/themes/themeData.ts +++ b/src/themes/themeData.ts @@ -1130,6 +1130,13 @@ export default { foreground: colorType.invalid, }, }, + { + name: 'html Deprecated', + scope: 'invalid.deprecated.entity.other.attribute-name.html', + settings: { + foreground: colorType.whiskey, + }, + }, { name: 'Unimplemented', scope: 'invalid.unimplemented', diff --git a/themes/OneDark-Pro-darker.json b/themes/OneDark-Pro-darker.json index 988d547e..5eb10a43 100644 --- a/themes/OneDark-Pro-darker.json +++ b/themes/OneDark-Pro-darker.json @@ -1077,6 +1077,13 @@ "foreground": "#ffffff" } }, + { + "name": "html Deprecated", + "scope": "invalid.deprecated.entity.other.attribute-name.html", + "settings": { + "foreground": "#d19a66" + } + }, { "name": "Unimplemented", "scope": "invalid.unimplemented", diff --git a/themes/OneDark-Pro-flat.json b/themes/OneDark-Pro-flat.json index 9b5477d5..03c77456 100644 --- a/themes/OneDark-Pro-flat.json +++ b/themes/OneDark-Pro-flat.json @@ -1077,6 +1077,13 @@ "foreground": "#ffffff" } }, + { + "name": "html Deprecated", + "scope": "invalid.deprecated.entity.other.attribute-name.html", + "settings": { + "foreground": "#d19a66" + } + }, { "name": "Unimplemented", "scope": "invalid.unimplemented", diff --git a/themes/OneDark-Pro.json b/themes/OneDark-Pro.json index 0bbc2e13..1857e0d5 100644 --- a/themes/OneDark-Pro.json +++ b/themes/OneDark-Pro.json @@ -1077,6 +1077,13 @@ "foreground": "#ffffff" } }, + { + "name": "html Deprecated", + "scope": "invalid.deprecated.entity.other.attribute-name.html", + "settings": { + "foreground": "#d19a66" + } + }, { "name": "Unimplemented", "scope": "invalid.unimplemented",