Changing comment colour in Atom editor

后端 未结 3 1126
渐次进展
渐次进展 2020-12-24 12:58

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-         


        
3条回答
  •  有刺的猬
    2020-12-24 13:40

    The syntax is changed in 1.14. Now, you need to use this for changing the comment color

    atom-text-editor .syntax--comment {
             color: #228B22;
    }
    

提交回复
热议问题