Conversation

$a blue car
$<svg xmlns="http://www.w3.org/2000/svg" width="300" height="200" viewBox="0 0 300 200">
  <!-- Car body -->
  <rect id="car-body" x="50" y="80" width="200" height="60" fill="#1e90ff" stroke="black" stroke-width="2"/>
  
  <!-- Car roof -->
  <polygon id="car-roof" points="80,80 120,40 180,40 220,80" fill="#1e90ff" stroke="black" stroke-width="2"/>
  
  <!-- Left wheel -->
  <circle id="wheel-left" cx="95" cy="140" r="20" fill="black"/>
  
  <!-- Right wheel -->
  <circle id="wheel-right" cx="205" cy="140" r="20" fill="black"/>
  
  <!-- Left window -->
  <rect id="window-left" x="90" y="60" width="20" height="20" fill="#87cefa" stroke="black" stroke-width="1"/>
  
  <!-- Right window -->
  <rect id="window-right" x="190" y="60" width="20" height="20" fill="#87cefa" stroke="black" stroke-width="1"/>
  
  <!-- Headlights -->
  <circle id="headlight-left" cx="70" cy="85" r="5" fill="yellow"/>
  <circle id="headlight-right" cx="230" cy="85" r="5" fill="yellow"/>
</svg>