I would like to change the colour of comments in the Atom editor. From a bit of googling, I found I can put the following in my .atom/styles.less file:
atom-
Using 1.14.4:
// This styles comment text atom-text-editor .syntax--comment { color: #53FFA1; } // This styles comment punctuation (i.e. //, and /*...*/) .syntax--punctuation.syntax--definition.syntax--comment { color: #008C3F; }