10 lines
388 B
XML
10 lines
388 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- The base background for the multiplier toggle bar -->
|
|
<solid android:color="@color/surface_secondary" />
|
|
<corners android:radius="16dp" />
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="@color/border_subtle" />
|
|
</shape> |