Random Hex Color

Generates a random hex color.

Contributed by @ditinagrawal

javascript
function randomHexColor() {
  return `#${Math.floor(Math.random() * 0xffffff)
    .toString(16)
    .padStart(6, "0")
    .toUpperCase()}`;
}
javascript
randomHexColor(); // Example: #A1B2C3
GitHubEdit on GitHub