mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
15 lines
601 B
XML
15 lines
601 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<item>
|
||
|
|
<shape>
|
||
|
|
<solid android:color="@color/brand_300"/>
|
||
|
|
<corners android:radius="20dip"/>
|
||
|
|
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
<item android:width="14dp" android:height="14dp" android:gravity="center">
|
||
|
|
<bitmap android:src="@drawable/limited" android:tintMode="src_atop" android:tint="@color/white">
|
||
|
|
</bitmap>
|
||
|
|
</item>
|
||
|
|
</layer-list>
|