in reply to Golfing Colors
map{printf'#%02x%02x%02x ',$_%6*51,($_/=6)%6*51,($_/6|0)*51}(0..215);
After Compline
Zaxo
Update:Doh, forgot to remove unneeded list parens. 67 strokes.
map{printf'#%02x%02x%02x ',$_%6*51,($_/=6)%6*51,($_/6|0)*51}0..215;
|
---|