zhibo/android-app/app/src/main/res/drawable/radial_glow_purple.xml

15 lines
502 B
XML
Raw Normal View History

2026-01-06 14:24:42 +08:00
<?xml version="1.0" encoding="utf-8"?>
<!-- 头像背光 - 紫色径向渐变 -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<gradient
android:type="radial"
android:gradientRadius="60dp"
android:centerX="0.5"
android:centerY="0.5"
android:startColor="#60A855F7"
android:centerColor="#30A855F7"
android:endColor="#00A855F7" />
<size android:width="120dp" android:height="120dp" />
</shape>