For those who find the color of the text unbearable:
let elements = document.querySelectorAll('span');
for (el of elements) { el.style.color = 'black'; }
replies(1):
let elements = document.querySelectorAll('span');
for (el of elements) { el.style.color = 'black'; }
It's much more readable now.