ssbeefeater / react-typed

A react wrapper for typed.js
http://ssbeefeater.github.io/react-typed
MIT License
325 stars 35 forks source link

Change the cursor color #62

Closed SergioVerissimo1 closed 8 months ago

SergioVerissimo1 commented 8 months ago

Is it possible to change the cursor color, so that the cursor has a different color than the rest of the sentence?

ssbeefeater commented 8 months ago

you can use css to change the cursor color

.typed-cursor {
  color: red;
}
SergioVerissimo1 commented 8 months ago

Thank you for the help!