Add CSS media query for dark mode

pull/435/head
Jonathan 2 years ago committed by GitHub
parent 3d07f0eb97
commit 35c6684c5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -380,3 +380,12 @@ span[data-img-src]::after {
width: var(--width);
background-repeat: no-repeat;
}
@media (prefers-color-scheme: dark) {
.editor-toolbar {
background: #333;
}
.editor-toolbar button {
color: #ddd;
}
}

Loading…
Cancel
Save