hit counter

Timeline

My development logbook

I Want to Enable

I want to enable

solarize

The putty solarize color scheme files can be found

here

Alternatively, if you have powershell on Windows, you can run the following:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
cd HKCU:\Software\SimonTatham\PuTTY\Sessions\server_a
# light schema
Set-ItemProperty -Path .  -Name Colour0  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour1  -Value "88,110,117"
Set-ItemProperty -Path .  -Name Colour2  -Value "253,246,227"
Set-ItemProperty -Path .  -Name Colour3  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour4  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour5  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour6  -Value "7,54,66"
Set-ItemProperty -Path .  -Name Colour7  -Value "0,43,54"
Set-ItemProperty -Path .  -Name Colour8  -Value "220,50,47"
Set-ItemProperty -Path .  -Name Colour9  -Value "203,75,22"
Set-ItemProperty -Path .  -Name Colour10  -Value "133,153,0"
Set-ItemProperty -Path .  -Name Colour11  -Value "88,110,117"
Set-ItemProperty -Path .  -Name Colour12  -Value "181,137,0"
Set-ItemProperty -Path .  -Name Colour13  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour14  -Value "38,139,210"
Set-ItemProperty -Path .  -Name Colour15  -Value "131,148,150"
Set-ItemProperty -Path .  -Name Colour16  -Value "211,54,130"
Set-ItemProperty -Path .  -Name Colour17  -Value "108,113,196"
Set-ItemProperty -Path .  -Name Colour18  -Value "42,161,152"
Set-ItemProperty -Path .  -Name Colour19  -Value "147,161,161"
Set-ItemProperty -Path .  -Name Colour20  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour21  -Value "253,246,227"

#dark
Set-ItemProperty -Path . -Name Colour0 -Value "131,148,150"
Set-ItemProperty -Path . -Name Colour1 -Value "147,161,161"
Set-ItemProperty -Path . -Name Colour2 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour3 -Value "7,54,66"
Set-ItemProperty -Path . -Name Colour4 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour5 -Value "238,232,213"
Set-ItemProperty -Path . -Name Colour6 -Value "7,54,66"
Set-ItemProperty -Path . -Name Colour7 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour8 -Value "220,50,47"
Set-ItemProperty -Path . -Name Colour9 -Value "203,75,22"
Set-ItemProperty -Path . -Name Colour10 -Value "133,153,0"
Set-ItemProperty -Path . -Name Colour11 -Value "88,110,117"
Set-ItemProperty -Path . -Name Colour12 -Value "181,137,0"
Set-ItemProperty -Path . -Name Colour13 -Value "101,123,131"
Set-ItemProperty -Path . -Name Colour14 -Value "38,139,210"
Set-ItemProperty -Path . -Name Colour15 -Value "131,148,150"
Set-ItemProperty -Path . -Name Colour16 -Value "211,54,130"
Set-ItemProperty -Path . -Name Colour17 -Value "108,113,196"
Set-ItemProperty -Path . -Name Colour18 -Value "42,161,152"
Set-ItemProperty -Path . -Name Colour19 -Value "147,161,161"
Set-ItemProperty -Path . -Name Colour20 -Value "238,232,213"
Set-ItemProperty -Path . -Name Colour21 -Value "253,246,227"

(assuming your the name of the session is ‘server_a’)