T1 logo in JS+PNG

Initially, my logo was 105K GIF. Now it’s transparent PNG+JS. As easy as:

01//
02var color = 0;
03var interval = 60;  /* time msec, after which color changes */
04var clrInc = 4;     /* HSV degree increment */
05function chcolor(){
06    var t1_logo = document.getElementById("t1_tl"); /* div_to_animate */
07    color < 360 ? color = color + clrInc : color = 0;
08    t1_logo.style.backgroundColor = "hsl("+color+", 100%, 50%)";
09}
10 
11function stchcol(){
12    var logoChCol = setInterval(chcolor, interval);
13}
14window.onload = stchcol;
15//-->

and

1<div id="t1_tl">
2<a href="http://tiamat.name"><img decoding="async" src="/img/t1_x180_y80_transparent.png" alt="Main page"></a><!--You can view the PNG on a black background.-->
3</div>

Benefits are smaller page size, smaller prcessor load. Eventuall, animation in JS consumes lees resources than a GIF rendering. 35% losad with GIF animation vs 15% load with JS animation. At least, in Fedora 16 with nouveau.

The idea was given to me by fiskus, but it was quite a long ago, so I feel I had the same idea at the moment he suggested it to me. Nevertheless, he desrves a credit.