primer / github-vscode-theme

GitHub's VS Code themes
https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme
MIT License
1.89k stars 189 forks source link

Colorize inline code blocks for the classic themes #292

Closed simurai closed 2 years ago

simurai commented 2 years ago

This closes https://github.com/primer/github-vscode-theme/issues/276 by making the same changes as in https://github.com/primer/github-vscode-theme/pull/193 also to the classic GitHub Light + GitHub Dark themes.

Before After
Screen Shot 2022-07-14 at 14 06 44 Screen Shot 2022-07-14 at 14 07 15
changeset-bot[bot] commented 2 years ago

🦋 Changeset detected

Latest commit: 628396061a306faa61d9c22cbb287bb79f02f5a3

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package | Name | Type | | ------------------- | ----- | | github-vscode-theme | Patch |

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

github-actions[bot] commented 2 years ago
Colors changed ```diff --- base/themes/dark.json 2022-07-14 05:11:24.995389996 +0000 +++ themes/dark.json 2022-07-14 05:11:21.663153072 +0000 @@ -436,3 +436,3 @@ { - "scope": "markup.raw", + "scope": "markup.inline.raw", "settings": { --- base/themes/light.json 2022-07-14 05:11:24.995389996 +0000 +++ themes/light.json 2022-07-14 05:11:21.663153072 +0000 @@ -432,3 +432,3 @@ { - "scope": "markup.raw", + "scope": "markup.inline.raw", "settings": { ```