From 37129c3333a8bc51c02fc3251949aab47f51fad8 Mon Sep 17 00:00:00 2001 From: MyDrift Date: Wed, 4 Sep 2024 13:57:12 +0200 Subject: [PATCH] correct gray shade --- functions/private/Invoke-WinUtilAssets.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/private/Invoke-WinUtilAssets.ps1 b/functions/private/Invoke-WinUtilAssets.ps1 index ff49d8e3..da72c7e6 100644 --- a/functions/private/Invoke-WinUtilAssets.ps1 +++ b/functions/private/Invoke-WinUtilAssets.ps1 @@ -77,7 +77,7 @@ C 21.36,47.14 28.67,50.71 30.01,52.63 "@ $LogoPath3 = New-Object Windows.Shapes.Path $LogoPath3.Data = [Windows.Media.Geometry]::Parse($LogoPathData3) - $LogoPath3.Fill = [Windows.Media.Brushes]::Gray + $LogoPath3.Fill = [System.Windows.Media.BrushConverter]::new().ConvertFromString("#a3a4a6") $canvas.Children.Add($LogoPath1) | Out-Null $canvas.Children.Add($LogoPath2) | Out-Null