Skip to content

Commit

Permalink
Update *all* themes to consider Python block string comments as comments
Browse files Browse the repository at this point in the history
	modified:   extensions/theme-abyss/themes/abyss-color-theme.json
	modified:   extensions/theme-defaults/themes/dark_vs.json
	modified:   extensions/theme-defaults/themes/hc_black.json
	modified:   extensions/theme-defaults/themes/hc_light.json
	modified:   extensions/theme-defaults/themes/light_vs.json
	modified:   extensions/theme-kimbie-dark/themes/kimbie-dark-color-theme.json
	modified:   extensions/theme-monokai-dimmed/themes/dimmed-monokai-color-theme.json
	modified:   extensions/theme-monokai/themes/monokai-color-theme.json
	modified:   extensions/theme-quietlight/themes/quietlight-color-theme.json
	modified:   extensions/theme-red/themes/Red-color-theme.json
	modified:   extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json
	modified:   extensions/theme-solarized-light/themes/solarized-light-color-theme.json
	modified:   extensions/theme-tomorrow-night-blue/themes/tomorrow-night-blue-color-theme.json
  • Loading branch information
ElectricRCAircraftGuy committed May 11, 2023
1 parent 38e9adc commit 44c2f52
Show file tree
Hide file tree
Showing 13 changed files with 55 additions and 19 deletions.
7 changes: 5 additions & 2 deletions extensions/theme-abyss/themes/abyss-color-theme.json
Expand Up @@ -17,8 +17,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#384887"
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/theme-defaults/themes/dark_vs.json
Expand Up @@ -57,7 +57,11 @@
}
},
{
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#6A9955"
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/theme-defaults/themes/hc_black.json
Expand Up @@ -43,7 +43,11 @@
}
},
{
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#7ca668"
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/theme-defaults/themes/hc_light.json
Expand Up @@ -27,7 +27,11 @@
}
},
{
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#515151"
}
Expand Down
6 changes: 5 additions & 1 deletion extensions/theme-defaults/themes/light_vs.json
Expand Up @@ -62,7 +62,11 @@
}
},
{
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#008000"
}
Expand Down
Expand Up @@ -81,7 +81,8 @@
"name": "Comments",
"scope": [
"comment",
"punctuation.definition.comment"
"punctuation.definition.comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#a57a4c"
Expand Down
Expand Up @@ -78,8 +78,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"fontStyle": "",
"foreground": "#9A9B99"
Expand Down
2 changes: 1 addition & 1 deletion extensions/theme-monokai/themes/monokai-color-theme.json
Expand Up @@ -118,7 +118,7 @@
}
},
{
"name": "Comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
Expand Down
Expand Up @@ -20,7 +20,8 @@
"name": "Comments",
"scope": [
"comment",
"punctuation.definition.comment"
"punctuation.definition.comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"fontStyle": "italic",
Expand Down
7 changes: 5 additions & 2 deletions extensions/theme-red/themes/Red-color-theme.json
Expand Up @@ -77,8 +77,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"fontStyle": "italic",
"foreground": "#e7c0c0ff"
Expand Down
Expand Up @@ -17,8 +17,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"fontStyle": "italic",
"foreground": "#586E75"
Expand Down
Expand Up @@ -17,8 +17,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"fontStyle": "italic",
"foreground": "#93A1A1"
Expand Down
Expand Up @@ -78,8 +78,11 @@
}
},
{
"name": "Comment",
"scope": "comment",
"name": "Comments",
"scope": [
"comment",
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#7285B7"
}
Expand Down

0 comments on commit 44c2f52

Please sign in to comment.