Fix swapped colors in video and playlist thumbnails

This commit is contained in:
krlvm 2022-07-13 23:44:21 +03:00 committed by Stypox
parent 35eeccd45a
commit dff1adb1ad
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
6 changed files with 26 additions and 6 deletions

View File

@ -0,0 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M0,0 L24,0 L24,24 L0,24 z"
android:fillColor="@color/placeholder_foreground" />
<group android:scaleX="0.8333333"
android:scaleY="0.8333333"
android:translateX="2"
android:translateY="2">
<path
android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"
android:fillColor="@color/placeholder_background" />
</group>
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 B

View File

@ -6,7 +6,7 @@
<path
android:pathData="M0,0 L24,0 L24,24 L0,24 z"
android:fillColor="@color/placeholder_foreground" />
android:fillColor="@color/placeholder_background" />
<group android:scaleX="0.8333333"
android:scaleY="0.8333333"
@ -14,7 +14,7 @@
android:translateY="2">
<path
android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4 -4,1.79 -4,4 1.79,4 4,4zM12,14c-2.67,0 -8,1.34 -8,4v2h16v-2c0,-2.66 -5.33,-4 -8,-4z"
android:fillColor="@color/placeholder_background" />
android:fillColor="@color/placeholder_foreground" />
</group>
</vector>

View File

@ -5,8 +5,8 @@
android:viewportHeight="24">
<path
android:pathData="M0,0h24v24h-24z"
android:fillColor="@color/placeholder_background" />
android:fillColor="@color/placeholder_foreground" />
<path
android:pathData="M15,11.9023L12.2188,13.3828L9.0898,15L9.0273,12.1641L9,9L11.8477,10.3555ZM15,11.9023"
android:fillColor="@color/placeholder_foreground" />
android:fillColor="@color/placeholder_background" />
</vector>

View File

@ -6,8 +6,8 @@
<color name="ic_launcher_background">#CD201F</color>
<color name="placeholder_background">#F6F6F6</color>
<color name="placeholder_foreground">#6E6E6E</color>
<color name="placeholder_background">#6E6E6E</color>
<color name="placeholder_foreground">#F6F6F6</color>
<!-- Light Theme -->
<color name="light_background_color">#EEEEEE</color>