#๐ 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