Powershell配色方案?

时间:2018-05-30 18:59:24

标签: windows powershell

我有没有找到人们已经建造的Powershell配色方案的地方?像https://github.com/lysyi3m/osx-terminal-themes这样的东西,但对于Windows Powershell而不是OSX。

我确实找到了这个:https://github.com/Segaso/MonokaiTheme,但我对于找到这个“工具”的地方感到困惑。当我右键单击任何PowerShell窗口的顶部时,我看到的只有:

enter image description here

这就是我在属性中看到的全部内容:

enter image description here

4 个答案:

答案 0 :(得分:8)

微软自己去年发布了Windows Console Colortool

它适用于/修改任何控制台应用程序的调色板(cmd / Powershell / WSL-bash)。

colortool可以使用任何.itermcolors方案。

download from github

enter image description here

答案 1 :(得分:6)

很简单。您可以在powershell中运行这些命令。这是定制的配色方案。

$Host.UI.RawUI.BackgroundColor = ($bckgrnd = 'Black')
$Host.UI.RawUI.ForegroundColor = 'White'
$Host.PrivateData.ErrorForegroundColor = 'DarkRed'
$Host.PrivateData.ErrorBackgroundColor = $bckgrnd
$Host.PrivateData.WarningForegroundColor = 'Yellow'
$Host.PrivateData.WarningBackgroundColor = $bckgrnd
$Host.PrivateData.DebugForegroundColor = 'Yellow'
$Host.PrivateData.DebugBackgroundColor = $bckgrnd
$Host.PrivateData.VerboseForegroundColor = 'Green'
$Host.PrivateData.VerboseBackgroundColor = $bckgrnd
$Host.PrivateData.ProgressForegroundColor = 'Blue'
$Host.PrivateData.ProgressBackgroundColor = $bckgrnd
Clear-Host

如果您想拥有自己的方案,则可以根据需要选择颜色。

运行

get-help write-host

您将获得适用于Powershell的所有颜色。

答案 2 :(得分:0)

你会在ISE Powershell中找到这个

enter image description here

enter image description here

答案 3 :(得分:0)

我将其用于配色方案。它具有solarized-dark主题。确保使用以下命令备份当前预设  concfg export console-backup.json一旦安装了scoopconcfg。有关更多信息,请使用此链接precedence