I was working on making a dark theme for my website I wrote this code
var elems = document.body.querySelectorAll("*");
elems.style.backgroundColor = "black";
elems.style.color = "white";
and I got this annoying error:
script.js:3
Uncaught TypeError: Cannot set properties of undefined (setting 'backgroundColor')
I am using Microsoft Edge.