Expose Flashing colours for themes

This commit is contained in:
daveyannihilation 2017-10-25 05:42:05 +08:00 committed by John Wu
parent ecc8f9c792
commit f60fd42ac0
2 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/black"
android:background="@color/flashing_background_color"
tools:context="com.topjohnwu.magisk.FlashActivity">
<include layout="@layout/toolbar"/>
@ -38,7 +38,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@android:color/darker_gray"
android:background="@color/button_panel_background_color"
android:orientation="horizontal"
android:visibility="gone">

View File

@ -17,4 +17,8 @@
<color name="su_request_background">#e0e0e0</color>
</resources>
<!-- Flashing colors -->
<color name="flashing_background_color">@android:color/black</color>
<color name="button_panel_background_color">@android:color/darker_gray</color>
</resources>