Reputation: 91
For most dark themes the line number of visual studio code are too dark and difficult to read. How to make it brighter?
That is, how to format the line numbers in terms of font weight, brightness...
Upvotes: 7
Views: 4255
Reputation: 182241
You could easily change their color and brighten them for your theme via:
"workbench.colorCustomizations": {
"editorLineNumber.foreground": "#ffff",
}
In your setting.json. vscode reference: theme colors for an editor
Upvotes: 18