Skip to content

Instantly share code, notes, and snippets.

@akovantsev
Created September 6, 2019 17:34
Show Gist options
  • Select an option

  • Save akovantsev/6179f850bc8e4b78d4c6eefbc8062c4a to your computer and use it in GitHub Desktop.

Select an option

Save akovantsev/6179f850bc8e4b78d4c6eefbc8062c4a to your computer and use it in GitHub Desktop.
let pad = " ".repeat(10);
for (i=0; i<20; i++) {
let c = "#" + Math.floor(Math.random()*16777215).toString(16);
console.log("%c" + pad + c + pad, "font-size:20px; background-color:" + c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment