| rgb(0,0,0) | rgb(0,0,51) | rgb(0,0,102) | rgb(0,0,153) | rgb(0,0,204) | rgb(0,0,255) |
<php
for ( $i=0; $i<=5; $i++ ) {
$b1 = $i * 51;
$b2 = 255 - $b1;
echo "<td style='background-color: rgb(0,0,${b1});
color: rgb(255,255,${b2});'>rgb(0,0,${b1})</td>";
}
?>