diff --git a/src/Android/Utilities/ThemeHelpers.cs b/src/Android/Utilities/ThemeHelpers.cs index b33aabc53..fa3bf4134 100644 --- a/src/Android/Utilities/ThemeHelpers.cs +++ b/src/Android/Utilities/ThemeHelpers.cs @@ -59,10 +59,10 @@ namespace Bit.Droid.Utilities { if (string.IsNullOrWhiteSpace(theme) && osDarkModeEnabled) { - theme = "dark"; + theme = ThemeManager.Dark; } - if (theme == "dark" || theme == "black" || theme == "nord") + if (theme == ThemeManager.Dark || theme == ThemeManager.Black || theme == ThemeManager.Nord) { LightTheme = false; } diff --git a/src/App/Pages/Settings/OptionsPage.xaml b/src/App/Pages/Settings/OptionsPage.xaml index bbfb380ab..8d37074c6 100644 --- a/src/App/Pages/Settings/OptionsPage.xaml +++ b/src/App/Pages/Settings/OptionsPage.xaml @@ -33,6 +33,23 @@ StyleClass="box-footer-label" Text="{u:I18n ThemeDescription}" /> + + + +