void main(){
    vec3 c =orange;
    float f = snoise(vec3(theta(), phi() - speed.x * .1, speed.y * .025));
    c += step(fract(f * 4.0), .5) * pink;
    gl_FragColor= vec4(c, 1.0);
}