Skip to content

Commit

Permalink
[fix] fixes off-white color
Browse files Browse the repository at this point in the history
  • Loading branch information
coderPaddyS committed Feb 7, 2024
1 parent 1f6321e commit cf95721
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions app/src/main/res/values-night/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,30 @@
<item name="colorIconFill">@color/white</item>
<item name="android:statusBarColor">@color/colorSecuso</item>

<item name="alertDialogTheme">@style/SimpleDialogTheme.Material3</item>
<item name="toolbarStyle">@style/AppTheme.ActionBar</item>

<item name="alertDialogTheme">@style/AppTheme.PopupOverlay.DialogAlert</item>
<item name="colorControlNormal">@color/white</item>
<item name="android:homeAsUpIndicator">@drawable/arrow_back</item>
<item name="preferenceTheme">@style/ThemeOverlay.App.Preference</item>
<item name="actionOverflowButtonStyle">@style/AppTheme.ActionBar.OverflowMenu</item>
</style>

<style name="ThemeOverlay.App.Preference" parent="PreferenceThemeOverlay">
<item name="switchPreferenceCompatStyle">@style/PreferenceMaterialSwitch</item>
</style>


<style name="AppTheme.ActionBar" parent="Widget.Material3.Toolbar.Surface">
<style name="AppTheme.ActionBar" parent="Widget.Material3.Toolbar">
<item name="android:background">@color/colorSecuso</item>
<item name="navigationIconTint">@color/white</item>
<item name="titleTextColor">@color/white</item>
<item name="subtitleTextColor">@color/white</item>
</style>

<style name="AppTheme.ActionBar.OverflowMenu" parent="Widget.Material3.Toolbar">
<item name="android:src">@drawable/baseline_more_vert_white</item>
<item name="android:paddingEnd">10dp</item>
</style>

<style name="AppTheme.SearchView" parent="AppTheme">
Expand Down

0 comments on commit cf95721

Please sign in to comment.