net.sourceforge.wxEDID.svg 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <svg width="512" height="512" viewBox="-16 -16 32 32" xmlns="http://www.w3.org/2000/svg" stroke="none" fill="blue">
  2. <style>
  3. .title {
  4. font-family: "Nimbus Roman", Nimbus, serif;
  5. font-size: 6.5pt;
  6. text-anchor: middle;
  7. dominant-baseline: middle;
  8. fill: black;
  9. }
  10. </style>
  11. <defs>
  12. <radialGradient id="orangeo" cx="0.5" cy="0.5" r="1.0" fx="0.5" fy="0.06" spreadMethod="reflect">
  13. <stop offset="0%" stop-color="#fff"/>
  14. <stop offset="25%" stop-color="#fc5"/>
  15. <stop offset="44%" stop-color="#d54"/>
  16. <stop offset="60%" stop-color="#568"/>
  17. <stop offset="100%" stop-color="#fff"/>
  18. </radialGradient>
  19. <pattern id="hello" viewBox="0 0 12 12" width="50%" height="50%">
  20. <circle cx="6" cy="6" r="6" fill="blue"/>
  21. </pattern>
  22. <mask id="myMask">
  23. <circle cx="0" cy="0" r="16" fill="white"/>
  24. </mask>
  25. </defs>
  26. <g transform="rotate(-25)">
  27. <ellipse cx="0" cy="0" rx="32" ry="16" fill="url(#orangeo)" mask="url(#myMask)"/>
  28. </g>
  29. <text class="title" y="2.5">wxEDID</text>
  30. </svg>