diff --git a/CHANGELOG.md b/CHANGELOG.md index a3a5bbc6..24a125b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # CHANGELOG +## 3.9.13 | 2021.01.28 +- Fixed [#502](https://github.com/Binaryify/OneDark-Pro/issues/502) + ## 3.9.12 | 2020.12.19 - Improve C# color highlight [#493](https://github.com/Binaryify/OneDark-Pro/issues/493) diff --git a/package.json b/package.json index 0c79c730..2193adaa 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.9.12", + "version": "3.9.13", "publisher": "zhuangtongfa", "bugs": { "url": "https://github.com/Binaryify/OneDark-Pro/issues" diff --git a/src/themes/themeData.json b/src/themes/themeData.json index f837830e..791e2b52 100644 --- a/src/themes/themeData.json +++ b/src/themes/themeData.json @@ -2934,6 +2934,27 @@ "settings": { "foreground": "coral" } + }, + { + "name": "Deleted", + "scope": "markup.deleted", + "settings": { + "foreground": "coral" + } + }, + { + "name": "Inserted", + "scope": "markup.inserted", + "settings": { + "foreground": "green" + } + }, + { + "name": "Underline", + "scope": "markup.underline", + "settings": { + "fontStyle": "underline" + } } ], "bold": [ diff --git a/themes/OneDark-Pro.json b/themes/OneDark-Pro.json index 0f497d96..91612f56 100644 --- a/themes/OneDark-Pro.json +++ b/themes/OneDark-Pro.json @@ -1832,6 +1832,27 @@ "foreground": "#e06c75" } }, + { + "name": "Deleted", + "scope": "markup.deleted", + "settings": { + "foreground": "#e06c75" + } + }, + { + "name": "Inserted", + "scope": "markup.inserted", + "settings": { + "foreground": "#98c379" + } + }, + { + "name": "Underline", + "scope": "markup.underline", + "settings": { + "fontStyle": "underline" + } + }, { "name": "js/ts italic", "scope": "entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super",