Back

SVG Drawing Match #255

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lighthouse-shaped teapot pouring stars into a cosmic teacup"

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Cosmic background gradient -->
    <linearGradient id="cosmicBackground" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0B0B2A" />
      <stop offset="50%" stop-color="#1A1A4A" />
      <stop offset="100%" stop-color="#0B0B2A" />
    </linearGradient>
    
    <!-- Teapot lighthouse gradient -->
    <linearGradient id="lighthouseGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF5555" />
      <stop offset="50%" stop-color="#FFFFFF" />
      <stop offset="100%" stop-color="#FF5555" />
    </linearGradient>
    
    <!-- Lighthouse light gradient -->
    <radialGradient id="lightbeamGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFFFCC" stop-opacity="1" />
      <stop offset="70%" stop-color="#FFFF00" stop-opacity="0.4" />
      <stop offset="100%" stop-color="#FFFF00" stop-opacity="0" />
    </radialGradient>
    
    <!-- Star stream gradient -->
    <linearGradient id="starStreamGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="1" />
      <stop offset="100%" stop-color="#FFFFCC" stop-opacity="0.6" />
    </linearGradient>
    
    <!-- Cosmic teacup inner gradient -->
    <radialGradient id="cupInnerGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#4A0080" />
      <stop offset="70%" stop-color="#20015E" />
      <stop offset="100%" stop-color="#10002A" />
    </radialGradient>
    
    <!-- Nebula in teacup -->
    <radialGradient id="nebulaGradient" cx="50%" cy="50%" r="50%" fx="40%" fy="40%">
      <stop offset="0%" stop-color="#FF4500" stop-opacity="0.4" />
      <stop offset="50%" stop-color="#DA70D6" stop-opacity="0.2" />
      <stop offset="100%" stop-color="#6A5ACD" stop-opacity="0" />
    </radialGradient>
    
    <!-- Star pattern for cosmic effects -->
    <pattern id="starPattern" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="0.8" fill="white" />
      <circle cx="20" cy="30" r="0.6" fill="white" />
      <circle cx="40" cy="40" r="1" fill="white" />
      <circle cx="30" cy="15" r="0.7" fill="white" />
      <circle cx="45" cy="5" r="0.5" fill="white" />
      <circle cx="5" cy="45" r="0.9" fill="white" />
      <circle cx="25" cy="25" r="0.4" fill="white" />
    </pattern>
    
    <!-- Filter for glow effects -->
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Star symbol for reuse -->
    <symbol id="star" viewBox="0 0 20 20">
      <path d="M10,0 L12,7 L19,7 L14,12 L16,19 L10,14 L4,19 L6,12 L1,7 L8,7 Z" fill="white" />
    </symbol>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#cosmicBackground)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" fill-opacity="0.8" />
  
  <!-- Background nebulae -->
  <ellipse cx="50" cy="70" rx="80" ry="40" fill="url(#nebulaGradient)" transform="rotate(-20,50,70)" />
  <ellipse cx="250" cy="50" rx="60" ry="30" fill="url(#nebulaGradient)" transform="rotate(15,250,50)" opacity="0.7" />
  
  <!-- Background floating stars -->
  <g id="backgroundStars">
    <circle cx="50" cy="50" r="1" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="80" cy="120" r="1.2" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="4s" repeatCount="indefinite" />
    </circle>
    <circle cx="200" cy="40" r="0.8" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" dur="2.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="280" cy="100" r="1.5" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" begin="1s" dur="3.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="30" cy="200" r="1" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" begin="0.5s" dur="2.8s" repeatCount="indefinite" />
    </circle>
    <circle cx="250" cy="280" r="1.2" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" begin="1.5s" dur="3.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="100" cy="250" r="0.9" fill="white">
      <animate attributeName="opacity" values="0.2;1;0.2" begin="0.8s" dur="2.2s" repeatCount="indefinite" />
    </circle>
    
    <!-- Larger twinkling stars -->
    <use href="#star" x="35" y="35" width="10" height="10">
      <animate attributeName="opacity" values="0.4;1;0.4" dur="4s" repeatCount="indefinite" />
    </use>
    <use href="#star" x="270" y="180" width="8" height="8">
      <animate attributeName="opacity" values="0.4;1;0.4" begin="1s" dur="3s" repeatCount="indefinite" />
    </use>
    <use href="#star" x="120" y="30" width="12" height="12">
      <animate attributeName="opacity" values="0.4;1;0.4" begin="2s" dur="5s" repeatCount="indefinite" />
    </use>
  </g>
  
  <!-- Cosmic teacup -->
  <g id="cosmicTeacup">
    <!-- Teacup saucer -->
    <ellipse cx="250" cy="220" rx="35" ry="10" fill="#2C0052" stroke="#6A359C" stroke-width="1" />
    <ellipse cx="250" cy="218" rx="30" ry="8" fill="#3B0068" />
    
    <!-- Cup base -->
    <path d="M230,220 Q230,190 250,190 Q270,190 270,220" fill="#4B0082" stroke="#8A2BE2" stroke-width="1" />
    
    <!-- Cup handle -->
    <path d="M230,210 Q220,210 220,205 Q220,200 225,200" fill="none" stroke="#6A359C" stroke-width="3" stroke-linecap="round" />
    
    <!-- Cup inside with cosmic pattern -->
    <ellipse cx="250" cy="190" rx="20" ry="5" fill="url(#cupInnerGradient)" />
    
    <!-- Nebula in the cup -->
    <ellipse cx="250" cy="195" rx="15" ry="3" fill="url(#nebulaGradient)" opacity="0.7">
      <animate attributeName="ry" values="3;4;3" dur="10s" repeatCount="indefinite" />
    </ellipse>
    
    <!-- Small stars and planets in the cup -->
    <circle cx="240" cy="193" r="1.5" fill="#FFFF99" filter="url(#glow)">
      <animate attributeName="r" values="1.5;2;1.5" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="260" cy="192" r="1" fill="white" />
    <circle cx="245" cy="188" r="2" fill="#9370DB">
      <animate attributeName="cy" values="188;187;188;189;188" dur="3s" repeatCount="indefinite" />
    </circle>
    <ellipse cx="255" cy="190" rx="4" ry="1.5" fill="#4169E1" transform="rotate(-15,255,190)">
      <animate attributeName="transform" values="rotate(-15,255,190);rotate(15,255,190);rotate(-15,255,190)" dur="5s" repeatCount="indefinite" />
    </ellipse>
    
    <!-- Small orbiting moon -->
    <circle cx="245" cy="195" r="1.5" fill="#D3D3D3">
      <animateTransform attributeName="transform" type="rotate" from="0 245 195" to="360 245 195" dur="3s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Star stream pouring from spout -->
  <g id="starStream">
    <!-- Main stream flow -->
    <path d="M230,110 Q235,150 250,190" fill="none" stroke="url(#starStreamGradient)" stroke-width="8" stroke-linecap="round" stroke-opacity="0.7" />
    
    <!-- Individual stars in the stream -->
    <g>
      <!-- Star 1 -->
      <path d="M0,0 l2,6 l6,0 l-5,4 l2,6 l-5,-4 l-5,4 l2,-6 l-5,-4 l6,0 z" fill="yellow" filter="url(#glow)">
        <animateMotion path="M230,110 Q235,150 250,190" dur="3s" repeatCount="indefinite" />
      </path>
      
      <!-- Star 2 -->
      <path d="M0,0 l1.5,4.5 l4.5,0 l-3.75,3 l1.5,4.5 l-3.75,-3 l-3.75,3 l1.5,-4.5 l-3.75,-3 l4.5,0 z" fill="#FFFFCC">
        <animateMotion path="M230,110 Q235,150 250,190" dur="2.5s" repeatCount="indefinite" />
      </path>
      
      <!-- Star 3 -->
      <path d="M0,0 l1,3 l3,0 l-2.5,2 l1,3 l-2.5,-2 l-2.5,2 l1,-3 l-2.5,-2 l3,0 z" fill="white">
        <animateMotion path="M230,110 Q235,150 250,190" begin="0.5s" dur="3.2s" repeatCount="indefinite" />
      </path>
      
      <!-- Star 4 -->
      <path d="M0,0 l2.5,7.5 l7.5,0 l-6.25,5 l2.5,7.5 l-6.25,-5 l-6.25,5 l2.5,-7.5 l-6.25,-5 l7.5,0 z" fill="#FFFFDD" filter="url(#glow)">
        <animateMotion path="M230,110 Q235,150 250,190" begin="1s" dur="4s" repeatCount="indefinite" />
      </path>
      
      <!-- Star 5 -->
      <path d="M0,0 l1,3 l3,0 l-2.5,2 l1,3 l-2.5,-2 l-2.5,2 l1,-3 l-2.5,-2 l3,0 z" fill="white">
        <animateMotion path="M230,110 Q235,150 250,190" begin="1.5s" dur="2.8s" repeatCount="indefinite" />
      </path>
      
      <!-- Star 6 - using symbol -->
      <use href="#star" x="-3.5" y="-3.5" width="7" height="7" fill="#FFFF88" filter="url(#glow)">
        <animateMotion path="M230,110 Q235,150 250,190" begin="0.2s" dur="3.5s" repeatCount="indefinite" />
      </use>
      
      <!-- Star 7 - using symbol -->
      <use href="#star" x="-2.5" y="-2.5" width="5" height="5" fill="white">
        <animateMotion path="M230,110 Q235,150 250,190" begin="1.7s" dur="2.7s" repeatCount="indefinite" />
      </use>
      
      <!-- Star 8 - using symbol -->
      <use href="#star" x="-4.5" y="-4.5" width="9" height="9" fill="#FFFF88" filter="url(#glow)">
        <animateMotion path="M230,110 Q235,150 250,190" begin="0.9s" dur="4.2s" repeatCount="indefinite" />
      </use>
    </g>
    
    <!-- Sparkles in the stream -->
    <circle cx="235" cy="130" r="0.5" fill="white">
      <animate attributeName="cy" values="130;185" dur="2s" repeatCount="indefinite" />
      <animate attributeName="cx" values="235;250" dur="2s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="1;0" dur="2s" repeatCount="indefinite" />
    </circle>
    <circle cx="232" cy="125" r="0.4" fill="white">
      <animate attributeName="cy" values="125;180" dur="1.8s" begin="0.5s" repeatCount="indefinite" />
      <animate attributeName="cx" values="232;248" dur="1.8s" begin="0.5s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="1;0" dur="1.8s" begin="0.5s" repeatCount="indefinite" />
    </circle>
    <circle cx="238" cy="135" r="0.6" fill="white">
      <animate attributeName="cy" values="135;185" dur="2.2s" begin="0.8s" repeatCount="indefinite" />
      <animate attributeName="cx" values="238;252" dur="2.2s" begin="0.8s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="1;0" dur="2.2s" begin="0.8s" repeatCount="indefinite" />
    </circle>
  </g>
  
  <!-- Lighthouse-shaped teapot -->
  <g id="lighthouseTeapot">
    <!-- Base foundation -->
    <path d="M110,200 L190,200 L185,190 L115,190 Z" fill="#7B3F00" />
    
    <!-- Main body of the lighthouse/teapot -->
    <path d="M120,190 L180,190 L170,100 L130,100 Z" fill="url(#lighthouseGradient)" />
    
    <!-- Door -->
    <path d="M145,190 L155,190 L155,175 L145,175 Z" fill="#5B2C00" />
    
    <!-- Lighthouse stripes -->
    <path d="M126,180 L174,180 L172,170 L128,170 Z" fill="#FF3333" />
    <path d="M132,150 L168,150 L166,140 L134,140 Z" fill="#FF3333" />
    <path d="M138,120 L162,120 L160,110 L140,110 Z" fill="#FF3333" />
    
    <!-- Windows -->
    <circle cx="138" cy="160" r="3" fill="#FFFFAA">
      <animate attributeName="fill" values="#FFFFAA;#FFFF77;#FFFFAA" dur="1s" repeatCount="indefinite" />
    </circle>
    <circle cx="162" cy="160" r="3" fill="#FFFFAA">
      <animate attributeName="fill" values="#FFFFAA;#FFFF77;#FFFFAA" dur="1.2s" repeatCount="indefinite" />
    </circle>
    <circle cx="150" cy="130" r="3" fill="#FFFFAA">
      <animate attributeName="fill" values="#FFFFAA;#FFFF77;#FFFFAA" dur="0.8s" repeatCount="indefinite" />
    </circle>
    
    <!-- Lighthouse top/teapot lid -->
    <ellipse cx="150" cy="100" rx="25" ry="5" fill="#A52A2A" />
    <path d="M140,100 L160,100 L155,85 L145,85 Z" fill="#B22222" />
    <ellipse cx="150" cy="85" rx="5" ry="2" fill="#D4AF37" />
    
    <!-- Lighthouse light beam / teapot steam -->
    <ellipse cx="150" cy="83" rx="40" ry="15" fill="url(#lightbeamGradient)" opacity="0.7">
      <animate attributeName="opacity" values="0.7;0.9;0.7" dur="2s" repeatCount="indefinite" />
    </ellipse>
    
    <!-- Teapot handle -->
    <path d="M120,140 Q90,150 100,180" fill="none" stroke="#D93030" stroke-width="5" stroke-linecap="round" />
    
    <!-- Teapot spout -->
    <path d="M170,150 Q220,140 230,110" fill="none" stroke="#D93030" stroke-width="8" stroke-linecap="round" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4a1010;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="teapotGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffd700;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#ff8c00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff6b00;stop-opacity:1" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  
  <!-- Cosmic Teacup -->
  <g transform="translate(220,180)">
    <path d="M0,0 L40,0 L60,30 L40,60 L0,60 L-20,30 Z" fill="url(#teapotGrad)"/>
    <path d="M0,0 L20,0 L40,20 L20,40 L0,40 L-20,20 Z" fill="#fff"/>
    <path d="M40,20 L50,30 L40,40 L30,30 Z" fill="#fff"/>
    <circle cx="30" cy="25" r="5" fill="#fff"/>
    <path d="M-20,30 L0,30 L10,40 L-10,40 Z" fill="#fff"/>
  </g>

  <!-- Lighthouse Teapot -->
  <g transform="translate(50,180)">
    <!-- Base -->
    <rect x="0" y="0" width="80" height="80" fill="#fff"/>
    <rect x="10" y="10" width="60" height="60" fill="#000"/>
    <rect x="20" y="20" width="40" height="40" fill="#fff"/>
    <rect x="30" y="30" width="20" height="20" fill="#000"/>
    
    <!-- Middle Section -->
    <rect x="0" y="80" width="80" height="60" fill="url(#teapotGrad)"/>
    
    <!-- Top Section -->
    <rect x="10" y="140" width="60" height="30" fill="#ffd700"/>
    <circle cx="50" cy="160" r="10" fill="#ff8c00"/>
    
    <!-- Spout -->
    <path d="M50,170 L60,160 L50,150 Z" fill="#ff8c00"/>
  </g>

  <!-- Pouring Stars -->
  <g transform="translate(80,160)">
    <path d="M0,0 Q50,-20 100,0 Q150,-20 200,0 Q250,-20 300,0 L300,100 L200,100 Q150,120 100,100 Q50,120 0,100 Z" fill="none" stroke="#fff" stroke-width="2"/>
    <g transform="translate(150,50)">
      <path d="M0,0 L5,8 L0,16 L-5,8 Z" fill="#fff" opacity="0.8"/>
      <path d="M0,0 L8,5 L16,0 L8,-5 Z" fill="#fff" opacity="0.8"/>
      <path d="M0,0 L5,8 L10,0 L5,-8 Z" fill="#fff" opacity="0.8"/>
    </g>
  </g>

  <!-- Ambient Stars -->
  <g fill="#fff">
    <circle cx="50" cy="50" r="1"/>
    <circle cx="200" cy="70" r="1"/>
    <circle cx="150" cy="30" r="1"/>
    <circle cx="250" cy="60" r="1"/>
    <circle cx="100" cy="90" r="1"/>
  </g>

  <!-- Glowing Effects -->
  <circle cx="50" cy="160" r="15" fill="url(#skyGrad)" opacity="0.3" filter="url(#glow)"/>
  <circle cx="220" cy="180" r="10" fill="#fff" opacity="0.5" filter="url(#glow)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 1

Judge's Analysis

    Player 1's image more clearly adheres to the prompt by depicting a lighthouse-shaped teapot pouring stars into a cosmic-themed teacup.

    The use of color and composition effectively conveys the cosmic theme, enhancing creativity and visual appeal.

    Player 2's submission is more abstract and less recognizable in relation to the prompt.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
54
Player 2
25
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
2
Player 2
7
Circles

The number of circle elements (circle) in the SVG.

Player 1
24
Player 2
9
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
10
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
18
Player 2
9
Groups

The number of group elements (g) in the SVG.

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
6
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
1
Player 2
1
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
3
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
31
Player 2
4

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
36
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
113
Player 2
52
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
9
Player 2
3
Use Elements

The number of use elements (use) in the SVG.

Player 1
6
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges