settings.jsonでコメントの色を設定する
settings.jsonを開き、下記の設定を追加することでdocstringの色を変更できる。
"editor.tokenColorCustomizations": {
"comments": "#d8bfd8", // インラインのコメントの色
"textMateRules": [
{
"scope": [
"string.quoted.docstring.multi.python"
],
"settings": {
"foreground": "#d8bfd8", // docstringのコメントの色
"fontStyle": "italic"
}
}
]