3
2

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】ターミナルの配色を変更する

Last updated at Posted at 2022-08-31

ターミナルの配色を変更する方法

setting.jsonに以下のように記述することでターミナルの配色が変更できます。

~/Library/Application Support/Code/User/settings.json
  "workbench.colorCustomizations": {
    "terminal.foreground": "#c6c8d1",
    "terminal.background": "#161821",
    "terminal.ansiBlack": "#1e2132",
    "terminal.ansiBlue": "#84a0c6",
    "terminal.ansiCyan": "#89b8c2",
    "terminal.ansiGreen": "#b4be82",
    "terminal.ansiMagenta": "#a093c7",
    "terminal.ansiRed": "#e27878",
    "terminal.ansiWhite": "#c6c8d1",
    "terminal.ansiYellow": "#e2a478",
    "terminal.ansiBrightBlack": "#6b7089",
    "terminal.ansiBrightBlue": "#91acd1",
    "terminal.ansiBrightCyan": "#95c4ce",
    "terminal.ansiBrightGreen": "#c0ca8e",
    "terminal.ansiBrightMagenta": "#ada0d3",
    "terminal.ansiBrightRed": "#e98989",
    "terminal.ansiBrightWhite": "#d2d4de",
    "terminal.ansiBrightYellow": "#e9b189",
    "terminal.selectionBackground": "#272C42",
    "terminalCursor.foreground": "#c6c8d1"
  },

以下のページからカラーテーマを探しGitHubの同名のファイルのコードをコピーして貼り付けると簡単に変更できます。

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?