const randomHex = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;
console.log(randomHex());
// Result: #92b008
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Random Hex Code Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="flex-row-outer">
<div class="flex-row">
<span id="hexCode">#000000</span>
<button class="colorBtn" onClick="GenerateCode()">Generate</button>
</div>
</div>
<script type="text/javascript">
let body = document.querySelector("body");
let hexCode = document.querySelector("#hexCode");
body.style.backgroundColor = hexCode.innerText;
function GenerateCode() {
let RandomColor = "";
let Char = "0123456789abcdefghijklmnopqrstuvwxyz";
for(i = 0; i < 6; i++) {
RandomColor = RandomColor + Char[Math.floor(Math.random() * 16)];
}
hexCode.innerText = "#" + RandomColor;
body.style.backgroundColor = "#" + RandomColor;
}
</script>
</body>
</html>
const hexColor = () => "#" + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0')
//Random hexa decimal code
'#'+Math.floor(Math.random()*16777215).toString(16);
const randomHexColor = () =>
`#${Math.random().toString(16).slice(2, 8).padEnd(6, '0')}`;
console.log(randomHexColor()); // #7a10ba (varies)
console.log(randomHexColor()); // #65abdc (varies)
const hexColor = () => `#${Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0")}`;