Changing comment colour in Atom editor

后端 未结 3 1161
渐次进展
渐次进展 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:22

    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;
    }
    

提交回复
热议问题