tachiyomi/app/src/main/res/drawable/unread_angled_badge.xml
Carlos d4449c1d03
LibraryBadge clean up (#209)
* adjust badge colors to use color properties specific to badges
clean up library badge with existing and new view extensions

* fix line that should have been deleted in tracksearch
2020-04-23 21:02:44 -04:00

15 lines
487 B
XML

<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:width="100dp"
android:height="100dp"
android:viewportHeight="10"
android:viewportWidth="100"
tools:background="@color/red_error">
<path
android:fillColor="@color/unread_badge"
android:pathData="M0 20 L100 0 L100 20 Z"
android:strokeColor="@color/unread_badge" />
</vector>