From 1f46439e32f7ad6573edf3b787d3326a21830aaa Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sun, 4 Feb 2024 15:40:30 +0000 Subject: [PATCH] better colours & alpha --- .../Bootstrapper/ProgressFluentDialogViewModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bloxstrap/UI/ViewModels/Bootstrapper/ProgressFluentDialogViewModel.cs b/Bloxstrap/UI/ViewModels/Bootstrapper/ProgressFluentDialogViewModel.cs index fa8ff8d..9290714 100644 --- a/Bloxstrap/UI/ViewModels/Bootstrapper/ProgressFluentDialogViewModel.cs +++ b/Bloxstrap/UI/ViewModels/Bootstrapper/ProgressFluentDialogViewModel.cs @@ -19,14 +19,14 @@ namespace Bloxstrap.UI.ViewModels.Bootstrapper public ProgressFluentDialogViewModel(IBootstrapperDialog dialog, bool aero) : base(dialog) { - const int alpha = 32; + const int alpha = 128; WindowBackdropType = aero ? BackgroundType.Aero : BackgroundType.Mica; if (aero) BackgroundColourBrush = App.Settings.Prop.Theme.GetFinal() == Enums.Theme.Light ? - new SolidColorBrush(Color.FromArgb(alpha, 255, 255, 255)) : - new SolidColorBrush(Color.FromArgb(alpha, 0, 0, 0)); + new SolidColorBrush(Color.FromArgb(alpha, 225, 225, 225)) : + new SolidColorBrush(Color.FromArgb(alpha, 30, 30, 30)); } } }