atomの空白文字、コメント、カーソル行などが読みにくすぎる。


atomエディタの「空白文字」や「コメント」などが読みにくすぎる。

atom-text-editor.editor {
  // コメント
  .syntax--comment {
    color: #888;
  }
  // インデントのルーラ(縦線)
  .indent-guide {
    box-shadow: inset #555 1px 0;
  }
  // 空白文字(半角スペース、タブ、改行)
  .invisible-character {
    color: #777;
  }
}

atom-text-editor .gutter {
  // 行数
  .line-number {
    color: #888;
    // カーソル行の行数
    &.cursor-line {
      color: #FFF;
    }
  }
}

こうやって簡単に変更できるのがatomのいいところですね。