On settings.json, set the following to have this :
{
"workbench.colorCustomizations": {
"[One Dark Pro]": { // your theme name
"editorHoverWidget.foreground":"#ffff00",
"textLink.foreground": "#00ffff",
"editorHoverWidget.statusBarBackground":"#008800" // as a bonus
}
}
}
2
Answers
Open
settings.json
(Open Preferences > Settings > Workbench: Color Customizations)Then modify the
workbench.colorCustomizations
block to include theeditorHoverWidget.foreground
key so it looks something like this:(or replace with whichever color you want)
If this worked for you, please accept the answer
On settings.json, set the following to have this :