Bug report -- is this the right place? Strings in %q(...) format in dark mode

Not sure if this is the right place to post this, but I couldn’t find the issue tracker on the github page.
There’s a bug with displaying multi-line quotes using the %q(…) format when in dark mode. The text is black on a black background. Heredocs and normal quoted text works fine, but not %q(…) strings. Here’s some sample code to illustrate:

eval_file "e:/yummy/yummyfillings.rb"

heredoc = <<-TEST
This is a heredoc quoted string.
  TEST

qdoc = %q(
  This is a q quoted string.
)

plain = "This is a plain quoted string."



That’s really weird, the %q(...) one is completely invisible:

You can see the string when it’s selected:

The issue tracker is here: Issues · sonic-pi-net/sonic-pi · GitHub, that’s probably the best place to report it.

Thanks for pointing me to the right place to reported it. I filed an issue.
Not a tremendously huge thing, but an annoyance, and one that’s hopefully easy to fix.