Ниче не понял. Это?
<style>
div{
background: blue;
color: white;
}
div:hover{
background: red;
}
</style>
<div style="height:150px;"></div>
<script>
var div = document.querySelector('div');
setInterval(function() {
div.textContent = getComputedStyle(div).backgroundColor;
}, 100);
</script>