You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
1.1 KiB

  1. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
  2. <!-- Background -->
  3. <rect width="200" height="200" fill="white"/>
  4. <!-- Calligraphic V -->
  5. <path d="M70,50 L100,150 L130,50"
  6. stroke="black" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
  7. <!-- Artistic Symbol: Paint Palette -->
  8. <circle cx="100" cy="70" r="20" fill="gray" />
  9. <circle cx="90" cy="65" r="3" fill="red" />
  10. <circle cx="100" cy="60" r="3" fill="blue" />
  11. <circle cx="110" cy="65" r="3" fill="yellow" />
  12. <!-- RGB Rays -->
  13. <line x1="100" y1="50" x2="70" y2="20" stroke="red" stroke-width="2"/>
  14. <line x1="100" y1="50" x2="100" y2="10" stroke="green" stroke-width="2"/>
  15. <line x1="100" y1="50" x2="130" y2="20" stroke="blue" stroke-width="2"/>
  16. <!-- CMYB Rays -->
  17. <line x1="100" y1="50" x2="50" y2="80" stroke="cyan" stroke-width="2"/>
  18. <line x1="100" y1="50" x2="100" y2="90" stroke="magenta" stroke-width="2"/>
  19. <line x1="100" y1="50" x2="150" y2="80" stroke="yellow" stroke-width="2"/>
  20. <line x1="100" y1="50" x2="100" y2="110" stroke="black" stroke-width="2"/>
  21. </svg>