This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Blinking cursor styling

#23661
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Well, most browsers determine this color automatically, on others this is inherited. I found one possible way to change this via custom CSS. You can try:

input.orig {
  caret-color: rgb(0, 0, 0) !important;
}

This changes the caret color (blinking cursor color) to the default black. No other values can be changed on the caret, this is the only thing that some browsers support.