Hi there,
I have the iOS version of the app (version 24.04), and some of the dark mode styling I am using in the Desktop app is not working.
I am using the pitch accent generated by this great add-on: 148002038
It suggests adding the following style to invert the pitch accent color.
.nightMode svg.pitch {
-webkit-filter: invert(1);
filter: invert(1);
}
However it doesn’t actually work on my device. The colors remain the same.
I was able to get this working by adding the following:
.nightMode svg > text { fill: #fff !important; }
.nightMode svg > path { stroke: #fff !important; }
.nightMode svg > circle[r="5"] { fill: #fff !important; }
.nightMode svg > circle[r="3.25"] { fill: #000 !important; }
But you can start to see how this may become an issue if you simply prefer inverting everything.
Thanks in advance.