検索置換の色を変える

https://techmemo.biz/sw/vscode-workbench-colorcustomizations/ を見て、検索置換の色味を変えた。もっと早く変えれば良かった。

settings.json を次のようにする。

{
  "workbench.colorCustomizations": {
    "editor.lineHighlightBackground": "#e2adad", // これは行のハイライトになる
    "editor.wordHighlightBackground": "#aa6363",
    "editor.wordHighlightStrongBackground":"#bc7af3",
    "editor.lineHighlightBorder": "#0aeb5500",
    "editor.rangeHighlightBackground":"#a88080",
    "editor.selectionHighlightBackground":"#c7ecdd", // これは段落のハイライトになる、間違いない
    "editor.findMatchHighlightBackground": "#ced4ed", //検索文字列の背景色
    "editor.findMatchBorder": "#ff6347", //フォーカスされている検索文字列の枠線の色
    "editor.findMatchBackground": "#ffff00", //フォーカスされている検索文字列の背景色
}