fix(ui): logo orbits stroke 5→12 — actually visible at 28px

stroke=5 в viewBox 256 при 28px render = 5*28/256 = 0.55px (subpixel,
почти невидимо). stroke=12 даёт ~1.31px real — чёткая линия. Заодно
переключил с --color-line-2 на --color-line чтобы немного контрастнее
на bg-surface.
This commit is contained in:
Zimin A.N.
2026-05-11 23:38:00 +03:00
parent 162e97be0e
commit fcb0ad0eb5
@@ -190,9 +190,10 @@ function SidebarContent({
className="shrink-0 text-accent" className="shrink-0 text-accent"
> >
<g transform="translate(128 128)"> <g transform="translate(128 128)">
{/* Outer orbits — line tone, bolder stroke для видимости при 28px */} {/* Outer orbits — line tone. Math: viewBox 256 при render 28px =
<circle r="96" fill="none" stroke="var(--color-line-2)" strokeWidth="5" /> * 0.11px/unit. stroke=12 даёт ~1.3px real — чёткая видимая линия. */}
<circle r="62" fill="none" stroke="var(--color-line-2)" strokeWidth="5" /> <circle r="96" fill="none" stroke="var(--color-line)" strokeWidth="12" />
<circle r="62" fill="none" stroke="var(--color-line)" strokeWidth="12" />
{/* Outer orbit dots (3) — large accent dots */} {/* Outer orbit dots (3) — large accent dots */}
<circle cx="96" cy="0" r="16" fill="currentColor" /> <circle cx="96" cy="0" r="16" fill="currentColor" />
<circle cx="-48" cy="83.14" r="14" fill="currentColor" opacity="0.7" /> <circle cx="-48" cy="83.14" r="14" fill="currentColor" opacity="0.7" />