Reputation: 13
I want to change the background colour of the output given by the 'code-runner' extension in Visual Studio Code by using the appropriate keyword in the setting.json file.
This is the area where I want the colour to be changed:
image
Upvotes: 1
Views: 1445
Reputation: 516
Easiest way is to just find a theme that suits your desire.
To get a specific background colour though:
"workbench.colorCustomizations": {
"editor.background": "#<your colour here>"
}
Voila, new colour. You can change many of the other colours through a similar process, just type a new line with editor.
and you'll see the options pop up.
Upvotes: 1