I want my input
element had different colors for text and for caret.
I'm already found a solution for webkit browsers:
input {
color: black;
-webkit-text-fill-color: red;
}
But still, I wonder how can I make it for other browsers.
Eventually, I want to have transparent text color and black caret, if it matters.