19
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Atom でコメントカラーのみ変更する

Posted at

概要

Atom で気に入ったテーマを見つけても、コメントは緑色にしたいなと思う事があります。
そこで、コメントカラーのみを変更してみようと思います。

方法

File > Settings を開きます。

Themes タブを開き、your stylesheet をクリックします。
atom_stylesheet.png

開かれた styles.less を編集することで、テーマを上書きすることができます。

コメントを緑色にしたいので、末尾に次のコードを追記します。

styles.less
atom-text-editor::shadow .comment {
  color: lime;
}

保存すると即座に反映されます。

まとめ

styles.less を編集することで、コメントカラーに限らず、スタイルを好きにカスタムすることができます。

19
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?