Small tweaks to preferences screen; restore default accent color

pull/884/head
Alinson S. Xavier 5 years ago
parent b0c5552cfa
commit 256ca13dca
No known key found for this signature in database
GPG Key ID: DCA0DAD4D2F58624

@ -30,7 +30,7 @@
<item name="android:textColor">@color/grey_800</item> <item name="android:textColor">@color/grey_800</item>
<item name="cardBackground">@drawable/card_light_background</item> <item name="cardBackground">@drawable/card_light_background</item>
<item name="cardBgColor">@color/grey_50</item> <item name="cardBgColor">@color/grey_50</item>
<item name="colorAccent">#303030</item> <item name="colorAccent">?aboutScreenColor</item>
<item name="colorPrimary">#363636</item> <item name="colorPrimary">#363636</item>
<item name="colorPrimaryDark">#303030</item> <item name="colorPrimaryDark">#303030</item>
<item name="dialogIconChangeColor">@drawable/ic_action_color_light</item> <item name="dialogIconChangeColor">@drawable/ic_action_color_light</item>
@ -60,6 +60,7 @@
<item name="windowActionModeOverlay">true</item> <item name="windowActionModeOverlay">true</item>
<item name="windowBackgroundColor">@color/grey_200</item> <item name="windowBackgroundColor">@color/grey_200</item>
<item name="android:textColorAlertDialogListItem">@color/grey_800</item> <item name="android:textColorAlertDialogListItem">@color/grey_800</item>
<item name="singleLineTitle">false</item>
</style> </style>
<style name="AppBaseThemeDark" parent="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar"> <style name="AppBaseThemeDark" parent="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar">
@ -104,6 +105,7 @@
<item name="buttonBarNegativeButtonStyle">@style/DialogButtonStyle</item> <item name="buttonBarNegativeButtonStyle">@style/DialogButtonStyle</item>
<item name="buttonBarPositiveButtonStyle">@style/DialogButtonStyle</item> <item name="buttonBarPositiveButtonStyle">@style/DialogButtonStyle</item>
<item name="android:textColorAlertDialogListItem">@color/grey_100</item> <item name="android:textColorAlertDialogListItem">@color/grey_100</item>
<item name="singleLineTitle">false</item>
</style> </style>
<style name="AppBaseThemeDark.PureBlack"> <style name="AppBaseThemeDark.PureBlack">

@ -24,35 +24,35 @@
android:key="interfaceCategory" android:key="interfaceCategory"
android:title="@string/interface_preferences"> android:title="@string/interface_preferences">
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_short_toggle" android:key="pref_short_toggle"
android:summary="@string/pref_toggle_description" android:summary="@string/pref_toggle_description"
android:title="@string/pref_toggle_title" android:title="@string/pref_toggle_title"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_midnight_delay" android:key="pref_midnight_delay"
android:summary="@string/pref_midnight_delay_description" android:summary="@string/pref_midnight_delay_description"
android:title="@string/pref_midnight_delay_title" android:title="@string/pref_midnight_delay_title"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_skip_enabled" android:key="pref_skip_enabled"
android:summary="@string/pref_skip_description" android:summary="@string/pref_skip_description"
android:title="@string/pref_skip_title" android:title="@string/pref_skip_title"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_unknown_enabled" android:key="pref_unknown_enabled"
android:summary="@string/pref_unknown_description" android:summary="@string/pref_unknown_description"
android:title="@string/pref_unknown_title" android:title="@string/pref_unknown_title"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_checkmark_reverse_order" android:key="pref_checkmark_reverse_order"
android:summary="@string/reverse_days_description" android:summary="@string/reverse_days_description"
@ -60,7 +60,7 @@
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_pure_black" android:key="pref_pure_black"
android:summary="@string/pure_black_description" android:summary="@string/pure_black_description"
@ -92,14 +92,14 @@
android:title="@string/reminder_sound" android:title="@string/reminder_sound"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_sticky_notifications" android:key="pref_sticky_notifications"
android:summary="@string/sticky_notifications_description" android:summary="@string/sticky_notifications_description"
android:title="@string/sticky_notifications" android:title="@string/sticky_notifications"
app:iconSpaceReserved="false" /> app:iconSpaceReserved="false" />
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_led_notifications" android:key="pref_led_notifications"
android:summary="@string/led_notifications_description" android:summary="@string/led_notifications_description"
@ -189,7 +189,7 @@
android:key="devCategory" android:key="devCategory"
android:title="Development"> android:title="Development">
<CheckBoxPreference <SwitchPreferenceCompat
android:defaultValue="false" android:defaultValue="false"
android:key="pref_developer" android:key="pref_developer"
android:title="Enable developer mode" android:title="Enable developer mode"

Loading…
Cancel
Save