Skip to content

Instantly share code, notes, and snippets.

@Tymek
Created February 12, 2025 13:41
Show Gist options
  • Save Tymek/c51f3dfb098dbd8b5310b52114e1adf4 to your computer and use it in GitHub Desktop.
Save Tymek/c51f3dfb098dbd8b5310b52114e1adf4 to your computer and use it in GitHub Desktop.
Visually checking font-size on the page.
(() => {
document.querySelectorAll('*').forEach(el => {
const hasDirectText = Array.from(el.childNodes).some(
node => node.nodeType === Node.TEXT_NODE && node.textContent.trim().length > 0
)
if (hasDirectText) {
const size = window.getComputedStyle(el).fontSize
if (size === '16px') {
el.style.backgroundColor = 'red'
} else if (size === '15px') {
el.style.backgroundColor = 'green'
} else if (size === '14px') {
el.style.backgroundColor = 'blue'
} else {
el.style.backgroundColor = 'yellow'
}
}
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment