I managed to find information about how to change the color of comments for a particular theme.
In settings.json
, which you can get to by pressing CTRL+P, add this
"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"comments": "#888888"
}
}
If it was not already obvious, Atom One Dark is the specific theme I am using.
This theme has a further problem, assides from the comments which are near invisible by default.
Find matches are also near-invisible by default.
If it isn't obvious what that means, it means the background (highlight) color used to highlight matches which are obtained from searching for strings with "Find". (As in Find-Replace.)
VS Code has two types of find. One is a per-editor window find. You get to it by pressing CTRL+F.
The other is a global project find. You get to it using the search icon in the left hand bar, which lives under the file browser button/icon.
How can I change the colors used to highlight matches for both of these find operations?