living_room_modern_1.jpg 2.1 KB

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