This commit is contained in:
wenyifan 2023-01-17 22:17:04 +08:00
parent 185e52070a
commit 719753ffb4
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
android:viewportWidth="108" android:viewportWidth="108"
android:viewportHeight="108"> android:viewportHeight="108">
<path <path
android:fillColor="#455694" android:fillColor="@color/colorPrimary"
android:pathData="M0,0h108v108h-108z" /> android:pathData="M0,0h108v108h-108z" />
</vector> </vector>

View File

@ -57,6 +57,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:backgroundTint="#4CAF50" android:backgroundTint="#4CAF50"
android:textColor="#FFFFFF"
android:text="@string/btn_start" android:text="@string/btn_start"
android:textAllCaps="false" /> android:textAllCaps="false" />

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<color name="colorPrimary">#1D1D1D</color> <color name="colorPrimary">#465AA0</color>
<color name="colorPrimaryDark">#1D1D1D</color>
<color name="colorAccent">#D81B60</color> <color name="colorAccent">#D81B60</color>
</resources> </resources>

View File

@ -2,7 +2,7 @@
<!-- Base application theme. --> <!-- Base application theme. -->
<style name="Theme.Gost" parent="Theme.AppCompat.Light.DarkActionBar"> <style name="Theme.Gost" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/colorAccent</item> <item name="colorAccent">@color/colorAccent</item>
</style> </style>
</resources> </resources>