Skip to content

Instantly share code, notes, and snippets.

View matthewsimo's full-sized avatar
👨‍💻
Building

Matthew Simo matthewsimo

👨‍💻
Building
View GitHub Profile
// Paste this into the console
var colors = [...document.querySelectorAll("*")].flatMap((el) => {
const style = getComputedStyle(el);
return [
style.getPropertyValue("color"),
style.getPropertyValue("background-color"),
];
});