I've recently incorporated media queries into an ePub to account for light and dark mode on
Apple Books.
My OS (Mac Sonoma) is in dark mode, and I have Sigil set change to Dark Preview. However, Preview still only responds to a light mode media query, e.g.
Code:
@media (prefers-color-scheme: light) {
p { color: black }
}
@media (prefers-color-scheme: dark) {
p { color: white }
}
shows text in black. Is it possible to have Sigil's Preview browser access the OS level theme, e.g.
prefers-colors-scheme?
The queries work in Apple Books, but it would be great to have Preview respond to this feature, saving having to reload the epub into Apple Books for small fixes.