In the css theme file try finding --text-highlight-bg in .theme-dark.
--text-highlight-bg:rgba(255, 177, 80, 0.3);
It’s advised to make the changes via css snippets to override theme style and not directly in css theme file.
.theme-dark {
--text-highlight-bg: rgba(255, 242, 0, 0.4);
}
Attention to the alpha parameter (the “a”) - transparency.