<canvas id = 'canv'></canvas>

<!-- Click / Tap for New --!>
@import url(https://fonts.googleapis.com/css?family=Fredericka+the+Great);
body{
  width:100%;
  margin:0;
  overflow:hidden;
  cursor:pointer;
}
var c = document.getElementById('canv') 
var w = c.width = window.innerWidth;
var h = c.height = window.innerHeight;
var $ = c.getContext("2d");

function draw(c1, c2, s, rat, _x, _y){
	var x=0, y=0;
	var col = 0, split = rat/100;
	while (x<=w){
		while(y<=h){
		  col = Math.random();
        if(col<split) $.fillStyle = c1;
        else $.fillStyle = c2;
			geo(x,y,s);
			y+=(s*1.0)+(_y*1.0);
		}
		  x+=(s*1.0)+(_x*1.0); y=0;    
    } 
  txt();
}
function geo(x, y, l){
	$.save();
	$.translate(x,y);
	$.rotate(Math.floor(Math.random()*4)*(Math.PI/2));
  $.shadowColor = 'hsla(0,0%,65%,.5)';
  $.shadowBlur = Math.random()*100;
  $.shadowOffsetX = 1;
  $.shadowOffsetY = 1;
	$.beginPath();
	$.lineTo(l,-l);
	$.lineTo(l,0);
	$.lineTo(0,l);
	$.lineTo(-l,0);
	$.lineTo(-l,-l);
	$.lineTo(0,0);
	$.closePath();
	$.fill();
	$.restore();
}
draw('hsla(0,0%,95%,1)', 'hsla(0,0%,90%,1)', 100, 55, 0, 0); 
function txt() {
  var t   =  "THE SURFACE".split("").join(String.fromCharCode(0x2004));
  $.font = "3.5em Fredericka the Great";
  $.fillStyle = 'hsla(0, 0%, 80%, 1)';
  $.shadowColor = 'hsla(0, 0%, 10%, .7)';
  $.shadowBlur = 2;
  $.shadowOffsetX = 4;
  $.shadowOffsetY = 3;
  $.fillText(t, (c.width - $.measureText(t).width) * 0.5, c.height * 0.5);
}
/*.....Randomize on click /tap.......*/
window.addEventListener('mousedown',function(e){
  e.preventDefault();
  draw('hsla(0,0%,95%,1)', 'hsla(0,0%,90%,1)', 100, 55, 0, 0); 
}, false);

window.addEventListener('touchstart',function(e){
  e.preventDefault();
  draw('hsla(0,0%,95%,1)', 'hsla(0,0%,90%,1)', 100, 55, 0, 0); 
}, false);

/*.....Resize.......*/
window.addEventListener('resize',function(){
  c.width = w = window.innerWidth;
  c.height = h = window.innerHeight;
  draw('hsla(0,0%,95%,1)', 'hsla(0,0%,90%,1)', 100, 55, 0, 0); 
},false);

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.