Skip to content

Instantly share code, notes, and snippets.

@StripedMonkey
Created September 26, 2022 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StripedMonkey/7b4089202c1cc60722ca6a33d46a2a3c to your computer and use it in GitHub Desktop.
Save StripedMonkey/7b4089202c1cc60722ca6a33d46a2a3c to your computer and use it in GitHub Desktop.
the `settings.json` required to have some actually usable inlay hint coloring. Why this isn't the default is beyond me.
{
"settings": {
"workbench.colorCustomizations": {
"editorInlayHint.foreground": "#868686f0", // Really light bluish
"editorInlayHint.background": "#00000000", // Transparent Background
// Overrides for specific kinds of inlay hints
"editorInlayHint.typeForeground": "#868686f0",
"editorInlayHint.parameterForeground": "#868686f0",
"editorInlayHint.parameterBackground": "#00000000",
"editorInlayHint.typeBackground": "#00000000",
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment