VS Codeでマークダウンのシンタックスハイライトの配色を変更する
テーマDefault Dark+を使っているなら、だいだいこんな感じ。
code:setting.json
"textMateRules": [
{
"scope": "markup.heading.markdown punctuation.definition.heading.markdown",
"settings": {
"foreground": "#041094",
"fontStyle": "",
}
},
{
"scope": "heading.1.markdown entity.name.section.markdown",
"settings": {
"foreground": "#041094",
"fontStyle": "",
}
},
]
}
ref.