29 lines
955 B
XML
29 lines
955 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
|
||
|
|
<!-- SYNTAXIS Icon - Simplified Alternative -->
|
||
|
|
<!-- More readable at small sizes with bolder shapes -->
|
||
|
|
|
||
|
|
<defs>
|
||
|
|
<style>
|
||
|
|
.primary { fill: #2C5F8E; }
|
||
|
|
.secondary { fill: #6B7280; }
|
||
|
|
.accent { fill: #D97706; }
|
||
|
|
</style>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<!-- Outer diamond frame -->
|
||
|
|
<path d="M 100 30 L 140 70 L 140 130 L 100 170 L 60 130 L 60 70 Z" class="primary" opacity="0.15"/>
|
||
|
|
|
||
|
|
<!-- Top diamond -->
|
||
|
|
<path d="M 100 40 L 115 55 L 100 70 L 85 55 Z" class="primary"/>
|
||
|
|
|
||
|
|
<!-- Side squares -->
|
||
|
|
<rect x="50" y="85" width="30" height="30" class="secondary"/>
|
||
|
|
<rect x="120" y="85" width="30" height="30" class="secondary"/>
|
||
|
|
|
||
|
|
<!-- Center triangle (larger, more prominent) -->
|
||
|
|
<path d="M 100 75 L 125 125 L 75 125 Z" class="accent"/>
|
||
|
|
|
||
|
|
<!-- Bottom diamond -->
|
||
|
|
<path d="M 100 130 L 115 145 L 100 160 L 85 145 Z" class="primary"/>
|
||
|
|
</svg>
|