e6fe9c3da8
Делёные design team 2026-05-11 в Downloads/files:
- ordinis-mark.svg — двойные орбиты + 6 dots + gradient core
(DeepBlue #185FA5 → SkyBlue #378ADD), brand spec
- ordinis-favicon.svg — minimal 32px variant
- ordinis-appicon.svg — 1024px PWA icon с dark rounded tile
- ordinis-lockup-light/dark.svg — horizontal lockup с wordmark
(для landing/splash/marketing — пока не используется но
хранится в public для future use)
Changes:
- public/favicon.svg → minimal 32px variant
- Sidebar logo block: inline ordinis-mark с двойными орбитами +
gradient core. Wordmark 'ORDINIS MDM' остаётся в Tektur.
- index.html: theme-color #185FA5 (был #120a8f), apple-touch-icon
link на appicon, mask-icon color match.
Note: SVG colors hardcoded в Sidebar inline для full design fidelity
(brand assets specifically defined gradient). currentColor не подходит
т.к. brand требует точные DeepBlue/SkyBlue/LightBlue tokens.
21 lines
873 B
XML
21 lines
873 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
|
|
<title>Ordinis MDM — mark</title>
|
|
<defs>
|
|
<linearGradient id="core" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0" stop-color="#378ADD"/>
|
|
<stop offset="1" stop-color="#185FA5"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<g transform="translate(128 128)">
|
|
<circle r="96" fill="none" stroke="#B5D4F4" stroke-width="1.2"/>
|
|
<circle r="62" fill="none" stroke="#B5D4F4" stroke-width="1.2"/>
|
|
<circle cx="96" cy="0" r="8" fill="#185FA5"/>
|
|
<circle cx="-48" cy="83.14" r="8" fill="#378ADD"/>
|
|
<circle cx="-48" cy="-83.14" r="8" fill="#378ADD"/>
|
|
<circle cx="-62" cy="0" r="6.4" fill="#185FA5"/>
|
|
<circle cx="31" cy="-53.69" r="6.4" fill="#378ADD"/>
|
|
<circle cx="31" cy="53.69" r="6.4" fill="#378ADD"/>
|
|
<circle r="15" fill="url(#core)"/>
|
|
</g>
|
|
</svg>
|