We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30aa1b5 commit 4a3030dCopy full SHA for 4a3030d
1 file changed
scripts/install.ps1
@@ -18,7 +18,7 @@ $ErrorActionPreference = "Stop"
18
$ACCENT = "`e[38;2;255;77;77m" # coral-bright
19
$SUCCESS = "`e[38;2;0;229;204m" # cyan-bright
20
$WARN = "`e[38;2;255;176;32m" # amber
21
-$ERROR = "`e[38;2;230;57;70m" # coral-mid
+$ERROR_COLOR = "`e[38;2;230;57;70m" # coral-mid
22
$MUTED = "`e[38;2;90;100;128m" # text-muted
23
$NC = "`e[0m" # No Color
24
@@ -27,7 +27,7 @@ function Write-Host {
27
$msg = switch ($Level) {
28
"success" { "$SUCCESS✓$NC $Message" }
29
"warn" { "$WARN!$NC $Message" }
30
- "error" { "$ERROR✗$NC $Message" }
+ "error" { "$ERROR_COLOR✗$NC $Message" }
31
default { "$MUTED·$NC $Message" }
32
}
33
Microsoft.PowerShell.Utility\Write-Host $msg
0 commit comments