#π Random Color Generator A simple JavaScript project that generates random hex color codes and applies them as background colors. Perfect for learning DOM manipulation and event handling!
#π Features Generates random hex color codes
Updates background color instantly
Clean, minimal JavaScript code
#π» How It Works Uses Math.random() to generate a random number
Converts it to a hex code with toString(16)
Applies the color using document.body.style.backgroundColor #π Why I Built This To practice core JavaScript concepts
Learn about hexadecimal color systems
Experiment with DOM manipulation