如何更改Atom编辑器的注释标记的颜色?

时间:2016-05-21 03:45:41

标签: less editor customization syntax-highlighting atom-editor

我能够用

更改评论内容的颜色
atom-text-editor::shadow .comment {
  color: #E4F4FD;
}

但评论标记的颜色保持不变:

enter image description here

如何更改评论标记的颜色?

1 个答案:

答案 0 :(得分:3)

如果您将光标立即放在要设置样式的字符的左侧,然后按 Ctrl - Alt - Shift - < kbd> P 该字符的所有范围都将显示在信息框中:

Screenshot of Scopes at Cursor

然后,您可以将其与评论正文合并到样式表中:

atom-text-editor::shadow {
  .comment {
    color: #E4F4FD;
  }

  .punctuation.definition.comment {
    color: #E4F4FD;
  }
}

因为它很少,所以可以嵌套使你的样式表更清晰的类。