Coś takiego?
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<title>a</title>
<style>
#try{
cursor: pointer;
font-size: 60px;
color: red;
}
#try:hover{
color: blue;
}
#try:active{
color: green;
}
</style>
</head>
<body>
<span id="try"> ❤ </span>
</body>
</html>