diff --git a/app/src/main/res/layout/fragment_chat_list.xml b/app/src/main/res/layout/fragment_chat_list.xml
index d504210afbf53e41943fc094c0041553a62e1feb..e67970b4af5429ab20b4002f370425bdefc33625 100644
--- a/app/src/main/res/layout/fragment_chat_list.xml
+++ b/app/src/main/res/layout/fragment_chat_list.xml
@@ -51,10 +51,8 @@
 
   <com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
     android:id="@+id/chatList"
+    style="@style/Widget.FastScroller"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
-    app:fastScrollPopupBgColor="?colorAccent"
-    app:fastScrollPopupTextColor="?colorTextPrimaryInverse"
-    app:fastScrollThumbColor="?colorAccent"
     tools:listitem="@layout/widget_buffer" />
 </LinearLayout>
diff --git a/app/src/main/res/layout/fragment_nick_list.xml b/app/src/main/res/layout/fragment_nick_list.xml
index 6d4396b2baef40e75f5f5b8849edf103f02ad8d5..bf81fdab6b2d3b1a444f640a2eb20df5e20b3c8c 100644
--- a/app/src/main/res/layout/fragment_nick_list.xml
+++ b/app/src/main/res/layout/fragment_nick_list.xml
@@ -18,16 +18,13 @@
   -->
 
 <de.kuschku.quasseldroid.util.ui.DrawerRecyclerView 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:id="@+id/nickList"
+  style="@style/Widget.FastScroller"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:background="?attr/colorBackground"
   android:clipToPadding="false"
   android:fitsSystemWindows="true"
-  app:fastScrollPopupBgColor="?colorAccent"
-  app:fastScrollPopupTextColor="?colorTextPrimaryInverse"
-  app:fastScrollThumbColor="?colorAccent"
   tools:listitem="@layout/widget_nick"
   tools:showIn="@layout/activity_main" />
diff --git a/app/src/main/res/values/styles_widgets.xml b/app/src/main/res/values/styles_widgets.xml
index b8cf9da067865e3c901f3765ec100f7230cce291..858e5483c8240c84a1c850831f27d800492372b0 100644
--- a/app/src/main/res/values/styles_widgets.xml
+++ b/app/src/main/res/values/styles_widgets.xml
@@ -300,6 +300,14 @@
     <item name="insetBackground">#4000</item>
   </style>
 
+  <style name="Widget.FastScroller" parent="">
+    <item name="fastScrollPopupBgColor">?colorAccent</item>
+    <item name="fastScrollPopupTextColor">?colorTextPrimaryInverse</item>
+    <item name="fastScrollThumbColor">?colorAccent</item>
+    <item name="fastScrollPopupTextSize">32dp</item>
+    <item name="fastScrollPopupBackgroundSize">62dp</item>
+  </style>
+
   <!-- NavigationDrawerLayout -->
   <declare-styleable name="NavigationDrawerLayout">
     <attr name="insetBackground" />