How to Permanently Change the Color of the Comments in the Script Editor to "black."
(SEE ATTACHED PIC)
How do I make the color of the comments in the Script Editor "black" permanently, using a script, snippet, or whatever other way it takes to accomplish this?
I code a lot in the Script Editor and I store many notes as comments that I refer back to often.
The ISSUE is that the default comment's color of "light gray" (in the Almond Theme) is difficult to see at times. (SEE ATTACHED PIC)
This is why I want to change the comments color to "black," so I can quickly and easily read my comments and continue coding seamlessly.
Below, works. BUT, AS SOON AS YOU SCROLL UP OR DOWN, the "black" comments return to the default "light gray" color:
Array.from(document.getElementsByClassName('cm-comment')).forEach(e=>{
e.style.color = 'black';
})
HOW DO I MAKE THE COMMENT COLORS REMAIN "black" NO MATTER WHAT?
Any assistance would be greatly appreciated.
Thanks in advance
cw