Skip to content

Instantly share code, notes, and snippets.

@eugrus
Last active April 13, 2025 16:06
Show Gist options
  • Save eugrus/c46827ddeb384b998c36d13e20dde24e to your computer and use it in GitHub Desktop.
Save eugrus/c46827ddeb384b998c36d13e20dde24e to your computer and use it in GitHub Desktop.
javascript:document.querySelectorAll('*').forEach(el => {const color = getComputedStyle(el).color; const rgb = color.match(/\d+/g);if (rgb && rgb.length === 3) {const [r, g, b] = rgb.map(Number);if (g > r + 30 && g > b + 30) {el.style.color = 'blue';}}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment