←back to thread

Assembly Theory of Time

(faculty.ucr.edu)
37 points andsoitis | 2 comments | | HN request time: 0s | source
1. whatamidoingyo ◴[] No.44380237[source]
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): >>44380275 #
2. whatamidoingyo ◴[] No.44380275[source]
Even better: el.style.color = 'black'; el.style.fontWeight = 'lighter'

It's much more readable now.