Last active
July 21, 2022 21:20
-
-
Save samuelcolvin/da925c0918b23aea2f05210af597d05d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
const set_color = (cls, col) => document.querySelectorAll(cls).forEach(el => { | |
el.parentNode.style.backgroundColor = col; | |
el.parentNode.querySelectorAll('td').forEach(td => {td.style.backgroundColor = col}); | |
}); | |
set_color('.bg-ds-coverage-partial', '#ffa'); | |
set_color('.bg-ds-coverage-uncovered', '#fdd'); | |
})(); |
I've updated this script to work with the new horrid theme.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They could have easily implemented a color-blind settings that was fully client-side without much effort, but someone needs to think about that.