Спасибо за помощь.
Но мне ненужно получать цвет с помощью get. Мне нужно сделать сравнение на цвет тега. Вот так:
<script>
document.addEventListener('DOMContentLoaded', function()
{
document.getElementById("text").style.backgroundColor = "LightGrey";
// var LightGrey = document.getElementById("text").style.backgroundColor;
document.addEventListener('click',
function(event) {
if(event.target.style.backgroundColor == "lightgrey") alert("LightGrey");
})
});
</script>