109 lines
2.6 KiB
XML
109 lines
2.6 KiB
XML
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:width="260dp"
|
|
android:height="100dp"
|
|
android:viewportWidth="260"
|
|
android:viewportHeight="100">
|
|
|
|
<!-- === SYMBOL: Circular swirl (left side) === -->
|
|
|
|
<!-- Top half large arc - orange fill -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="
|
|
M50,8
|
|
A42,42 0 0,1 92,50
|
|
L78,50
|
|
A28,28 0 0,0 50,22
|
|
Z"/>
|
|
|
|
<!-- Top half large arc - orange (outer ring top) -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="
|
|
M8,50
|
|
A42,42 0 0,1 92,50
|
|
L78,50
|
|
A28,28 0 0,0 22,50
|
|
Z"/>
|
|
|
|
<!-- Bottom half large arc - teal fill -->
|
|
<path
|
|
android:fillColor="#5EBBAE"
|
|
android:pathData="
|
|
M8,50
|
|
A42,42 0 0,0 92,50
|
|
L78,50
|
|
A28,28 0 0,1 22,50
|
|
Z"/>
|
|
|
|
<!-- Inner orange swirl (top-right) -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="
|
|
M50,22
|
|
A28,28 0 0,1 78,50
|
|
L65,50
|
|
A15,15 0 0,0 50,35
|
|
Z"/>
|
|
|
|
<!-- Inner teal half circle bottom -->
|
|
<path
|
|
android:fillColor="#5EBBAE"
|
|
android:pathData="
|
|
M35,50
|
|
A15,15 0 0,0 65,50
|
|
L50,50
|
|
A0,0 0 0,1 35,50
|
|
Z"/>
|
|
|
|
<!-- White inner circle cutout -->
|
|
<path
|
|
android:fillColor="#FFFFFF"
|
|
android:pathData="
|
|
M50,35
|
|
A15,15 0 0,0 35,50
|
|
L50,50
|
|
A0,0 0 0,1 50,35
|
|
Z"/>
|
|
|
|
<!-- White swoosh cutout on top arc -->
|
|
<path
|
|
android:fillColor="#FFFFFF"
|
|
android:pathData="
|
|
M20,30
|
|
Q 8,50 22,50
|
|
L35,50
|
|
Q 20,50 32,32
|
|
Z"/>
|
|
|
|
<!-- === TEXT: "ep" in orange === -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="
|
|
M105,32 L105,72 L111,72 L111,62
|
|
A9,9 0 0,0 120,68
|
|
A12,12 0 0,0 132,56
|
|
A12,12 0 0,0 120,44
|
|
A9,9 0 0,0 111,50 L111,32 Z
|
|
M111,56 A8,8 0 1,1 126,56 A8,8 0 0,1 111,56 Z"/>
|
|
<!-- Letter e -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="
|
|
M135,50 A12,12 0 1,0 135.01,50
|
|
M135,50 A12,12 0 0,1 147,50
|
|
L135,56 Z"/>
|
|
|
|
<!-- === SIMPLE TEXT approach for ep and vc === -->
|
|
<!-- Since complex path text is error prone, let's use simpler bold letter shapes -->
|
|
|
|
<!-- "e" letter - circle with opening -->
|
|
<path
|
|
android:fillColor="#F97316"
|
|
android:pathData="M105,56 A10,10 0 1,1 115,66 L105,66 Z
|
|
M105,56 L125,56"/>
|
|
|
|
<!-- I'll use a simpler but effective approach with rectangles for letters -->
|
|
|
|
</vector>
|