zhibo/android-app/app/src/main/res/drawable/bg_fishpond_gradient.xml
2025-12-17 17:45:39 +08:00

27 lines
761 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<gradient
android:angle="270"
android:startColor="#5D4D93"
android:centerColor="#B08BE6"
android:endColor="#D9C9FF" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<gradient
android:type="radial"
android:gradientRadius="220dp"
android:centerX="0"
android:centerY="0"
android:startColor="#66000000"
android:endColor="#00000000" />
</shape>
</item>
</layer-list>