Стандартный цвет при добавлении кнопки это фиолетовый.
У меня есть файл activity_main.xml с кодом
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Моя кнопка"
android:background="@drawable/button_style" />
А так же файл button_style.xml , там прописано следующее
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<corners android:radius="20dp" />
<solid android:color="#00A85A" />
</shape>
Кнопка все еще фиолетовая