diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-04-20 20:15:03 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:53 +0200 |
commit | a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb (patch) | |
tree | 310a8bc53c6a5759e64719be29914daa3d2456fa /src/android | |
parent | android: New default theme colors (diff) | |
download | yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar.gz yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar.bz2 yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar.lz yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar.xz yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.tar.zst yuzu-a82f8fe1c1d75bfb830b02ffd141b871e64bfbdb.zip |
Diffstat (limited to 'src/android')
-rw-r--r-- | src/android/app/src/main/res/drawable/ic_yuzu_full.xml (renamed from src/android/app/src/main/res/drawable/ic_yuzu_themed.xml) | 4 | ||||
-rw-r--r-- | src/android/app/src/main/res/layout/fragment_options.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/android/app/src/main/res/drawable/ic_yuzu_themed.xml b/src/android/app/src/main/res/drawable/ic_yuzu_full.xml index 4400e9eaf..f3dd44d00 100644 --- a/src/android/app/src/main/res/drawable/ic_yuzu_themed.xml +++ b/src/android/app/src/main/res/drawable/ic_yuzu_full.xml @@ -6,13 +6,13 @@ <group> <clip-path android:pathData="M-43,-46.67h699.6v777.33h-699.6z" /> <path - android:fillColor="?attr/colorPrimary" + android:fillColor="#FF3C28" android:pathData="M340.81,138V682.08c150.26,0 272.06,-121.81 272.06,-272.06S491.07,138 340.81,138M394,197.55a219.06,219.06 0,0 1,0 424.94V197.55" /> </group> <group> <clip-path android:pathData="M-43,-46.67h699.6v777.33h-699.6z" /> <path - android:fillColor="?attr/colorPrimary" + android:fillColor="#0AB9E6" android:pathData="M272.79,1.92C122.53,1.92 0.73,123.73 0.73,274s121.8,272.07 272.06,272.07ZM219.65,61.51v425A219,219 0,0 1,118 119.18,217.51 217.51,0 0,1 219.65,61.51" /> </group> </vector> diff --git a/src/android/app/src/main/res/layout/fragment_options.xml b/src/android/app/src/main/res/layout/fragment_options.xml index ec6e7c205..3bae8b0c4 100644 --- a/src/android/app/src/main/res/layout/fragment_options.xml +++ b/src/android/app/src/main/res/layout/fragment_options.xml @@ -18,7 +18,7 @@ android:layout_height="128dp" android:layout_margin="64dp" android:layout_gravity="center_horizontal" - android:src="@drawable/ic_yuzu_themed" /> + android:src="@drawable/ic_yuzu_full" /> <androidx.recyclerview.widget.RecyclerView android:id="@+id/options_list" |