Yes, I know it's not even published yet. Sorry for nagging.
Currently the style <style name="carbon_FloatingActionButton"> has the item <item name="android:background">?attr/colorAccent</item>. This should be something like <item name="android:background">@color/accent_button</item>, where accent_button is a statelist like
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="@color/accent_disabled"/>
<item android:color="@color/accent"/>
</selector>