Editor Color Scheme

Viewed 27

I'm using the standard editor in VSCode Powershell and am looking for some documentation of the color scheme used.

Remarks are Green, MyVariable is Light Blue, PSVariable is Light Green, etc.

Thanks in Advance Vold

I want to know what color is used for what code elements in the standard Powershell Editor.

1 Answers

Same concept of profiles for Powershell, same procedure. The file created is called Microsoft.VSCode_profile.ps1 in the currentuser pattern.

about_Profiles Docs

To check:

Test-Path $PROFILE

To create in default scope:

New-Item -Path $PROFILE -Type File -Force

To edit:

code $PROFILE
Related