# 色を変更したい ```json { "workbench.colorCustomizations": { "statusBar.background": "#84a0c6", "statusBar.noFolderBackground": "#84a0c6", "statusBar.debuggingBackground": "#84a0c6", "statusBar.foreground": "#161821", "statusBar.debuggingForeground": "#161821" }, } ``` ``settings.json``に``workbench.colorCustomizations``を使って、画面内のさまざまなパーツの色をカスタマイズできます。 色はRGB値(``#RGB`` / ``#RRGGBB``)とアルファチャンネル(``#RGBA`` / ``#RRGGBBAA``)の形式で指定できます。 ## リファレンス - [Theme Color - VS Code](https://code.visualstudio.com/api/references/theme-color) - [Status Bar colors - VS Code](https://code.visualstudio.com/api/references/theme-color#status-bar-colors)