Guest User

Untitled

a guest
Jan 15th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. var colors = [
  2. 'rgb(30, 210, 82)',
  3. 'rgb(173, 0, 148)',
  4. 'rgb(247, 223, 12)',
  5. 'rgb(242, 0, 58)',
  6. 'rgb(95, 100, 224)',
  7. 'rgb(14, 0, 225)',
  8. 'rgb(43, 200, 222)',
  9. 'rgb(214, 46, 20)',
  10. 'rgb(250, 0, 6)',
  11. 'rgb(81, 145, 151)',
  12. 'rgb(31, 229, 21)',
  13. 'rgb(102, 213, 105)',
  14. 'rgb(249, 155, 25)',
  15. 'rgb(75, 0, 104)',
  16. 'rgb(21, 61, 119)'
  17. ];
  18.  
  19. // for each color
  20. for(var i = 0; i < colors.length; i++) {
  21. // create a div
  22. var div = document.createElement("div");
  23. // and give it a corresonpding color from our pallete
  24. div.style.background = colors[i];
  25. // and append it to the page
  26. document.body.appendChild(div);
  27. }
Add Comment
Please, Sign In to add comment