15

I want to change the color scheme of the command prompt in Windows, ideally a default of 0a (green color on black background).

How can I change this?

Gareth
  • 19,080

5 Answers5

15

Open a Command Prompt, click the icon (top-left), select Properties.

alt text

Choose Colors, adjust to taste. It will ask you if you want to save the colour for future settings - choose yes.

alt text

Gareth
  • 19,080
stijn
  • 2,087
14

Using the Command Prompt type regedit to open the Windows Registry, then set the following entry to the color combination you prefer (DefaultColor):

HKEY_CURRENT_USER/Software/Microsoft/Command Processor/
Set DefaultColor to 0a
Gareth
  • 19,080
ArBR
  • 371
6

Go to a command prompt and type help color then press ENTER.

You can also select the command prompt icon and change its properties.

Linker3000
  • 28,240
4
  1. Open the Command Prompt
  2. Right click on the title bar
  3. Select Defaults
  4. Move to the Colors tab.
Gareth
  • 19,080
aman
  • 41
4
@reg add "hkcu\software\microsoft\command processor" /v defaultcolor /t reg_dword /d 0xa /f

put it inside a .bat file and execute it, or type straight in command prompt it will make default shell (cmd.exe) color green for current user to roll back, change 0xa back to 0

ps:

it's based on ArceBrito's answer, i just couldn't comment