14 lines
589 B
XML
14 lines
589 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
|
<style>
|
|
.nucleus { fill: oklch(38% 0.16 253); }
|
|
.orbit { stroke: oklch(14.5% 0.013 58); }
|
|
@media (prefers-color-scheme: dark) {
|
|
.nucleus { fill: oklch(77% 0.13 253); }
|
|
.orbit { stroke: oklch(87% 0.055 258); }
|
|
}
|
|
</style>
|
|
<!-- Nucleus — accent color marks the studio -->
|
|
<circle class="nucleus" cx="16" cy="16" r="2.75"/>
|
|
<!-- Orbital ring, tilted 35° -->
|
|
<ellipse class="orbit" cx="16" cy="16" rx="12.5" ry="5" stroke-width="1.75" transform="rotate(-35 16 16)"/>
|
|
</svg>
|