diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-02 22:33:40 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-11-03 15:51:45 +0530 |
commit | 9a00e68ab6d4147c8fd0846304c9b16243fb774e (patch) | |
tree | fa59b16c4e5f6b6e78cdd260678ea1b0de0e1485 /app/src/main/res/values | |
parent | fc662bfd2545055d411a62efdfb464214b2529f3 (diff) |
app: fix system bars theming
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/themes_material3.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/src/main/res/values/themes_material3.xml b/app/src/main/res/values/themes_material3.xml index 2d692627..e052f530 100644 --- a/app/src/main/res/values/themes_material3.xml +++ b/app/src/main/res/values/themes_material3.xml @@ -33,5 +33,8 @@ <item name="colorSurfaceInverse">@color/md_theme_light_inverseSurface</item> <item name="colorPrimaryInverse">@color/md_theme_light_primaryInverse</item> <item name="fontFamily">@font/manrope</item> + <item name="android:windowLightStatusBar">@bool/light_status_bar</item> + <item name="android:statusBarColor">?android:colorBackground</item> + <item name="android:navigationBarColor">?android:colorBackground</item> </style> </resources> |