1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【VSCode】ターミナルの文字の色を変更する方法(備忘録)

Posted at

前提

  • OS:Windowesを想定
  • 環境:vscode 1.85.1

補足:vscodeのバージョン確認方法
Help > Aboutをクリックすると、ポップアップが表示

1.setting.jsonを開く

VSCodeを開きCtrl+Shift+Pを同時に押し、
コマンドパレットを開き、settingsと入力。
Setting(JSON)を選択。

image.png

2.文字色の変更

settings.json内に次の文言を追記します。
色を指定の部分に任意の色を指定します。

settins.json
"workbench.colorCustomizations": {
  "terminal.foreground": "色を指定",
}

例:文字色を水色に変更

settins.json
"workbench.colorCustomizations": {
  "terminal.foreground": "#50C1FF",
}

実行結果

水色に変更されました。

image.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?