Twelve: Change default size/style for horizontal_list_item

Seems to match YT music

Change-Id: I456dbfed36dc66efc620fb3f491bd5145c27e82f
diff --git a/app/src/main/res/layout/horizontal_list_item.xml b/app/src/main/res/layout/horizontal_list_item.xml
index d73e662..e710770 100644
--- a/app/src/main/res/layout/horizontal_list_item.xml
+++ b/app/src/main/res/layout/horizontal_list_item.xml
@@ -5,6 +5,7 @@
 -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="128dp"
     android:layout_height="wrap_content"
     android:layout_marginHorizontal="16dp"
@@ -31,7 +32,9 @@
         android:ellipsize="end"
         android:hyphenationFrequency="normal"
         android:maxLines="1"
-        android:textAppearance="?attr/textAppearanceBodyLarge" />
+        android:textAppearance="?attr/textAppearanceLabelMedium"
+        android:textColor="?attr/colorOnSurface"
+        tools:text="Headline" />
 
     <TextView
         android:id="@+id/supportingTextView"
@@ -40,6 +43,8 @@
         android:ellipsize="end"
         android:hyphenationFrequency="normal"
         android:maxLines="1"
-        android:textAppearance="?attr/textAppearanceBodyMedium" />
+        android:textAppearance="?attr/textAppearanceLabelMedium"
+        android:textColor="?attr/colorOnSurfaceVariant"
+        tools:text="Supporting" />
 
 </LinearLayout>