Skip to content

Commit

Permalink
Improve PHP highlight #533, Improve minimap gutter indicators #534
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Apr 9, 2021
1 parent f2f0aeb commit dc5cf7f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# CHANGELOG
## 3.10.12 | 2021.04.09
- Improve minimap gutter indicators [#534](https://github.com/Binaryify/OneDark-Pro/issues/534)

- Improve PHP highlight [#533](https://github.com/Binaryify/OneDark-Pro/issues/533)

## 3.10.11 | 2021.04.07
- Improve Dart/Flutter semantic highlighting [#394](https://github.com/Binaryify/OneDark-Pro/issues/394)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "material-theme",
"displayName": "One Dark Pro",
"description": "Atom's iconic One Dark theme for Visual Studio Code",
"version": "3.10.11",
"version": "3.10.12",
"publisher": "zhuangtongfa",
"bugs": {
"url": "https://github.com/Binaryify/OneDark-Pro/issues"
Expand Down
15 changes: 15 additions & 0 deletions src/themes/themeData.json
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,9 @@
"list.warningForeground": "#d19a66",
"menu.foreground": "#abb2bf",
"menu.separatorBackground": "#343a45",
"minimapGutter.addedBackground": "#109868",
"minimapGutter.deletedBackground": "#9A353D",
"minimapGutter.modifiedBackground": "#948B60",
"panelSectionHeader.background": "#21252b",
"peekViewEditor.background": "#1b1d23",
"peekViewEditor.matchHighlightBackground": "#29244b",
Expand Down Expand Up @@ -635,6 +638,9 @@
"menu.separatorBackground": "#343a45",
"menubar.selectionBackground": "#323842",
"menubar.selectionForeground": "#f0f0f0",
"minimapGutter.addedBackground": "#109868",
"minimapGutter.deletedBackground": "#9A353D",
"minimapGutter.modifiedBackground": "#948B60",
"notificationLink.foreground": "#f0f0f0",
"notifications.foreground": "#969aa4",
"panel.background": "#282c34",
Expand Down Expand Up @@ -3095,6 +3101,15 @@
"settings": {
"fontStyle": "underline"
}
},
{
"name": "punctuation.section.embedded.begin.php",
"scope": [
"punctuation.section.embedded.begin.php"
],
"settings": {
"foreground": "coral"
}
}
],
"bold": [
Expand Down
12 changes: 12 additions & 0 deletions themes/OneDark-Pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -1865,6 +1865,15 @@
"fontStyle": "underline"
}
},
{
"name": "punctuation.section.embedded.begin.php",
"scope": [
"punctuation.section.embedded.begin.php"
],
"settings": {
"foreground": "#e06c75"
}
},
{
"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",
Expand Down Expand Up @@ -1960,6 +1969,9 @@
"list.warningForeground": "#d19a66",
"menu.foreground": "#abb2bf",
"menu.separatorBackground": "#343a45",
"minimapGutter.addedBackground": "#109868",
"minimapGutter.deletedBackground": "#9A353D",
"minimapGutter.modifiedBackground": "#948B60",
"panelSectionHeader.background": "#21252b",
"peekViewEditor.background": "#1b1d23",
"peekViewEditor.matchHighlightBackground": "#29244b",
Expand Down

0 comments on commit dc5cf7f

Please sign in to comment.