]> icculus.org git repositories - divverent/nexuiz.git/blob - data/gfx/colormap_palette.base
new player colors (gfx/colormap_palette.lmp); default color is no longer pink :P
[divverent/nexuiz.git] / data / gfx / colormap_palette.base
1 bbbbbb
2 73571f
3 00BBBB
4 00FF00
5 FF0000
6 0080ff
7 cf8f2b
8 b7876b
9 c38baa
10 FF00FF
11 a3877b
12 4f6357
13 FFFF00
14 0000FF
15 ff8000
16 e30074
17
18 processing of player colors:
19 :'<,'>!perl -pe '$_ = sprintf "\%s\n", unpack "H6", pack "CCC", map { $_ * 15/16 + 255/16 } unpack "CCC", pack "H6", $_'                     
20 (put 1/16 white on them so other-colored light still affects them a bit)
21
22 processing of scoreboard colors:
23 :'<,'>!perl -pe '$_ = sprintf "\%s\n", unpack "H6", pack "CCC", map { $_ * 0.7 + 0.5 } unpack "CCC", pack "H6", $_'
24 (made them darker by 30%)
25
26 red has been darkened further manually