ZSSRichTextEditor
ZSSRichTextEditor copied to clipboard
Dark mode
will there be a dark mode support for this plugin?
thanks
Hi, from YoomamaFTW/RichEditorView. Go to your style.css file and add the following:
:root {
color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
body, #editor {
}
}
and then in your main html file, add this to the head:
<meta name="supported-color-schemes" content="light dark">
thanks this works!
please include this in the next build if you're reading devs!