Atom 编辑器字体调节
2017-07-27 本文已影响341人
wonear
各个地方的字体调节均有注释
编辑方法:打开 "File"--"Settings"--"Open Config Folder",然后复制下面代码,粘贴就行了。
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
//顶部tab选项卡字体调节
.tab-bar .tab {
font-size: 18px;
font-family:Consolas;
}
//顶部选中时的tab选项卡字体
.tab.active .title {
font-size: 20px;
opacity: 1;
}
//左边目录列表字体样式
.tree-view {
font-size: 20px;
font-family:consolas;
}
// 编辑区域字体调节
atom-text-editor {
font-size: 20px;
font-family: consolas
// background-color: hsl(180, 24%, 12%);
}
//设置界面字体样式调节
.settings-view .setting-description {
font-size: 20px;
font-family:consolas;
}
atom-pane {
font-size: 16px;
}
//底部字体和窗框的样式
.status-bar {
font-size: 16px;
height: 30px;
line-height:30px;
}
关于工具栏"File","Edit"...的字体没能找到调节的方法,有知道的朋友望不吝赐教。