void main(){
    vec3 c = teal;
    float f = voronoi(vec3(uv() * 10., time)).x;
    c = mix(c,  hsv2rgb(vec3(f * -5., .25, .7)), step(fract(f * 10.), .5));
    gl_FragColor= vec4(c, 1.0);
}