Skip to content

Instantly share code, notes, and snippets.

View coderitual's full-sized avatar
⚛️
design + code

Mike Skowronek coderitual

⚛️
design + code
View GitHub Profile
@coderitual
coderitual / whatthefont.js
Created October 17, 2019 23:15 — forked from matthewmayer/whatthefont.js
paste this into Javascript console to see what fonts are being used
function walk(node) {
// I stole this function from here:
// http://is.gd/mwZp7E
var child, next;
var tagName = node.tagName ? node.tagName.toLowerCase() : "";
if (tagName == 'input' || tagName == 'textarea') {
return;
}