I have defined my FAB in the layout file as:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/search"
app:rippleColor="@color/primary"
app:elevation="1dp"
app:borderWidth="4dp" />
Here @drawable/search
is a file that I created from Android Studio's Vector Asset tool (Asset Type Material Icon). It gets created as a black color. How do I change the color of the icon used inside the FAB definition?