HTML:
php
Copy code
CSS:
css
Copy code
#color-box {
width: 100px;
height: 100px;
margin: 20px;
border: 1px solid black;
display: flex;
justify-content: center;
align-items: center;
}
#color-name {
font-size: 24px;
}
.red {
background-color: red;
color: white;
}
.black {
background-color: black;
color: white;
}
.green {
background-color: green;
color: white;
}
.blue {
background-color: blue;
color: white;
}
JavaScript:
javascript
Copy code
function changeColor() {
const colors = ["red", "black", "green", "blue"];
const randomNumber = Math.floor(Math.random() * colors.length);
const colorBox = document.getElementById("color-box");
const colorName = document.getElementById("color-name");
const selectedColor = colors[randomNumber];
colorBox.className = selectedColor;
colorName.textContent = `اللون: ${selectedColor}`;
}