How do I change the colour scheme on PuTTY?

76

21

I'm using PuTTY to SSH from my PC at home to Linux computers at work, but some of the text (folder names) is dark blue on black, which is almost impossible to read. How do I change the colour-scheme?

My computer at home has Windows 7 in case it makes any difference.

Kirt

Posted 2010-10-12T00:59:39.033

Reputation: 5 119

1Who in the heck thought dark blue on back in a good idea?? – RonJohn – 2019-11-27T21:19:23.100

Answers

43

In the PuTTY configuration window on the left side (the category section) there is an expandable item called Window and under that item is Colours. That is where color changes can be made.

ubiquibacon

Posted 2010-10-12T00:59:39.033

Reputation: 7 287

1thanks, much better, can i save the settings? – Kirt – 2010-10-12T02:00:38.823

6@Bec yes you can save the settings. In the same putty configuration window just type the host name in the text field where it says Saved Sessions then press the Save button. – ubiquibacon – 2010-10-12T04:20:08.553

50

Click on the System menu at the upper left corner of the PuTTY window.

  • Select Change Settings > Window > Colours.
  • In the box that says "Select a colour to adjust", choose ANSI Blue and click the Modify Button.
  • Slide the black arrow on the right up until you see a lighter shade of blue that you like.
  • Click OK.
  • Perform the same steps for ANSI Blue Bold so you can have a perceptible difference between the two.
  • When you're finished, click Apply.

Paused until further notice.

Posted 2010-10-12T00:59:39.033

Reputation: 86 075

2It worked. I dont have a apply button. Make sure you select a saved Session and then change the color. Then save it! – Johan Hoeksma – 2015-07-22T09:32:05.973

Useful trick: You can open putty to a particular session using the -load command line option. So if you have a session named Pale Yellow, you can setup a shortcut that would open that session by using the Target line "G:\Program Files (x86)\PuTTY\putty.exe" -load "Pale Yellow" in the shortcut. Having multiple color schemes is handy for keeping track of which window is which system. – Michael Kohne – 2018-06-08T11:32:13.633

37

You can use the very awesome 4bit Terminal Color Scheme Designer to generate a full color scheme for your shell.

Just create a color scheme to your liking, then click the Get Scheme button and select putty.

After downloading the .reg file, just import it to your registry to get the new color scheme. By default the registry change will only affect new sessions, but you can also apply the scheme to existing saved sessions by changing the last part of the path in the .reg file.

Der Hochstapler

Posted 2010-10-12T00:59:39.033

Reputation: 77 228

Brilliant solution for this age old problem! – zb226 – 2015-02-06T14:54:11.153

2anything in 2018? unable to download .reg files from the site. – Kid101 – 2018-06-29T17:53:00.610

Yea, cool idea but downloading the config files doesn't seem to work anymore – CoAstroGeek – 2019-11-12T21:12:45.877

14

The default PuTTY color scheme is known to be tough on the eyes, I would recommend taking a look at Pretty PuTTY, Solarized PuTTY, or Solarized & Modern PuTTY for better color settings.

Screenshot of Pretty Putty:

Pretty PuTTY Light Light color scheme

Pretty PuTTY Dark Dark color scheme

Other Settings

In addition to PuTTY color settings you can configure:

  • .dir_colors for custom colors when using the ls --color=auto command.
  • .screenrc with the entry term screen-256color for 256 color support with screen.
  • In PuTTY Connection -> Data -> Terminal-type string to putty-256color.

Avoid

In general avoid:

  • Solutions that modify the TERM variable in .bashrc.
  • Solutions that modify the Vim t_Co variable.

These are hacks rather than solutions.

Further reading

JacK TrocinskI

Posted 2010-10-12T00:59:39.033

Reputation: 241

9

You may also want to make those colour changes to the default session so that all future sessions you save will have this.

Dave

Posted 2010-10-12T00:59:39.033

Reputation: 161

how do i save the default session? – Kirt – 2010-10-12T02:49:05.370

3Click 'Default Settings' in the Session category. Then Load. Make your changes, then click Save. – Dave – 2011-01-12T06:40:12.300

0

Open regedit.exe, and go to HKEY_CURRENT_USER\Software\SimonTatham\Putty\Sessions

For each saved session you have to specify the R,G,B code. The ANSI Blue is Colour14

For the Default Settings, you have to edit the colours for the Default%20Settings session

P. Marachlian

Posted 2010-10-12T00:59:39.033

Reputation: 1