github-vscode-theme
github-vscode-theme copied to clipboard
some syntax highlighting noticeably different to GitHub.com
VS Code
Github.com
will you expand on this issue? I don't see any highlighting in the second photo for Github.com
Sorry I meant syntax highlighting colours. I have amended the issue title
Agreed. Would love to see this theme's syntax colors exactly match github.com (for familiarity)
I found some differences for C# too. The following settings seems to fix it for the light theme. I'm still checking for other differences but at one point I'll include these in a PR.
"editor.tokenColorCustomizations": {
"textMateRules":[
{
"scope": ["storage.type"],
"settings": { "foreground": "#6f42c1" }
},
{
"scope":["entity.name.variable"],
"settings": { "foreground": "#24292e" }
}
]
}
What seems a bit strange is that the "storage.type"
is explicitly set to red in the theme. Was there a reason for this? GitHub.com uses purple for this (in C#).
Gonna close this as stale.