Arthur Cheung
Arthur Cheung

Reputation: 91

Visual Studio Code line number difficult to read

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

Answers (1)

Mark
Mark

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

Related Questions