Fix notification and status bars colors (#1196)

This commit is contained in:
Damian Czupryn 2021-03-07 15:04:37 +01:00 committed by GitHub
parent 388d37bf9c
commit 5743928126
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@
<item name="android:navigationBarColor" tools:targetApi="lollipop">
@color/colorNavigationBarBlack
</item>
<item name="android:statusBarColor" tools:targetApi="lollipop">@android:color/black</item>
<item name="android:statusBarColor" tools:targetApi="lollipop">@color/colorStatusBarBlack</item>
<item name="android:windowLightStatusBar" tools:targetApi="m">false</item>
</style>

View File

@ -6,10 +6,11 @@
<color name="colorError">#ff5722</color>
<color name="colorErrorLight">#e84853</color>
<color name="colorNavigationBarLight">#2E2E2E</color>
<color name="colorNavigationBarLight">#2D2D2D</color>
<color name="colorNavigationBarBlack">#1E1E1E</color>
<color name="colorStatusBarLight">#1C1C1C</color>
<color name="colorStatusBarBlack">#0D0D0D</color>
<color name="timetable_change_light">#ffd54f</color>
<color name="timetable_change_dark">#ff8f00</color>