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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
viewBox="0 0 32 32"
height="480"
width="480"
style="background-color: black;"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient
id="upper-beak-gradient"
gradientUnits="userSpaceOnUse"
x1="0"
y1="31"
x2="16"
y2="31">
<stop offset="0" stop-color="#2d2d2d"/>
<stop offset="1" stop-color="#3d3d3d"/>
</linearGradient>
<linearGradient
id="lower-beak-gradient"
gradientUnits="userSpaceOnUse"
x1="0"
y1="31"
x2="16"
y2="31">
<stop offset="1" stop-color="#1d1d1d"/>
<stop offset="0" stop-color="#2d2d2d"/>
</linearGradient>
<linearGradient
id="blue-purple-gradient"
gradientUnits="userSpaceOnUse"
x1="0"
y1="31"
x2="31"
y2="0">
<stop offset="0.3" stop-color="#0095D5"/>
<stop offset="0.5" stop-color="#3C83DC"/>
<stop offset="0.6" stop-color="#6D74E1"/>
<stop offset="0.7" stop-color="#806EE3"/>
</linearGradient>
<linearGradient
id="purple-orange-gradient"
gradientUnits="userSpaceOnUse"
x1="0"
y1="31"
x2="31"
y2="0">
<stop offset="0.5" stop-color="#C757BC"/>
<stop offset="0.65" stop-color="#D0609A"/>
<stop offset="0.9" stop-color="#F88909"/>
</linearGradient>
</defs>
<rect id="black-background" width="100%" height="100%"/>
<g id="bird">
<path id="blue-feathers" fill="url(#blue-purple-gradient)"
d="
M5,19 v-10 l7,-7 h10
M20,16 l8,-8 v10 l-3,3
"/>
<path id="orange-feather" fill="url(#purple-orange-gradient)"
d="M11,13 l11,-11 h6 v6 l-8,8 l-3,-3"/>
<path id="white-head" fill="#fff"
d="M5,19 l6,-6 h6 l8,8 v3 l2,6 h-18 l2,-4"/>
<g id="beak" stroke-width="0.2" stroke="#666" >
<path id="lower-beak" fill="url(#lower-beak-gradient)"
d="M5,26 l4,3 l4,-3 Z"/>
<path id="upper-beak" fill="url(#upper-beak-gradient)"
d="M4,26 l5,-4 l4,4 Z"/>
</g>
<g id="eye">
<circle id="eye-base" fill="#000" cx="15" cy="21" r="1.5"/>
<path id="eye-twinkle" fill="none"
stroke="#f5f5f5"
stroke-linecap="round"
stroke-width=".2"
d="M15.1,20.1 q0.9,-0.1 1,0.9"/>
</g>
</g>
</svg>
|