blue color border inside input field in html code example
Example 1: change input border color when selected
input:focus {
outline: none;
border: 1px solid red;
}
Example 2: html input type colour internal border
input::-webkit-color-swatch {
border: none;
}