File size: 1,603 Bytes
d3f5270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
    <defs>
        <linearGradient id="petalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#FF6B9D;stop-opacity:1" />
            <stop offset="50%" style="stop-color:#C44569;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#9C27B0;stop-opacity:1" />
        </linearGradient>
        <linearGradient id="centerGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
            <stop offset="100%" style="stop-color:#FFA000;stop-opacity:1" />
        </linearGradient>
        <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
            <feDropShadow dx="1" dy="1" stdDeviation="1" flood-color="#000" flood-opacity="0.3" />
        </filter>
    </defs>

    <!-- Background circle -->
    <circle cx="16" cy="16" r="15" fill="url(#petalGradient)" filter="url(#shadow)" />

    <!-- Iris petals -->
    <path d="M16 8 C20 10, 20 14, 16 16 C12 14, 12 10, 16 8" fill="#E8EAF6" opacity="0.9" />
    <path d="M24 16 C22 12, 18 12, 16 16 C18 20, 22 20, 24 16" fill="#E8EAF6" opacity="0.9" />
    <path d="M16 24 C12 22, 12 18, 16 16 C20 18, 20 22, 16 24" fill="#E8EAF6" opacity="0.9" />
    <path d="M8 16 C10 20, 14 20, 16 16 C14 12, 10 12, 8 16" fill="#E8EAF6" opacity="0.9" />

    <!-- Center of flower -->
    <circle cx="16" cy="16" r="4" fill="url(#centerGradient)" />

    <!-- Highlight -->
    <circle cx="14" cy="14" r="1.5" fill="#FFF" opacity="0.7" />
</svg>