代码之家  ›  专栏  ›  技术社区  ›  wheeeee

powershell配色方案?

  •  3
  • wheeeee  · 技术社区  · 6 年前

    有没有一个地方我可以找到人们已经建立的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 回复  |  直到 6 年前
        1
  •  9
  •   LotPings    6 年前

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

    它与任何控制台应用程序(cmd/powershell/wsl bash)的调色板/modifes一起工作。

    colortool可以处理任何.itermcolors方案。

    download from github

    enter image description here

        2
  •  9
  •   Mustkeem K    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。

        3
  •  0
  •   Bonneau21    6 年前

    你可以在ise powershell找到这个

    enter image description here

    enter image description here

        4
  •  0
  •   as - if    5 年前

    我用这个来设计颜色。 solarized-dark 主题。确保用备份当前预设 concfg export console-backup.json 一旦你安装了 scoop concfg . 更多使用此链接 https://github.com/lukesampson/concfg