-
-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
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
- This feature was introduced in November 2024 (version 1.96) as an experimental future, and stabilized in January 2025 (version 1.97). The future request was [Feature Request] Add inline git blame annotations microsoft/vscode#205424
- The display color can be controlled via
git.blame.editorDecorationForeground. If not set, it inheritseditorInlayHint.foregroundwhich was changed in Color tokens for TypeScript and JavaScript inlay hints #232. - Unlike inlay hints, there is no background color setting.
m666m, NatoBoram, iamstevendao and mxz7mxz7
Metadata
Metadata
Assignees
Labels
No labels