using System.Windows; using ModernWpf; using ModernWpfPlayground.Types; namespace ModernWpfPlayground { /// /// Interaction logic for App.xaml /// public partial class App { /// protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); ThemeManager.Current.AccentColor = AccentColors.Green.ToWindowsColor(); } } }