Try to create a prism dialog service with custom modern ui window

This commit is contained in:
2020-07-19 22:19:28 +02:00
parent 1cf692547f
commit 7ad587228a
13 changed files with 208 additions and 7 deletions

View File

@ -18,9 +18,9 @@ namespace ModernWpfPlayground.Types
{
return accentColor switch
{
AccentColors.Green => Color.FromRgb(0, 86, 76),
AccentColors.Green => Color.FromRgb(33, 115, 70),
AccentColors.Yellow => Color.FromRgb(164, 144, 0),
AccentColors.Blue => Color.FromRgb(0, 120, 215),
AccentColors.Blue => Color.FromRgb(43, 87, 154),
AccentColors.Purple => Color.FromRgb(104, 33, 122),
AccentColors.Red => Color.FromRgb(183, 71, 42),
_ => throw new ArgumentOutOfRangeException(nameof(accentColor), accentColor, null)