er, oh. I'd probably just throw up a bit-shift routine like this (in AS3, anyway):

var c:uint = Math.round(0xff * perc);
var color:uint = 0xff0000 | c << 8 | c;

Ok so yeah, round before merging ^_^