Terminal: change font color

Created on 25 Jun 2019  路  7Comments  路  Source: microsoft/terminal

i want to change font color when typing command in power shell,

Area-Output Issue-Question Product-Powershell Resolution-Answered

Most helpful comment

Take a look at this article: https://dev.to/expertsinside/how-to-customize-the-new-windows-terminal-with-visual-studio-code-56b1
Each profile has a reference to a colorScheme, and some of those schemes are defined in the same file. Full documentation for reference.

All 7 comments

You can change the font color from your powershell profile in the settings file.

Take a look at this article: https://dev.to/expertsinside/how-to-customize-the-new-windows-terminal-with-visual-studio-code-56b1
Each profile has a reference to a colorScheme, and some of those schemes are defined in the same file. Full documentation for reference.

thanks @antoineco , i did it :D

there is no reference to font color.. what is the specific setting to change it?

@torms next time, instead of down voting, just mention that the referenced link is outdated, that could help other people. Thanks.

For reference, the new doc is here: https://docs.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes

I updated my comment.

@torms next time, instead of down voting, just mention that the referenced link is outdated, that could help other people. Thanks.

For reference, the new doc is here: https://docs.microsoft.com/en-us/windows/terminal/customize-settings/color-schemes

I updated my comment.

hello
I already came across the official doc and there is no reference about font color. So for me this issue is not resolved.
Thanks

It's right here in the example:

"foreground" : "#CCCCCC", 

A terminal emulator typically has

  • A foreground color (color of the characters printed on the screen)
  • A background color (color of what's behind the text)
  • 8 accent colors for highlights

Please note that if you open your settings.json file you'll see this line:

schema": "https://aka.ms/terminal-profiles-schema",

The schema at this URL contains extensive documentation about every supported setting, so that your IDE can show that description to you when highlighted.

Was this page helpful?
0 / 5 - 0 ratings