web-dev-qa-db-fra.com

Palettes de couleurs Powershell?

Existe-t-il un endroit où je peux trouver des palettes de couleurs Powershell déjà construites? Quelque chose comme https://github.com/lysyi3m/osx-terminal-themes , mais pour Windows Powershell au lieu de OSX.

J'ai trouvé celui-ci: https://github.com/Segaso/MonokaiTheme , mais je suis confus quant à l'endroit où je trouve ces "outils". Lorsque je clique avec le bouton droit de la souris sur l'une des fenêtres de PowerShell, tout ce que je vois est le suivant:

 enter image description here

Et c'est tout ce que je vois sous propriétés:

 enter image description here

3
wheeeee

Microsoft lui-même publié l'année dernière Windows Console Colortool

Il fonctionne avec/modifie la palette de n’importe quelle application de la console (cmd/Powershell/WSL-bash).

Colortool fonctionnera avec n’importe quel schéma .itermcolors.

télécharger depuis github

 enter image description here

7
LotPings

C'est facile. Vous pouvez exécuter ces commandes dans PowerShell. Ceci est un jeu de couleurs personnalisé.

$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

Si vous voulez avoir votre propre schéma, vous pouvez choisir les couleurs que vous souhaitez. 

Courir

get-help write-Host

Vous obtiendrez toutes les couleurs disponibles pour Powershell. 

3
Must Keem J

Vous le trouverez dans ISE Powershell 

 enter image description here

 enter image description here

0