sparksuite / simplemde-markdown-editor

A simple, beautiful, and embeddable JavaScript Markdown editor. Delightful editing for beginners and experts alike. Features built-in autosaving and spell checking.
https://simplemde.com
MIT License
9.79k stars 1.12k forks source link

[QUESTION] Change caret color #765

Closed nigellima closed 4 years ago

nigellima commented 4 years ago

Is it possible to change the caret color?

I've tried to use new css atribute caret-color: red; but it does not affect it and it's still black

Thanks in advance

luckyshot commented 4 years ago

I know this issue is closed but for anyone else with this question, this is the solution:

.CodeMirror-cursor {
  border-color: white;
}

Since the cursor is essentially a <div>, you can even alter other properties such as the width: border-left-width: 2px;