input focus border color code example
Example 1: color background to input boxes on focus
input:focus {
background-color: yellow;
}
Example 2: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage