7 lines
357 B
XML
7 lines
357 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<solid android:color="#1A007AFF" /> <!-- Electric Blue transparent background -->
|
|
<stroke android:width="1dp" android:color="#40D4FF00" /> <!-- Subtle Volt border -->
|
|
<corners android:radius="16dp" />
|
|
</shape> |