| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <svg width="400" height="300" xmlns="http://www.w3.org/2000/svg">
- <defs>
- <linearGradient id="wallGradient" x1="0%" y1="0%" x2="100%" y2="100%">
- <stop offset="0%" style="stop-color:#f5f5f5;stop-opacity:1" />
- <stop offset="100%" style="stop-color:#e8e8e8;stop-opacity:1" />
- </linearGradient>
- <linearGradient id="floorGradient" x1="0%" y1="0%" x2="100%" y2="0%">
- <stop offset="0%" style="stop-color:#d4c4a8;stop-opacity:1" />
- <stop offset="100%" style="stop-color:#c8b896;stop-opacity:1" />
- </linearGradient>
- </defs>
-
- <!-- Background -->
- <rect width="400" height="300" fill="url(#wallGradient)"/>
-
- <!-- Floor -->
- <rect x="0" y="200" width="400" height="100" fill="url(#floorGradient)"/>
-
- <!-- Modern Sofa -->
- <rect x="50" y="150" width="120" height="40" rx="5" fill="#4a5568"/>
- <rect x="45" y="145" width="130" height="15" rx="7" fill="#2d3748"/>
-
- <!-- Coffee Table -->
- <rect x="80" y="180" width="60" height="8" rx="4" fill="#8b4513"/>
- <rect x="85" y="185" width="50" height="3" fill="#654321"/>
-
- <!-- TV Stand -->
- <rect x="250" y="120" width="100" height="60" fill="#2c2c2c"/>
- <rect x="260" y="100" width="80" height="40" fill="#1a1a1a"/>
-
- <!-- Window -->
- <rect x="320" y="50" width="60" height="80" fill="#87ceeb" stroke="#666" stroke-width="2"/>
- <line x1="350" y1="50" x2="350" y2="130" stroke="#666" stroke-width="1"/>
- <line x1="320" y1="90" x2="380" y2="90" stroke="#666" stroke-width="1"/>
-
- <!-- Lamp -->
- <circle cx="180" cy="140" r="3" fill="#ffd700"/>
- <rect x="178" y="140" width="4" height="30" fill="#8b4513"/>
- <ellipse cx="180" cy="125" rx="15" ry="8" fill="#fff8dc" opacity="0.8"/>
-
- <!-- Plant -->
- <rect x="30" y="170" width="8" height="20" fill="#8b4513"/>
- <ellipse cx="34" cy="165" rx="12" ry="8" fill="#228b22"/>
-
- <!-- Wall Art -->
- <rect x="120" y="80" width="40" height="30" fill="#fff" stroke="#ccc" stroke-width="1"/>
- <rect x="125" y="85" width="30" height="20" fill="#4169e1"/>
-
- <!-- Ceiling Light -->
- <circle cx="200" cy="30" r="8" fill="#fff" opacity="0.9"/>
- <circle cx="200" cy="30" r="12" fill="none" stroke="#ddd" stroke-width="1"/>
- </svg>
|