スタイル. markdown. プレビュー画面(markdown-preview-enhanced). 表示カスタマイズ
設定方法
- Ctrl + Shift + P →
Markdown Preview Enhanced: Customize CSS
- →
~/.mume/style.less
というファイルが出てくるので編集
- →
file:///Users/username/.mume/style.less
less
.markdown-preview.markdown-preview {
// General
font-size: 15px;
font-family: 'Cica';
h1, h2, h3, h4, h5 {
font-size: larger;
}
h1 {
color: gray;
text-decoration: underline;
}
h2 {
margin-top: 15px;
padding-top: 5px;
padding-left: 10px;
background-color: whitesmoke;
}
h3 {
border-bottom: solid 1px lightgray;
}
th {
text-align: center;
}
}