private async Task ReloadControls()
        {
            await experiments.Initialize();

            testColor = experiments.Get <Color>(Experiments.PURCHASE_BUTTON_BACKGROUND_COLOR, Colors.Gray);
            btnPurchase.Background = new SolidColorBrush(testColor);
            experiments.LogView <Color>(Experiments.PURCHASE_BUTTON_BACKGROUND_COLOR, testColor);
        }