aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/message_bubble_received_light_private.xml
blob: 657f8dad070eb0455c53c0a1ab30fa8f9c63703c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <stroke android:width="2dp" android:color="@color/accent"/>
    <corners
        android:topLeftRadius="0dp"
        android:topRightRadius="5dp"
        android:bottomRightRadius="5dp"
        android:bottomLeftRadius="5dp" />
    <padding
        android:bottom="2dp"
        android:left="6dp"
        android:right="6dp"
        android:top="2dp" />
    <solid android:color="@color/lightblue" />
</shape>