div {
width: 100px;
height: 100px;
color: red;
transition: color 2s;
}
div:hover {
color: blue;
}