Atom编辑器的使用

Atom编辑器如何改变界面的字体

File>Stylesheet

.tree-view {
  // background-color: whitesmoke;
  font-size: 16px
}

// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
  // color: white;
  // background-color: hsl(180, 24%, 12%);
}

// style UI elements inside atom-text-editor
atom-text-editor .cursor {
  border-color: red;
}

你可能感兴趣的:(Atom编辑器的使用)