Inverted Credits Page
-
Those final credit pages with some light novels - is it possible to have them in inverted colours?
I read everything by default in dark mode; black background and white text
And I often find myself "flashed" by that credits page which always comes in default, like an image. Is it possible to have that one at least by default inverted colours? Preferably a dark mode version, but it kinda looks like an image...
-
@Serah this is possible to do dynamically in CSS if they wanted to do it in the reader at run time:
@media (prefers-color-scheme: dark) { img { filter: invert(100%); } }Of course, they'll probably want additional tags to decide which images to do it on because I'm assuming you wouldn't want to invert actual illustrations.