Conversation

$do a chrismas tree
$<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300" width="200" height="300">
  <!-- Christmas Tree Group -->
  <g id="christmas-tree">
    <!-- Star at the top -->
    <polygon id="star" points="100,20 110,40 130,40 115,55 120,75 100,65 80,75 85,55 70,40 90,40"
             fill="#FFD700" stroke="#DAA520" stroke-width="1"/>

    <!-- Foliage -->
    <polygon id="foliage" points="100,70 30,190 170,190"
             fill="#228B22" stroke="#006400" stroke-width="2"/>

    <!-- Trunk -->
    <rect id="trunk" x="85" y="190" width="30" height="60"
          fill="#8B4513" stroke="#654321" stroke-width="1"/>

    <!-- Ornaments -->
    <circle id="ornament1" cx="70" cy="140" r="8" fill="#FF0000" stroke="#8B0000" stroke-width="1"/>
    <circle id="ornament2" cx="130" cy="140" r="8" fill="#0000FF" stroke="#00008B" stroke-width="1"/>
    <circle id="ornament3" cx="100" cy="170" r="8" fill="#FFFF00" stroke="#808000" stroke-width="1"/>
  </g>
</svg>