216 web safe colors

<table>
<tr>
<%
iCount = 0
%>
<%for i = 70 to 48 step -3%>
<%for j = 70 to 48 step -3%>
<%for k = 70 to 48 step -3%>
<%
if i = 64 then i = 57
if j = 64 then j = 57
if k = 64 then k = 57

if iCount = 12 then
iCount = 1
%>
</tr>
<tr>
<%
else
iCount = iCount + 1
end if

sHex = chr(i) & chr(i) & chr(j) & chr(j) & chr(k) & chr(k)
%>
<td bgcolor="#<%=sHex%>">
<font color="#<%=sHex%>"><%=sHex%></font>
</td>
<%next%>
<%next%>
<%next%>
</tr>
</table>

Sponsors