@anatudor @codepen
Here is a fix to poor text selection color with the filter trick:
```css /* inner span helps fix background-letter overlap */ span { isolation: isolate; }
::selection { background: #0ff; color: #f00; }```