Как получить доступ к стилю страницы в JS

// if you want to access the style of all the page i suggest doing this:

const GetPageStyle= ()=>{
  return document.querySelector(":root").style;
}
Cloudy Caribou