Git blame editor decoration may be too loud, as if it were the code itself.
Steps to reproduce
- Enable
git.blame.editorDecoration.enabled. See the official description:
Using Git source control in VS Code > Git blame information
- Open a Git repository folder.
- Open a tracked file.
Then, commit information will be displayed in the body text color:

Workaround
Insert the following snippet into settings.json:
"workbench.colorCustomizations": {
"[Nord]": {
"git.blame.editorDecorationForeground": "#616e88"
}
},
Then, it will be displayed in the comment color:

Related information
Git blame editor decoration may be too loud, as if it were the code itself.
Steps to reproduce
git.blame.editorDecoration.enabled. See the official description:Using Git source control in VS Code > Git blame information
Then, commit information will be displayed in the body text color:

Workaround
Insert the following snippet into
settings.json:Then, it will be displayed in the comment color:

Related information
git.blame.editorDecorationForeground. If not set, it inheritseditorInlayHint.foregroundwhich was changed in Color tokens for TypeScript and JavaScript inlay hints #232.