Files
mdm-ordinis/ordinis-admin-ui/public/favicon.svg
T
Zimin A.N. 4ae6dc3863 feat(ui): favicon — Ordinis 'O' + спутник на орбите, brand ultramarain
Раньше browser tab показывал default favicon (белый круг или
generic). Теперь:
- favicon.svg — rounded ultramarain (#120a8f) tile + белая 'O'
  кольцом (Ordinis = order, latin) + маленькая точка-спутник на
  орбите (связь с ДЗЗ-доменом ЦУОД). SVG масштабируется на retina
  + tab + bookmark без потери качества.
- safari-pinned-tab.svg — monochrome mask icon, Safari заливает
  theme-color при pinned tab.
- meta theme-color = brand ultramarain — Chrome/Edge address bar
  на mobile получит brand цвет, Safari iOS standalone PWA тоже.

Без apple-touch-icon PNG — admin tool не используется как
homescreen install, ROI не оправдывает PNG generation pipeline.
SVG favicon работает на iOS 17+ для Safari.
2026-05-06 20:44:41 +03:00

11 lines
909 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
<!-- Background: rounded square в brand ultramarain. Tailwind rounded-sm = 2px → ratio 2/32 = 6.25% → r=2 для viewBox 32. -->
<rect width="32" height="32" rx="6" ry="6" fill="#120a8f"/>
<!-- 'O' — Ordinis. Stroke-only (open ring), match'ит open design system без heavy fills. -->
<circle cx="16" cy="16" r="7.5" fill="none" stroke="#ffffff" stroke-width="2.5"/>
<!-- Спутник: маленький точка на орбите вокруг 'O'. Связь с ДЗЗ-доменом. -->
<circle cx="25.5" cy="9.5" r="1.7" fill="#ffffff"/>
<!-- Orbit trace: тонкая дуга через спутник, opacity 0.35 чтобы не доминировала. -->
<path d="M 8 24 Q 16 30 26 22" fill="none" stroke="#ffffff" stroke-width="0.7" stroke-linecap="round" opacity="0.35"/>
</svg>