ZSSRichTextEditor icon indicating copy to clipboard operation
ZSSRichTextEditor copied to clipboard

Dark mode

Open halpz opened this issue 5 years ago • 2 comments

will there be a dark mode support for this plugin?

thanks

halpz avatar Jan 10 '20 11:01 halpz

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">

YoomamaFTW avatar Jan 13 '20 01:01 YoomamaFTW

thanks this works!

please include this in the next build if you're reading devs!

halpz avatar Jan 14 '20 16:01 halpz