打開atom的自定義樣式
- 在Atom里 快捷鍵Ctrl+Shift+P, 輸入 “open your stylesheet”
- 在Atom里 快捷鍵Ctrl+Shift+P 輸入"Welcome guide",在打開的面板里選擇“Customize the Styling”-"Open your stylesheet"
編輯打開的style.less
atom 版本1.7+
插入以下內(nèi)容
html, html * {
background: rgba(0, 0, 0, 0) !important;
}
atom-pane, atom-panel, atom-notification {
background: rgba(0, 0, 0, 0.5) !important;
}
atom-overlay > * {
background: rgba(0, 0, 0, 0.9) !important;
}
atom-text-editor::shadow {
.cursor-line {
background-color: rgba(0, 0, 0, 0.2) !important;
}
.selection .region {
background-color: rgba(0, 0, 0, 0.2) !important;
}
.gutter {
background-color: rgba(0, 0, 0, 0) !important;
}
}
如果Atom版本Pre-1.9的
html * {
background: rgba(0, 0, 0, 0) !important;
}
如果版本是1.9+的
html, html * {
background: rgba(0, 0, 0, 0) !important;
}