How to change contrast of highlights in typst app?

I’m using dark mode in browser typst app. The search function highlight is pretty hard to see, so I spent enormous amount of time locating the text I searched in the window. Is there a way how to increase the highlight contrast in the app? Couldn’t find it in the settings.

If there’s no such setting, I’d like to propose increasing the contrast and/or adding a highlight animation to point readers attention to the highlighted text.

#ffff0054 looks pretty good to me. You can use any CSS modification plugin (like Stylus) and modify

@keyframes searchHighlight {
  0%, 66% {
    opacity: 0.5;
  }
  33%, 100% {
    opacity: 1;
  }
}

.cm-searchMatch {
  animation: searchHighlight 1s ease-in-out;
  background-color: #ffff007f !important;
}