I do not know how or how to look to make this scheme leave in orange when I move the mouse.
You can do this with hover
.
Example:
li {
width: 70px;
list-style-type: none;
text-align: center;
}
li:hover {
background-color: orange;
color: white;
}
<ul>
<li>Hover</li>
<li>Focus</li>
<li>Active</li>
</ul>