<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"> <!-- Bakgrund med gradient --> <defs> <linearGradient id="bg-gradient" x1="0%" y1="0%" x2="100%" y2="100%"> <stop offset="0%" style="stop-color:#f8f9fa;stop-opacity:1" /> <stop offset="100%" style="stop-color:#e9ecef;stop-opacity:1" /> </linearGradient> </defs> <rect width="800" height="600" fill="url(#bg-gradient)"/> <!-- Rutnät --> <g stroke="#dee2e6" stroke-width="1"> <!-- Vertikala linjer --> <line x1="250" y1="100" x2="250" y2="500" /> <line x1="400" y1="100" x2="400" y2="500" /> <line x1="550" y1="100" x2="550" y2="500" /> <!-- Horisontella linjer --> <line x1="100" y1="200" x2="700" y2="200" /> <line x1="100" y1="300" x2="700" y2="300" /> <line x1="100" y1="400" x2="700" y2="400" /> </g> <!-- Huvudaxlar --> <line x1="100" y1="500" x2="700" y2="500" stroke="black" stroke-width="2"/> <line x1="100" y1="500" x2="100" y2="100" stroke="black" stroke-width="2"/> <!-- Axeletiketter --> <text x="400" y="550" text-anchor="middle" font-family="Arial" font-size="16" font-weight="bold"> Socialism ← → Liberalism </text> <text x="50" y="300" text-anchor="middle" font-family="Arial" font-size="16" font-weight="bold" transform="rotate(-90,50,300)"> GAL ← → TAN </text> <!-- Titel med skugga --> <text x="400" y="50" text-anchor="middle" font-family="Arial" font-size="24" font-weight="bold" fill="#212529"> Svenska partiers positionering </text> <!-- Partisymboler med skugga och förbättrad kontrast --> <!-- SD - mest TAN --> <circle cx="500" cy="150" r="22" fill="#DDDD00"/> <text x="500" y="155" text-anchor="middle" font-family="Arial" font-size="14" fill="#000" font-weight="bold">SD</text> <!-- KD - höger, TAN --> <circle cx="580" cy="200" r="22" fill="#000077"/> <text x="580" y="205" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">KD</text> <!-- M - höger, mitten-TAN --> <circle cx="650" cy="250" r="22" fill="#52BDEC"/> <text x="650" y="255" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">M</text> <!-- S - vänster, mitten --> <circle cx="350" cy="300" r="22" fill="#E8112d"/> <text x="350" y="305" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">S</text> <!-- L - höger, GAL --> <circle cx="600" cy="400" r="22" fill="#006AB3"/> <text x="600" y="405" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">L</text> <!-- C - höger, GAL --> <circle cx="500" cy="420" r="22" fill="#016A3A"/> <text x="500" y="425" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">C</text> <!-- V - vänster, GAL --> <circle cx="200" cy="420" r="22" fill="#ED1B34"/> <text x="200" y="425" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">V</text> <!-- MP - mest GAL --> <circle cx="300" cy="450" r="22" fill="#83CF39"/> <text x="300" y="455" text-anchor="middle" font-family="Arial" font-size="14" fill="white" font-weight="bold">MP</text> <!-- Skalmarkeringar på axlarna --> <g font-family="Arial" font-size="12" text-anchor="middle"> <!-- X-axel --> <text x="250" y="520">Vänster</text> <text x="550" y="520">Höger</text> <!-- Y-axel --> <text x="80" y="150">TAN</text> <text x="80" y="450">GAL</text> </g> <!-- Förklaringstext --> <text x="400" y="580" text-anchor="middle" font-family="Arial" font-size="12" fill="#6c757d"> TAN: Traditionell-Auktoritär-Nationalistisk | GAL: Grön-Alternativ-Libertär </text> </svg>