atom環境設定

@font-family-p: "メイリオ";
@font-family-m: "ricty diminished discord";

.tree-view {
  font-family: @font-family-p;
}

// style the background and foreground colors on the atom-text-editor-element
// itself
atom-text-editor {
    font-family: @font-family-m;
}

// To style other content in the text editor's shadow DOM, use the ::shadow
// expression
atom-text-editor::shadow .cursor {

}

.vertical {
  font-family: @font-family-p;
}

.tooltip {
  font-family: @font-family-p;
}

.markdown-preview {
  font-family: @font-family-p;

  h1, h2, h3, h4, h5, h6 {
    font-family: @font-family-p;
  }

  code, tt, atom-text-editor {
    font-family: @font-family-m;
  }
}