change focus border color input code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: css focus change color
<style>
.dabutton:focus {
background-color:yellow;
}
</style>
<button class="dabutton"></button> // <-- usage