Skip to content

Instantly share code, notes, and snippets.

@nenadg
Created January 26, 2015 13:54
Show Gist options
  • Save nenadg/0e8ace14ea24d7b2dfe5 to your computer and use it in GitHub Desktop.
Save nenadg/0e8ace14ea24d7b2dfe5 to your computer and use it in GitHub Desktop.
(function(colors){
for(var i in colors){
var element = document.createElement('div');
element.style.cssText = 'width: 10px; height: 10px; background: ' + colors[i] + '; position: absolute; top: 0px; left: ' + (i*10) + 'px; z-index: 999999999;';
document.body.appendChild(element);
}
})(['#932674', '#EDAD0B', '#A4C520', '#009250', '#0086AB', '#EDD0E5', '#FEF7D5', '#D1F1CC', '#C9E8F1', '#5D639E', '#FFE600', '#5EC84E','#95DFD6', '#BF1E56', '#DA5019', '#E4EC5B', '#E6855E', '#23AC0E', '#E6855E', '#F3C0AB']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment